mirror of
https://github.com/containers/podman.git
synced 2025-12-05 21:32:22 +08:00
First of all this removes the need for a network connection, second renovate can update the version as it is tracked in go.mod. However the real important part is that the binary downloads are broken[1]. For some reason the swagger created with them does not include all the type information for the examples. However when building from source the same thing works fine. [1] https://github.com/go-swagger/go-swagger/issues/2842 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
42 lines
992 B
Go
42 lines
992 B
Go
package pretty
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
func nonzero(v reflect.Value) bool {
|
|
switch v.Kind() {
|
|
case reflect.Bool:
|
|
return v.Bool()
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
|
return v.Int() != 0
|
|
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
|
|
return v.Uint() != 0
|
|
case reflect.Float32, reflect.Float64:
|
|
return v.Float() != 0
|
|
case reflect.Complex64, reflect.Complex128:
|
|
return v.Complex() != complex(0, 0)
|
|
case reflect.String:
|
|
return v.String() != ""
|
|
case reflect.Struct:
|
|
for i := 0; i < v.NumField(); i++ {
|
|
if nonzero(getField(v, i)) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
case reflect.Array:
|
|
for i := 0; i < v.Len(); i++ {
|
|
if nonzero(v.Index(i)) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
case reflect.Map, reflect.Interface, reflect.Slice, reflect.Ptr, reflect.Chan, reflect.Func:
|
|
return !v.IsNil()
|
|
case reflect.UnsafePointer:
|
|
return v.Pointer() != 0
|
|
}
|
|
return true
|
|
}
|