mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-07-31 20:31:59 +08:00

Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
70 lines
916 B
Go
70 lines
916 B
Go
package jsoniter
|
|
|
|
type nilAny struct {
|
|
baseAny
|
|
}
|
|
|
|
func (any *nilAny) LastError() error {
|
|
return nil
|
|
}
|
|
|
|
func (any *nilAny) ValueType() ValueType {
|
|
return NilValue
|
|
}
|
|
|
|
func (any *nilAny) MustBeValid() Any {
|
|
return any
|
|
}
|
|
|
|
func (any *nilAny) ToBool() bool {
|
|
return false
|
|
}
|
|
|
|
func (any *nilAny) ToInt() int {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToInt32() int32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToInt64() int64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint() uint {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint32() uint32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint64() uint64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToFloat32() float32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToFloat64() float64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToString() string {
|
|
return ""
|
|
}
|
|
|
|
func (any *nilAny) WriteTo(stream *Stream) {
|
|
stream.WriteNil()
|
|
}
|
|
|
|
func (any *nilAny) Parse() *Iterator {
|
|
return nil
|
|
}
|
|
|
|
func (any *nilAny) GetInterface() interface{} {
|
|
return nil
|
|
}
|