mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 10:56:10 +01:00 
			
		
		
		
	Code/repo search (#2582)
Indexed search of repository contents (for default branch only)
This commit is contained in:
		| @@ -38,3 +38,19 @@ func OptionalBoolOf(b bool) OptionalBool { | ||||
| 	} | ||||
| 	return OptionalBoolFalse | ||||
| } | ||||
|  | ||||
| // Max max of two ints | ||||
| func Max(a, b int) int { | ||||
| 	if a < b { | ||||
| 		return b | ||||
| 	} | ||||
| 	return a | ||||
| } | ||||
|  | ||||
| // Min min of two ints | ||||
| func Min(a, b int) int { | ||||
| 	if a > b { | ||||
| 		return b | ||||
| 	} | ||||
| 	return a | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user