repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/hashicorp/go-version/version.go
vendor/github.com/hashicorp/go-version/version.go
// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package version import ( "bytes" "database/sql/driver" "fmt" "regexp" "strconv" "strings" ) // The compiled regular expression used to test the validity of a version. var ( versionRegexp *regexp.Regexp semverRegexp *regexp.Regexp ) // The...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/hashicorp/go-version/constraint.go
vendor/github.com/hashicorp/go-version/constraint.go
// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package version import ( "fmt" "regexp" "sort" "strings" ) // Constraint represents a single constraint for a version, such as // ">= 1.0". type Constraint struct { f constraintFunc op operator check *Version original string...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/hashicorp/go-version/version_collection.go
vendor/github.com/hashicorp/go-version/version_collection.go
// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 package version // Collection is a type that implements the sort.Interface interface // so that versions can be sorted. type Collection []*Version func (v Collection) Len() int { return len(v) } func (v Collection) Less(i, j int) bool { return v...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_int.go
vendor/github.com/json-iterator/go/iter_int.go
package jsoniter import ( "math" "strconv" ) var intDigits []int8 const uint32SafeToMultiply10 = uint32(0xffffffff)/10 - 1 const uint64SafeToMultiple10 = uint64(0xffffffffffffffff)/10 - 1 const maxFloat64 = 1<<53 - 1 func init() { intDigits = make([]int8, 256) for i := 0; i < len(intDigits); i++ { intDigits[i...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_number.go
vendor/github.com/json-iterator/go/any_number.go
package jsoniter import ( "io" "unsafe" ) type numberLazyAny struct { baseAny cfg *frozenConfig buf []byte err error } func (any *numberLazyAny) ValueType() ValueType { return NumberValue } func (any *numberLazyAny) MustBeValid() Any { return any } func (any *numberLazyAny) LastError() error { return any....
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any.go
vendor/github.com/json-iterator/go/any.go
package jsoniter import ( "errors" "fmt" "github.com/modern-go/reflect2" "io" "reflect" "strconv" "unsafe" ) // Any generic object representation. // The lazy json implementation holds []byte and parse lazily. type Any interface { LastError() error ValueType() ValueType MustBeValid() Any ToBool() bool ToI...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_bool.go
vendor/github.com/json-iterator/go/any_bool.go
package jsoniter type trueAny struct { baseAny } func (any *trueAny) LastError() error { return nil } func (any *trueAny) ToBool() bool { return true } func (any *trueAny) ToInt() int { return 1 } func (any *trueAny) ToInt32() int32 { return 1 } func (any *trueAny) ToInt64() int64 { return 1 } func (any *t...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/stream_float.go
vendor/github.com/json-iterator/go/stream_float.go
package jsoniter import ( "fmt" "math" "strconv" ) var pow10 []uint64 func init() { pow10 = []uint64{1, 10, 100, 1000, 10000, 100000, 1000000} } // WriteFloat32 write float32 to stream func (stream *Stream) WriteFloat32(val float32) { if math.IsInf(float64(val), 0) || math.IsNaN(float64(val)) { stream.Error ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_slice.go
vendor/github.com/json-iterator/go/reflect_slice.go
package jsoniter import ( "fmt" "github.com/modern-go/reflect2" "io" "unsafe" ) func decoderOfSlice(ctx *ctx, typ reflect2.Type) ValDecoder { sliceType := typ.(*reflect2.UnsafeSliceType) decoder := decoderOfType(ctx.append("[sliceElem]"), sliceType.Elem()) return &sliceDecoder{sliceType, decoder} } func encod...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_skip_sloppy.go
vendor/github.com/json-iterator/go/iter_skip_sloppy.go
//+build jsoniter_sloppy package jsoniter // sloppy but faster implementation, do not validate the input json func (iter *Iterator) skipNumber() { for { for i := iter.head; i < iter.tail; i++ { c := iter.buf[i] switch c { case ' ', '\n', '\r', '\t', ',', '}', ']': iter.head = i return } } ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_int32.go
vendor/github.com/json-iterator/go/any_int32.go
package jsoniter import ( "strconv" ) type int32Any struct { baseAny val int32 } func (any *int32Any) LastError() error { return nil } func (any *int32Any) ValueType() ValueType { return NumberValue } func (any *int32Any) MustBeValid() Any { return any } func (any *int32Any) ToBool() bool { return any.val ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/stream.go
vendor/github.com/json-iterator/go/stream.go
package jsoniter import ( "io" ) // stream is a io.Writer like object, with JSON specific write functions. // Error is not returned as return value, but stored as Error member on this stream instance. type Stream struct { cfg *frozenConfig out io.Writer buf []byte Error error indention...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_json_raw_message.go
vendor/github.com/json-iterator/go/reflect_json_raw_message.go
package jsoniter import ( "encoding/json" "github.com/modern-go/reflect2" "unsafe" ) var jsonRawMessageType = reflect2.TypeOfPtr((*json.RawMessage)(nil)).Elem() var jsoniterRawMessageType = reflect2.TypeOfPtr((*RawMessage)(nil)).Elem() func createEncoderOfJsonRawMessage(ctx *ctx, typ reflect2.Type) ValEncoder { ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_array.go
vendor/github.com/json-iterator/go/iter_array.go
package jsoniter // ReadArray read array element, tells if the array has more element to read. func (iter *Iterator) ReadArray() (ret bool) { c := iter.nextToken() switch c { case 'n': iter.skipThreeBytes('u', 'l', 'l') return false // null case '[': c = iter.nextToken() if c != ']' { iter.unreadByte() ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/stream_int.go
vendor/github.com/json-iterator/go/stream_int.go
package jsoniter var digits []uint32 func init() { digits = make([]uint32, 1000) for i := uint32(0); i < 1000; i++ { digits[i] = (((i / 100) + '0') << 16) + ((((i / 10) % 10) + '0') << 8) + i%10 + '0' if i < 10 { digits[i] += 2 << 24 } else if i < 100 { digits[i] += 1 << 24 } } } func writeFirstBuf(...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_extension.go
vendor/github.com/json-iterator/go/reflect_extension.go
package jsoniter import ( "fmt" "github.com/modern-go/reflect2" "reflect" "sort" "strings" "unicode" "unsafe" ) var typeDecoders = map[string]ValDecoder{} var fieldDecoders = map[string]ValDecoder{} var typeEncoders = map[string]ValEncoder{} var fieldEncoders = map[string]ValEncoder{} var extensions = []Extens...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_native.go
vendor/github.com/json-iterator/go/reflect_native.go
package jsoniter import ( "encoding/base64" "reflect" "strconv" "unsafe" "github.com/modern-go/reflect2" ) const ptrSize = 32 << uintptr(^uintptr(0)>>63) func createEncoderOfNative(ctx *ctx, typ reflect2.Type) ValEncoder { if typ.Kind() == reflect.Slice && typ.(reflect2.SliceType).Elem().Kind() == reflect.Uin...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_int64.go
vendor/github.com/json-iterator/go/any_int64.go
package jsoniter import ( "strconv" ) type int64Any struct { baseAny val int64 } func (any *int64Any) LastError() error { return nil } func (any *int64Any) ValueType() ValueType { return NumberValue } func (any *int64Any) MustBeValid() Any { return any } func (any *int64Any) ToBool() bool { return any.val ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter.go
vendor/github.com/json-iterator/go/iter.go
package jsoniter import ( "encoding/json" "fmt" "io" ) // ValueType the type for JSON element type ValueType int const ( // InvalidValue invalid JSON element InvalidValue ValueType = iota // StringValue JSON element "string" StringValue // NumberValue JSON element 100 or 0.10 NumberValue // NilValue JSON e...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_float.go
vendor/github.com/json-iterator/go/any_float.go
package jsoniter import ( "strconv" ) type floatAny struct { baseAny val float64 } func (any *floatAny) Parse() *Iterator { return nil } func (any *floatAny) ValueType() ValueType { return NumberValue } func (any *floatAny) MustBeValid() Any { return any } func (any *floatAny) LastError() error { return ni...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/config.go
vendor/github.com/json-iterator/go/config.go
package jsoniter import ( "encoding/json" "io" "reflect" "sync" "unsafe" "github.com/modern-go/concurrent" "github.com/modern-go/reflect2" ) // Config customize how the API should behave. // The API is created from Config by Froze. type Config struct { IndentionStep int MarshalFloatWith6Digi...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_float.go
vendor/github.com/json-iterator/go/iter_float.go
package jsoniter import ( "encoding/json" "io" "math/big" "strconv" "strings" "unsafe" ) var floatDigits []int8 const invalidCharForNumber = int8(-1) const endOfNumber = int8(-2) const dotInNumber = int8(-3) func init() { floatDigits = make([]int8, 256) for i := 0; i < len(floatDigits); i++ { floatDigits[...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_object.go
vendor/github.com/json-iterator/go/any_object.go
package jsoniter import ( "reflect" "unsafe" ) type objectLazyAny struct { baseAny cfg *frozenConfig buf []byte err error } func (any *objectLazyAny) ValueType() ValueType { return ObjectValue } func (any *objectLazyAny) MustBeValid() Any { return any } func (any *objectLazyAny) LastError() error { return...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_optional.go
vendor/github.com/json-iterator/go/reflect_optional.go
package jsoniter import ( "github.com/modern-go/reflect2" "unsafe" ) func decoderOfOptional(ctx *ctx, typ reflect2.Type) ValDecoder { ptrType := typ.(*reflect2.UnsafePtrType) elemType := ptrType.Elem() decoder := decoderOfType(ctx, elemType) return &OptionalDecoder{elemType, decoder} } func encoderOfOptional(c...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_struct_decoder.go
vendor/github.com/json-iterator/go/reflect_struct_decoder.go
package jsoniter import ( "fmt" "io" "strings" "unsafe" "github.com/modern-go/reflect2" ) func decoderOfStruct(ctx *ctx, typ reflect2.Type) ValDecoder { bindings := map[string]*Binding{} structDescriptor := describeStruct(ctx, typ) for _, binding := range structDescriptor.Fields { for _, fromName := range ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_str.go
vendor/github.com/json-iterator/go/any_str.go
package jsoniter import ( "fmt" "strconv" ) type stringAny struct { baseAny val string } func (any *stringAny) Get(path ...interface{}) Any { if len(path) == 0 { return any } return &invalidAny{baseAny{}, fmt.Errorf("GetIndex %v from simple value", path)} } func (any *stringAny) Parse() *Iterator { return...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_uint32.go
vendor/github.com/json-iterator/go/any_uint32.go
package jsoniter import ( "strconv" ) type uint32Any struct { baseAny val uint32 } func (any *uint32Any) LastError() error { return nil } func (any *uint32Any) ValueType() ValueType { return NumberValue } func (any *uint32Any) MustBeValid() Any { return any } func (any *uint32Any) ToBool() bool { return an...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_marshaler.go
vendor/github.com/json-iterator/go/reflect_marshaler.go
package jsoniter import ( "encoding" "encoding/json" "unsafe" "github.com/modern-go/reflect2" ) var marshalerType = reflect2.TypeOfPtr((*json.Marshaler)(nil)).Elem() var unmarshalerType = reflect2.TypeOfPtr((*json.Unmarshaler)(nil)).Elem() var textMarshalerType = reflect2.TypeOfPtr((*encoding.TextMarshaler)(nil)...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_skip_strict.go
vendor/github.com/json-iterator/go/iter_skip_strict.go
//+build !jsoniter_sloppy package jsoniter import ( "fmt" "io" ) func (iter *Iterator) skipNumber() { if !iter.trySkipNumber() { iter.unreadByte() if iter.Error != nil && iter.Error != io.EOF { return } iter.ReadFloat64() if iter.Error != nil && iter.Error != io.EOF { iter.Error = nil iter.Read...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/pool.go
vendor/github.com/json-iterator/go/pool.go
package jsoniter import ( "io" ) // IteratorPool a thread safe pool of iterators with same configuration type IteratorPool interface { BorrowIterator(data []byte) *Iterator ReturnIterator(iter *Iterator) } // StreamPool a thread safe pool of streams with same configuration type StreamPool interface { BorrowStrea...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/jsoniter.go
vendor/github.com/json-iterator/go/jsoniter.go
// Package jsoniter implements encoding and decoding of JSON as defined in // RFC 4627 and provides interfaces with identical syntax of standard lib encoding/json. // Converting from encoding/json to jsoniter is no more than replacing the package with jsoniter // and variable type declarations (if any). // jsoniter int...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_uint64.go
vendor/github.com/json-iterator/go/any_uint64.go
package jsoniter import ( "strconv" ) type uint64Any struct { baseAny val uint64 } func (any *uint64Any) LastError() error { return nil } func (any *uint64Any) ValueType() ValueType { return NumberValue } func (any *uint64Any) MustBeValid() Any { return any } func (any *uint64Any) ToBool() bool { return an...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_array.go
vendor/github.com/json-iterator/go/any_array.go
package jsoniter import ( "reflect" "unsafe" ) type arrayLazyAny struct { baseAny cfg *frozenConfig buf []byte err error } func (any *arrayLazyAny) ValueType() ValueType { return ArrayValue } func (any *arrayLazyAny) MustBeValid() Any { return any } func (any *arrayLazyAny) LastError() error { return any....
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_nil.go
vendor/github.com/json-iterator/go/any_nil.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 } ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect.go
vendor/github.com/json-iterator/go/reflect.go
package jsoniter import ( "fmt" "reflect" "unsafe" "github.com/modern-go/reflect2" ) // ValDecoder is an internal type registered to cache as needed. // Don't confuse jsoniter.ValDecoder with json.Decoder. // For json.Decoder's adapter, refer to jsoniter.AdapterDecoder(todo link). // // Reflection on type to cre...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_str.go
vendor/github.com/json-iterator/go/iter_str.go
package jsoniter import ( "fmt" "unicode/utf16" ) // ReadString read string from iterator func (iter *Iterator) ReadString() (ret string) { c := iter.nextToken() if c == '"' { for i := iter.head; i < iter.tail; i++ { c := iter.buf[i] if c == '"' { ret = string(iter.buf[iter.head:i]) iter.head = i ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_skip.go
vendor/github.com/json-iterator/go/iter_skip.go
package jsoniter import "fmt" // ReadNil reads a json object as nil and // returns whether it's a nil or not func (iter *Iterator) ReadNil() (ret bool) { c := iter.nextToken() if c == 'n' { iter.skipThreeBytes('u', 'l', 'l') // null return true } iter.unreadByte() return false } // ReadBool reads a json obj...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/iter_object.go
vendor/github.com/json-iterator/go/iter_object.go
package jsoniter import ( "fmt" "strings" ) // ReadObject read one field from object. // If object ended, returns empty string. // Otherwise, returns the field name. func (iter *Iterator) ReadObject() (ret string) { c := iter.nextToken() switch c { case 'n': iter.skipThreeBytes('u', 'l', 'l') return "" // nu...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_json_number.go
vendor/github.com/json-iterator/go/reflect_json_number.go
package jsoniter import ( "encoding/json" "github.com/modern-go/reflect2" "strconv" "unsafe" ) type Number string // String returns the literal text of the number. func (n Number) String() string { return string(n) } // Float64 returns the number as a float64. func (n Number) Float64() (float64, error) { retur...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_struct_encoder.go
vendor/github.com/json-iterator/go/reflect_struct_encoder.go
package jsoniter import ( "fmt" "github.com/modern-go/reflect2" "io" "reflect" "unsafe" ) func encoderOfStruct(ctx *ctx, typ reflect2.Type) ValEncoder { type bindingTo struct { binding *Binding toName string ignored bool } orderedBindings := []*bindingTo{} structDescriptor := describeStruct(ctx, typ) ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/adapter.go
vendor/github.com/json-iterator/go/adapter.go
package jsoniter import ( "bytes" "io" ) // RawMessage to make replace json with jsoniter type RawMessage []byte // Unmarshal adapts to json/encoding Unmarshal API // // Unmarshal parses the JSON-encoded data and stores the result in the value pointed to by v. // Refer to https://godoc.org/encoding/json#Unmarshal ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_map.go
vendor/github.com/json-iterator/go/reflect_map.go
package jsoniter import ( "fmt" "github.com/modern-go/reflect2" "io" "reflect" "sort" "unsafe" ) func decoderOfMap(ctx *ctx, typ reflect2.Type) ValDecoder { mapType := typ.(*reflect2.UnsafeMapType) keyDecoder := decoderOfMapKey(ctx.append("[mapKey]"), mapType.Key()) elemDecoder := decoderOfType(ctx.append("[...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/stream_str.go
vendor/github.com/json-iterator/go/stream_str.go
package jsoniter import ( "unicode/utf8" ) // htmlSafeSet holds the value true if the ASCII character with the given // array position can be safely represented inside a JSON string, embedded // inside of HTML <script> tags, without any additional escaping. // // All values are true except for the ASCII control char...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/any_invalid.go
vendor/github.com/json-iterator/go/any_invalid.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 In...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_array.go
vendor/github.com/json-iterator/go/reflect_array.go
package jsoniter import ( "fmt" "github.com/modern-go/reflect2" "io" "unsafe" ) func decoderOfArray(ctx *ctx, typ reflect2.Type) ValDecoder { arrayType := typ.(*reflect2.UnsafeArrayType) decoder := decoderOfType(ctx.append("[arrayElem]"), arrayType.Elem()) return &arrayDecoder{arrayType, decoder} } func encod...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/json-iterator/go/reflect_dynamic.go
vendor/github.com/json-iterator/go/reflect_dynamic.go
package jsoniter import ( "github.com/modern-go/reflect2" "reflect" "unsafe" ) type dynamicEncoder struct { valType reflect2.Type } func (encoder *dynamicEncoder) Encode(ptr unsafe.Pointer, stream *Stream) { obj := encoder.valType.UnsafeIndirect(ptr) stream.WriteVal(obj) } func (encoder *dynamicEncoder) IsEmp...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/pkg/errors/errors.go
vendor/github.com/pkg/errors/errors.go
// Package errors provides simple error handling primitives. // // The traditional error handling idiom in Go is roughly akin to // // if err != nil { // return err // } // // which when applied recursively up the call stack results in error reports // without context or debugging information. The e...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/pkg/errors/go113.go
vendor/github.com/pkg/errors/go113.go
// +build go1.13 package errors import ( stderrors "errors" ) // Is reports whether any error in err's chain matches target. // // The chain consists of err itself followed by the sequence of errors obtained by // repeatedly calling Unwrap. // // An error is considered to match a target if it is equal to that targe...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/pkg/errors/stack.go
vendor/github.com/pkg/errors/stack.go
package errors import ( "fmt" "io" "path" "runtime" "strconv" "strings" ) // Frame represents a program counter inside a stack frame. // For historical reasons if Frame is interpreted as a uintptr // its value represents the program counter + 1. type Frame uintptr // pc returns the program counter for this fra...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/pkg/profile/profile.go
vendor/github.com/pkg/profile/profile.go
// Package profile provides a simple way to manage runtime/pprof // profiling of your Go application. package profile import ( "io/ioutil" "log" "os" "os/signal" "path/filepath" "runtime" "runtime/pprof" "runtime/trace" "sync/atomic" "github.com/felixge/fgprof" ) const ( cpuMode = iota memMode mutexMode...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/scheme/register.go
vendor/github.com/openshift/client-go/image/clientset/versioned/scheme/register.go
// Code generated by client-gen. DO NOT EDIT. package scheme import ( imagev1 "github.com/openshift/api/image/v1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" serializer "k8s.io/apimachinery/pkg/runtime/serializer" utilruntim...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/scheme/doc.go
vendor/github.com/openshift/client-go/image/clientset/versioned/scheme/doc.go
// Code generated by client-gen. DO NOT EDIT. // This package contains the scheme of the automatically generated clientset. package scheme
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestream.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestream.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" json "encoding/json" "fmt" "time" v1 "github.com/openshift/api/image/v1" imagev1 "github.com/openshift/client-go/image/applyconfigurations/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/image_client.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/image_client.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "net/http" v1 "github.com/openshift/api/image/v1" "github.com/openshift/client-go/image/clientset/versioned/scheme" rest "k8s.io/client-go/rest" ) type ImageV1Interface interface { RESTClient() rest.Interface ImagesGetter ImageSignaturesGetter...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamtag.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamtag.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" "time" v1 "github.com/openshift/api/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" rest "k8s.io/client-go/rest" ) // ImageStreamTagsGetter has a method ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreammapping.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreammapping.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" json "encoding/json" "fmt" imagev1 "github.com/openshift/api/image/v1" v1 "github.com/openshift/client-go/image/applyconfigurations/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s.io/apim...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamimport.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamimport.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" v1 "github.com/openshift/api/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" rest "k8s.io/client-go/rest" ) // ImageStreamImportsGetter has a method to re...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/image.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/image.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" json "encoding/json" "fmt" "time" v1 "github.com/openshift/api/image/v1" imagev1 "github.com/openshift/client-go/image/applyconfigurations/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagetag.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagetag.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" "time" v1 "github.com/openshift/api/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" rest "k8s.io/client-go/rest" ) // ImageTagsGetter has a method to ret...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamimage.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagestreamimage.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" imagev1 "github.com/openshift/api/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" rest "k8s.io/client-go/rest" ) // ImageStreamImagesGetter has a method to re...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/generated_expansion.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/generated_expansion.go
// Code generated by client-gen. DO NOT EDIT. package v1 type ImageExpansion interface{} type ImageSignatureExpansion interface{} type ImageStreamExpansion interface{} type ImageStreamImageExpansion interface{} type ImageStreamImportExpansion interface{} type ImageStreamMappingExpansion interface{} type ImageSt...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/doc.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/doc.go
// Code generated by client-gen. DO NOT EDIT. // This package has the automatically generated typed clients. package v1
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagesignature.go
vendor/github.com/openshift/client-go/image/clientset/versioned/typed/image/v1/imagesignature.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" v1 "github.com/openshift/api/image/v1" scheme "github.com/openshift/client-go/image/clientset/versioned/scheme" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" rest "k8s.io/client-go/rest" ) // ImageSignaturesGetter has a method to retur...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/namedtageventlist.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/namedtageventlist.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // NamedTagEventListApplyConfiguration represents an declarative configuration of the NamedTagEventList type for use // with apply. type NamedTagEventListApplyConfiguration struct { Tag *string `json:"tag,omitem...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestream.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestream.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( apiimagev1 "github.com/openshift/api/image/v1" internal "github.com/openshift/client-go/image/applyconfigurations/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apima...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreamstatus.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreamstatus.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageStreamStatusApplyConfiguration represents an declarative configuration of the ImageStreamStatus type for use // with apply. type ImageStreamStatusApplyConfiguration struct { DockerImageRepository *string ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreammapping.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreammapping.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( apiimagev1 "github.com/openshift/api/image/v1" internal "github.com/openshift/client-go/image/applyconfigurations/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" managedfields "k8s.io/apima...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signatureissuer.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signatureissuer.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // SignatureIssuerApplyConfiguration represents an declarative configuration of the SignatureIssuer type for use // with apply. type SignatureIssuerApplyConfiguration struct { SignatureGenericEntityApplyConfiguration `json:",inline"` } // Signatur...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/image.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/image.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( apiimagev1 "github.com/openshift/api/image/v1" internal "github.com/openshift/client-go/image/applyconfigurations/internal" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" types "k8s.io/apimachin...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturesubject.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturesubject.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // SignatureSubjectApplyConfiguration represents an declarative configuration of the SignatureSubject type for use // with apply. type SignatureSubjectApplyConfiguration struct { SignatureGenericEntityApplyConfiguration `json:",inline"` PublicKeyI...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagelayer.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagelayer.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageLayerApplyConfiguration represents an declarative configuration of the ImageLayer type for use // with apply. type ImageLayerApplyConfiguration struct { Name *string `json:"name,omitempty"` LayerSize *int64 `json:"size,omitempty"` M...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturecondition.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturecondition.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "github.com/openshift/api/image/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) // SignatureConditionApplyConfiguration represents an declarative configuration of the SignatureCondition type for use //...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagevent.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagevent.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) // TagEventApplyConfiguration represents an declarative configuration of the TagEvent type for use // with apply. type TagEventApplyConfiguration struct { Created *v1.Time `json:"c...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagimportpolicy.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagimportpolicy.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "github.com/openshift/api/image/v1" ) // TagImportPolicyApplyConfiguration represents an declarative configuration of the TagImportPolicy type for use // with apply. type TagImportPolicyApplyConfiguration struct { Insecure *bool ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagreference.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagreference.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "k8s.io/api/core/v1" ) // TagReferenceApplyConfiguration represents an declarative configuration of the TagReference type for use // with apply. type TagReferenceApplyConfiguration struct { Name *string ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagelookuppolicy.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagelookuppolicy.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageLookupPolicyApplyConfiguration represents an declarative configuration of the ImageLookupPolicy type for use // with apply. type ImageLookupPolicyApplyConfiguration struct { Local *bool `json:"local,omitempty"` } // ImageLookupPolicyApplyC...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturegenericentity.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/signaturegenericentity.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // SignatureGenericEntityApplyConfiguration represents an declarative configuration of the SignatureGenericEntity type for use // with apply. type SignatureGenericEntityApplyConfiguration struct { Organization *string `json:"organization,omitempty"...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreamspec.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagestreamspec.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageStreamSpecApplyConfiguration represents an declarative configuration of the ImageStreamSpec type for use // with apply. type ImageStreamSpecApplyConfiguration struct { LookupPolicy *ImageLookupPolicyApplyConfiguration `json:"lookup...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagreferencepolicy.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tagreferencepolicy.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "github.com/openshift/api/image/v1" ) // TagReferencePolicyApplyConfiguration represents an declarative configuration of the TagReferencePolicy type for use // with apply. type TagReferencePolicyApplyConfiguration struct { Type *v1.Ta...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tageventcondition.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/tageventcondition.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( v1 "github.com/openshift/api/image/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) // TagEventConditionApplyConfiguration represents an declarative configuration of the TagEventCondition type for use // w...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagesignature.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagesignature.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" types "k8s.io/apimachinery/pkg/types" v1 "k8s.io/client-go/applyconfigurations/meta/v1" ) // ImageSignatureApplyConfiguration represents an declarative configuration of the ImageSignature ty...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagemanifest.go
vendor/github.com/openshift/client-go/image/applyconfigurations/image/v1/imagemanifest.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageManifestApplyConfiguration represents an declarative configuration of the ImageManifest type for use // with apply. type ImageManifestApplyConfiguration struct { Digest *string `json:"digest,omitempty"` MediaType *string `json:"me...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/image/applyconfigurations/internal/internal.go
vendor/github.com/openshift/client-go/image/applyconfigurations/internal/internal.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package internal import ( "fmt" "sync" typed "sigs.k8s.io/structured-merge-diff/v4/typed" ) func Parser() *typed.Parser { parserOnce.Do(func() { var err error parser, err = typed.NewParser(schemaYAML) if err != nil { panic(fmt.Sprintf("Failed to...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/clientset.go
vendor/github.com/openshift/client-go/build/clientset/versioned/clientset.go
// Code generated by client-gen. DO NOT EDIT. package versioned import ( "fmt" "net/http" buildv1 "github.com/openshift/client-go/build/clientset/versioned/typed/build/v1" discovery "k8s.io/client-go/discovery" rest "k8s.io/client-go/rest" flowcontrol "k8s.io/client-go/util/flowcontrol" ) type Interface inter...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/doc.go
vendor/github.com/openshift/client-go/build/clientset/versioned/doc.go
// Code generated by client-gen. DO NOT EDIT. // This package has the automatically generated clientset. package versioned
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/scheme/register.go
vendor/github.com/openshift/client-go/build/clientset/versioned/scheme/register.go
// Code generated by client-gen. DO NOT EDIT. package scheme import ( buildv1 "github.com/openshift/api/build/v1" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" runtime "k8s.io/apimachinery/pkg/runtime" schema "k8s.io/apimachinery/pkg/runtime/schema" serializer "k8s.io/apimachinery/pkg/runtime/serializer" utilruntim...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/scheme/doc.go
vendor/github.com/openshift/client-go/build/clientset/versioned/scheme/doc.go
// Code generated by client-gen. DO NOT EDIT. // This package contains the scheme of the automatically generated clientset. package scheme
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/buildconfig.go
vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/buildconfig.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" json "encoding/json" "fmt" "time" v1 "github.com/openshift/api/build/v1" buildv1 "github.com/openshift/client-go/build/applyconfigurations/build/v1" scheme "github.com/openshift/client-go/build/clientset/versioned/scheme" metav1 "k8s...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/build.go
vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/build.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "context" json "encoding/json" "fmt" "time" v1 "github.com/openshift/api/build/v1" buildv1 "github.com/openshift/client-go/build/applyconfigurations/build/v1" scheme "github.com/openshift/client-go/build/clientset/versioned/scheme" metav1 "k8s...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/generated_expansion.go
vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/generated_expansion.go
// Code generated by client-gen. DO NOT EDIT. package v1 type BuildExpansion interface{} type BuildConfigExpansion interface{}
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/build_client.go
vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/build_client.go
// Code generated by client-gen. DO NOT EDIT. package v1 import ( "net/http" v1 "github.com/openshift/api/build/v1" "github.com/openshift/client-go/build/clientset/versioned/scheme" rest "k8s.io/client-go/rest" ) type BuildV1Interface interface { RESTClient() rest.Interface BuildsGetter BuildConfigsGetter } ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/doc.go
vendor/github.com/openshift/client-go/build/clientset/versioned/typed/build/v1/doc.go
// Code generated by client-gen. DO NOT EDIT. // This package has the automatically generated typed clients. package v1
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitlabwebhookcause.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitlabwebhookcause.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // GitLabWebHookCauseApplyConfiguration represents an declarative configuration of the GitLabWebHookCause type for use // with apply. type GitLabWebHookCauseApplyConfiguration struct { CommonWebHookCauseApplyConfiguration `json:",inline"` } // Git...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildstatus.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildstatus.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 import ( time "time" v1 "github.com/openshift/api/build/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" ) // BuildStatusApplyConfiguration represents an declarative configuration of the BuildStatus type for use //...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitbuildsource.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitbuildsource.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // GitBuildSourceApplyConfiguration represents an declarative configuration of the GitBuildSource type for use // with apply. type GitBuildSourceApplyConfiguration struct { URI *string `json:"uri,omitempty"` Ref ...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/webhooktrigger.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/webhooktrigger.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // WebHookTriggerApplyConfiguration represents an declarative configuration of the WebHookTrigger type for use // with apply. type WebHookTriggerApplyConfiguration struct { Secret *string `json:"secret,omite...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildpostcommitspec.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildpostcommitspec.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // BuildPostCommitSpecApplyConfiguration represents an declarative configuration of the BuildPostCommitSpec type for use // with apply. type BuildPostCommitSpecApplyConfiguration struct { Command []string `json:"command,omitempty"` Args []strin...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildtriggercause.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/buildtriggercause.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // BuildTriggerCauseApplyConfiguration represents an declarative configuration of the BuildTriggerCause type for use // with apply. type BuildTriggerCauseApplyConfiguration struct { Message *string `json:"m...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitsourcerevision.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/gitsourcerevision.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // GitSourceRevisionApplyConfiguration represents an declarative configuration of the GitSourceRevision type for use // with apply. type GitSourceRevisionApplyConfiguration struct { Commit *string `json:"commit,omite...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false
kubev2v/forklift
https://github.com/kubev2v/forklift/blob/b3b4703e958c25d54c4d48138d9e80ae32fadac3/vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/imagesourcepath.go
vendor/github.com/openshift/client-go/build/applyconfigurations/build/v1/imagesourcepath.go
// Code generated by applyconfiguration-gen. DO NOT EDIT. package v1 // ImageSourcePathApplyConfiguration represents an declarative configuration of the ImageSourcePath type for use // with apply. type ImageSourcePathApplyConfiguration struct { SourcePath *string `json:"sourcePath,omitempty"` DestinationDir *st...
go
Apache-2.0
b3b4703e958c25d54c4d48138d9e80ae32fadac3
2026-01-07T09:44:30.792320Z
false