mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-21 01:12:51 +08:00
ec723b2112
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. sample-controller: add example CRD controller **What this PR does / why we need it**: Adds a sample-controller example repository fixes #52752 **Special notes for your reviewer**: This is currently based on the sttts:sttts-codegen-scripts branch and should not be merged until that is (ref https://github.com/kubernetes/kubernetes/pull/52186) **Release note**: ``` Add sample-controller repository ``` /cc @sttts @nikhita @colemickens Kubernetes-commit: 9a7800f7d2efb88b397674672ac56f898826cf7c
83 lines
1.3 KiB
Go
83 lines
1.3 KiB
Go
package jsoniter
|
|
|
|
import "fmt"
|
|
|
|
type invalidAny struct {
|
|
baseAny
|
|
err error
|
|
}
|
|
|
|
func newInvalidAny(path []interface{}) *invalidAny {
|
|
return &invalidAny{baseAny{}, fmt.Errorf("%v not found", path)}
|
|
}
|
|
|
|
func (any *invalidAny) LastError() error {
|
|
return any.err
|
|
}
|
|
|
|
func (any *invalidAny) ValueType() ValueType {
|
|
return InvalidValue
|
|
}
|
|
|
|
func (any *invalidAny) MustBeValid() Any {
|
|
panic(any.err)
|
|
}
|
|
|
|
func (any *invalidAny) ToBool() bool {
|
|
return false
|
|
}
|
|
|
|
func (any *invalidAny) ToInt() int {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToInt32() int32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToInt64() int64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToUint() uint {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToUint32() uint32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToUint64() uint64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToFloat32() float32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToFloat64() float64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *invalidAny) ToString() string {
|
|
return ""
|
|
}
|
|
|
|
func (any *invalidAny) WriteTo(stream *Stream) {
|
|
}
|
|
|
|
func (any *invalidAny) Get(path ...interface{}) Any {
|
|
if any.err == nil {
|
|
return &invalidAny{baseAny{}, fmt.Errorf("get %v from invalid", path)}
|
|
}
|
|
return &invalidAny{baseAny{}, fmt.Errorf("%v, get %v from invalid", any.err, path)}
|
|
}
|
|
|
|
func (any *invalidAny) Parse() *Iterator {
|
|
return nil
|
|
}
|
|
|
|
func (any *invalidAny) GetInterface() interface{} {
|
|
return nil
|
|
}
|