Update heketi dependencies to sha@558b29266ce0a873991ecfb3edc41a668a998514.
Fixes # https://github.com/kubernetes/kubernetes/issues/70802 Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
32
vendor/github.com/go-ozzo/ozzo-validation/not_nil.go
generated
vendored
Normal file
32
vendor/github.com/go-ozzo/ozzo-validation/not_nil.go
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// Copyright 2016 Qiang Xue. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package validation
|
||||
|
||||
import "errors"
|
||||
|
||||
// NotNil is a validation rule that checks if a value is not nil.
|
||||
// NotNil only handles types including interface, pointer, slice, and map.
|
||||
// All other types are considered valid.
|
||||
var NotNil = ¬NilRule{message: "is required"}
|
||||
|
||||
type notNilRule struct {
|
||||
message string
|
||||
}
|
||||
|
||||
// Validate checks if the given value is valid or not.
|
||||
func (r *notNilRule) Validate(value interface{}) error {
|
||||
_, isNil := Indirect(value)
|
||||
if isNil {
|
||||
return errors.New(r.message)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Error sets the error message for the rule.
|
||||
func (r *notNilRule) Error(message string) *notNilRule {
|
||||
return ¬NilRule{
|
||||
message: message,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user