add sync period to helm repo
Signed-off-by: LiHui <andrewli@kubesphere.io>
This commit is contained in:
9
pkg/utils/mathutil/mathutil.go
Normal file
9
pkg/utils/mathutil/mathutil.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package mathutil
|
||||
|
||||
// Max returns the larger of a and b.
|
||||
func Max(a, b int) int {
|
||||
if a >= b {
|
||||
return a
|
||||
}
|
||||
return b
|
||||
}
|
||||
Reference in New Issue
Block a user