diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index e92ba89fba9..fbaf2fb6f16 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -14762,13 +14762,31 @@ "v1.EnvVarSource": { "id": "v1.EnvVarSource", "description": "EnvVarSource represents a source for the value of an EnvVar.", - "required": [ - "fieldRef" - ], "properties": { "fieldRef": { "$ref": "v1.ObjectFieldSelector", - "description": "Selects a field of the pod. Only name and namespace are supported." + "description": "Selects a field of the pod; only name and namespace are supported." + }, + "configMapKeyRef": { + "$ref": "v1.ConfigMapKeySelector", + "description": "Selects a key of a ConfigMap." + } + } + }, + "v1.ConfigMapKeySelector": { + "id": "v1.ConfigMapKeySelector", + "description": "Selects a key from a ConfigMap.", + "required": [ + "key" + ], + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://releases.k8s.io/HEAD/docs/user-guide/identifiers.md#names" + }, + "key": { + "type": "string", + "description": "The key to select." } } }, diff --git a/api/swagger-spec/v1beta1.json b/api/swagger-spec/v1beta1.json index 2a9edc19100..7883e4be804 100644 --- a/api/swagger-spec/v1beta1.json +++ b/api/swagger-spec/v1beta1.json @@ -4852,13 +4852,31 @@ "v1.EnvVarSource": { "id": "v1.EnvVarSource", "description": "EnvVarSource represents a source for the value of an EnvVar.", - "required": [ - "fieldRef" - ], "properties": { "fieldRef": { "$ref": "v1.ObjectFieldSelector", - "description": "Selects a field of the pod. Only name and namespace are supported." + "description": "Selects a field of the pod; only name and namespace are supported." + }, + "configMapKeyRef": { + "$ref": "v1.ConfigMapKeySelector", + "description": "Selects a key of a ConfigMap." + } + } + }, + "v1.ConfigMapKeySelector": { + "id": "v1.ConfigMapKeySelector", + "description": "Selects a key from a ConfigMap.", + "required": [ + "key" + ], + "properties": { + "name": { + "type": "string", + "description": "Name of the referent. More info: http://releases.k8s.io/HEAD/docs/user-guide/identifiers.md#names" + }, + "key": { + "type": "string", + "description": "The key to select." } } }, diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 1f859ed93f9..bca0fd61dc1 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -3077,11 +3077,18 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

fieldRef

-

Selects a field of the pod. Only name and namespace are supported.

-

true

+

Selects a field of the pod; only name and namespace are supported.

+

false

v1.ObjectFieldSelector

+ +

configMapKeyRef

+

Selects a key of a ConfigMap.

+

false

+

v1.ConfigMapKeySelector

+ + @@ -4066,6 +4073,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.ConfigMapKeySelector

+
+

Selects a key from a ConfigMap.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

name

Name of the referent. More info: http://releases.k8s.io/HEAD/docs/user-guide/identifiers.md#names

false

string

key

The key to select.

true

string

+

v1.Handler

@@ -4477,7 +4525,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 019892f7428..fd0a62ded7b 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -2613,11 +2613,18 @@ The resulting set of endpoints can be viewed as:

fieldRef

-

Selects a field of the pod. Only name and namespace are supported.

-

true

+

Selects a field of the pod; only name and namespace are supported.

+

false

v1.ObjectFieldSelector

+ +

configMapKeyRef

+

Selects a key of a ConfigMap.

+

false

+

v1.ConfigMapKeySelector

+ + @@ -6555,6 +6562,47 @@ The resulting set of endpoints can be viewed as:
+ +
+

v1.ContainerStateWaiting

+
+

ContainerStateWaiting is a waiting state of a container.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

reason

(brief) reason the container is not yet running.

false

string

message

Message regarding why the container is not yet running.

false

string

+

unversioned.Status

@@ -6640,9 +6688,9 @@ The resulting set of endpoints can be viewed as:
-

v1.ContainerStateWaiting

+

v1.ConfigMapKeySelector

-

ContainerStateWaiting is a waiting state of a container.

+

Selects a key from a ConfigMap.

@@ -6663,16 +6711,16 @@ The resulting set of endpoints can be viewed as:
- - + + - - - + + + @@ -7049,7 +7097,7 @@ The resulting set of endpoints can be viewed as:
diff --git a/pkg/api/deep_copy_generated.go b/pkg/api/deep_copy_generated.go index e11f71ce497..9faf28ba2aa 100644 --- a/pkg/api/deep_copy_generated.go +++ b/pkg/api/deep_copy_generated.go @@ -39,6 +39,7 @@ func init() { deepCopy_api_ComponentCondition, deepCopy_api_ComponentStatus, deepCopy_api_ComponentStatusList, + deepCopy_api_ConfigMapKeySelector, deepCopy_api_Container, deepCopy_api_ContainerImage, deepCopy_api_ContainerPort, @@ -295,6 +296,14 @@ func deepCopy_api_ComponentStatusList(in ComponentStatusList, out *ComponentStat return nil } +func deepCopy_api_ConfigMapKeySelector(in ConfigMapKeySelector, out *ConfigMapKeySelector, c *conversion.Cloner) error { + if err := deepCopy_api_LocalObjectReference(in.LocalObjectReference, &out.LocalObjectReference, c); err != nil { + return err + } + out.Key = in.Key + return nil +} + func deepCopy_api_Container(in Container, out *Container, c *conversion.Cloner) error { out.Name = in.Name out.Image = in.Image @@ -682,6 +691,15 @@ func deepCopy_api_EnvVarSource(in EnvVarSource, out *EnvVarSource, c *conversion } else { out.FieldRef = nil } + if in.ConfigMapKeyRef != nil { + in, out := in.ConfigMapKeyRef, &out.ConfigMapKeyRef + *out = new(ConfigMapKeySelector) + if err := deepCopy_api_ConfigMapKeySelector(*in, *out, c); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 2db1a9055cd..1c731026913 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -13579,14 +13579,16 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep968 := !z.EncBinary() yy2arr968 := z.EncBasicHandle().StructToArray - var yyq968 [1]bool + var yyq968 [2]bool _, _, _ = yysep968, yyq968, yy2arr968 const yyr968 bool = false + yyq968[0] = x.FieldRef != nil + yyq968[1] = x.ConfigMapKeyRef != nil var yynn968 int if yyr968 || yy2arr968 { - r.EncodeArrayStart(1) + r.EncodeArrayStart(2) } else { - yynn968 = 1 + yynn968 = 0 for _, b := range yyq968 { if b { yynn968++ @@ -13597,19 +13599,48 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr968 || yy2arr968 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.FieldRef == nil { - r.EncodeNil() + if yyq968[0] { + if x.FieldRef == nil { + r.EncodeNil() + } else { + x.FieldRef.CodecEncodeSelf(e) + } } else { - x.FieldRef.CodecEncodeSelf(e) + r.EncodeNil() } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.FieldRef == nil { - r.EncodeNil() + if yyq968[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.FieldRef == nil { + r.EncodeNil() + } else { + x.FieldRef.CodecEncodeSelf(e) + } + } + } + if yyr968 || yy2arr968 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq968[1] { + if x.ConfigMapKeyRef == nil { + r.EncodeNil() + } else { + x.ConfigMapKeyRef.CodecEncodeSelf(e) + } } else { - x.FieldRef.CodecEncodeSelf(e) + r.EncodeNil() + } + } else { + if yyq968[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ConfigMapKeyRef == nil { + r.EncodeNil() + } else { + x.ConfigMapKeyRef.CodecEncodeSelf(e) + } } } if yyr968 || yy2arr968 { @@ -13625,25 +13656,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym970 := z.DecBinary() - _ = yym970 + yym971 := z.DecBinary() + _ = yym971 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct971 := r.ContainerType() - if yyct971 == codecSelferValueTypeMap1234 { - yyl971 := r.ReadMapStart() - if yyl971 == 0 { + yyct972 := r.ContainerType() + if yyct972 == codecSelferValueTypeMap1234 { + yyl972 := r.ReadMapStart() + if yyl972 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl971, d) + x.codecDecodeSelfFromMap(yyl972, d) } - } else if yyct971 == codecSelferValueTypeArray1234 { - yyl971 := r.ReadArrayStart() - if yyl971 == 0 { + } else if yyct972 == codecSelferValueTypeArray1234 { + yyl972 := r.ReadArrayStart() + if yyl972 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl971, d) + x.codecDecodeSelfFromArray(yyl972, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13655,12 +13686,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys972Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys972Slc - var yyhl972 bool = l >= 0 - for yyj972 := 0; ; yyj972++ { - if yyhl972 { - if yyj972 >= l { + var yys973Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys973Slc + var yyhl973 bool = l >= 0 + for yyj973 := 0; ; yyj973++ { + if yyhl973 { + if yyj973 >= l { break } } else { @@ -13669,10 +13700,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys972Slc = r.DecodeBytes(yys972Slc, true, true) - yys972 := string(yys972Slc) + yys973Slc = r.DecodeBytes(yys973Slc, true, true) + yys973 := string(yys973Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys972 { + switch yys973 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -13684,10 +13715,21 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } + case "configMapKeyRef": + if r.TryDecodeAsNil() { + if x.ConfigMapKeyRef != nil { + x.ConfigMapKeyRef = nil + } + } else { + if x.ConfigMapKeyRef == nil { + x.ConfigMapKeyRef = new(ConfigMapKeySelector) + } + x.ConfigMapKeyRef.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys972) - } // end switch yys972 - } // end for yyj972 + z.DecStructFieldNotFound(-1, yys973) + } // end switch yys973 + } // end for yyj973 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13695,16 +13737,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj974 int - var yyb974 bool - var yyhl974 bool = l >= 0 - yyj974++ - if yyhl974 { - yyb974 = yyj974 > l + var yyj976 int + var yyb976 bool + var yyhl976 bool = l >= 0 + yyj976++ + if yyhl976 { + yyb976 = yyj976 > l } else { - yyb974 = r.CheckBreak() + yyb976 = r.CheckBreak() } - if yyb974 { + if yyb976 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13719,18 +13761,39 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - for { - yyj974++ - if yyhl974 { - yyb974 = yyj974 > l - } else { - yyb974 = r.CheckBreak() + yyj976++ + if yyhl976 { + yyb976 = yyj976 > l + } else { + yyb976 = r.CheckBreak() + } + if yyb976 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.ConfigMapKeyRef != nil { + x.ConfigMapKeyRef = nil } - if yyb974 { + } else { + if x.ConfigMapKeyRef == nil { + x.ConfigMapKeyRef = new(ConfigMapKeySelector) + } + x.ConfigMapKeyRef.CodecDecodeSelf(d) + } + for { + yyj976++ + if yyhl976 { + yyb976 = yyj976 > l + } else { + yyb976 = r.CheckBreak() + } + if yyb976 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj974-1, "") + z.DecStructFieldNotFound(yyj976-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13742,33 +13805,33 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym976 := z.EncBinary() - _ = yym976 + yym979 := z.EncBinary() + _ = yym979 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep977 := !z.EncBinary() - yy2arr977 := z.EncBasicHandle().StructToArray - var yyq977 [2]bool - _, _, _ = yysep977, yyq977, yy2arr977 - const yyr977 bool = false - var yynn977 int - if yyr977 || yy2arr977 { + yysep980 := !z.EncBinary() + yy2arr980 := z.EncBasicHandle().StructToArray + var yyq980 [2]bool + _, _, _ = yysep980, yyq980, yy2arr980 + const yyr980 bool = false + var yynn980 int + if yyr980 || yy2arr980 { r.EncodeArrayStart(2) } else { - yynn977 = 2 - for _, b := range yyq977 { + yynn980 = 2 + for _, b := range yyq980 { if b { - yynn977++ + yynn980++ } } - r.EncodeMapStart(yynn977) - yynn977 = 0 + r.EncodeMapStart(yynn980) + yynn980 = 0 } - if yyr977 || yy2arr977 { + if yyr980 || yy2arr980 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym979 := z.EncBinary() - _ = yym979 + yym982 := z.EncBinary() + _ = yym982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -13777,17 +13840,17 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym980 := z.EncBinary() - _ = yym980 + yym983 := z.EncBinary() + _ = yym983 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr977 || yy2arr977 { + if yyr980 || yy2arr980 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym982 := z.EncBinary() - _ = yym982 + yym985 := z.EncBinary() + _ = yym985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -13796,14 +13859,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym983 := z.EncBinary() - _ = yym983 + yym986 := z.EncBinary() + _ = yym986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr977 || yy2arr977 { + if yyr980 || yy2arr980 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13816,25 +13879,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym984 := z.DecBinary() - _ = yym984 + yym987 := z.DecBinary() + _ = yym987 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct985 := r.ContainerType() - if yyct985 == codecSelferValueTypeMap1234 { - yyl985 := r.ReadMapStart() - if yyl985 == 0 { + yyct988 := r.ContainerType() + if yyct988 == codecSelferValueTypeMap1234 { + yyl988 := r.ReadMapStart() + if yyl988 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl985, d) + x.codecDecodeSelfFromMap(yyl988, d) } - } else if yyct985 == codecSelferValueTypeArray1234 { - yyl985 := r.ReadArrayStart() - if yyl985 == 0 { + } else if yyct988 == codecSelferValueTypeArray1234 { + yyl988 := r.ReadArrayStart() + if yyl988 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl985, d) + x.codecDecodeSelfFromArray(yyl988, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13846,12 +13909,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys986Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys986Slc - var yyhl986 bool = l >= 0 - for yyj986 := 0; ; yyj986++ { - if yyhl986 { - if yyj986 >= l { + var yys989Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys989Slc + var yyhl989 bool = l >= 0 + for yyj989 := 0; ; yyj989++ { + if yyhl989 { + if yyj989 >= l { break } } else { @@ -13860,10 +13923,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys986Slc = r.DecodeBytes(yys986Slc, true, true) - yys986 := string(yys986Slc) + yys989Slc = r.DecodeBytes(yys989Slc, true, true) + yys989 := string(yys989Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys986 { + switch yys989 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -13877,9 +13940,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys986) - } // end switch yys986 - } // end for yyj986 + z.DecStructFieldNotFound(-1, yys989) + } // end switch yys989 + } // end for yyj989 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13887,16 +13950,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj989 int - var yyb989 bool - var yyhl989 bool = l >= 0 - yyj989++ - if yyhl989 { - yyb989 = yyj989 > l + var yyj992 int + var yyb992 bool + var yyhl992 bool = l >= 0 + yyj992++ + if yyhl992 { + yyb992 = yyj992 > l } else { - yyb989 = r.CheckBreak() + yyb992 = r.CheckBreak() } - if yyb989 { + if yyb992 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13906,13 +13969,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj989++ - if yyhl989 { - yyb989 = yyj989 > l + yyj992++ + if yyhl992 { + yyb992 = yyj992 > l } else { - yyb989 = r.CheckBreak() + yyb992 = r.CheckBreak() } - if yyb989 { + if yyb992 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13923,17 +13986,220 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj989++ - if yyhl989 { - yyb989 = yyj989 > l + yyj992++ + if yyhl992 { + yyb992 = yyj992 > l } else { - yyb989 = r.CheckBreak() + yyb992 = r.CheckBreak() } - if yyb989 { + if yyb992 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj989-1, "") + z.DecStructFieldNotFound(yyj992-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym995 := z.EncBinary() + _ = yym995 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep996 := !z.EncBinary() + yy2arr996 := z.EncBasicHandle().StructToArray + var yyq996 [2]bool + _, _, _ = yysep996, yyq996, yy2arr996 + const yyr996 bool = false + var yynn996 int + if yyr996 || yy2arr996 { + r.EncodeArrayStart(2) + } else { + yynn996 = 2 + for _, b := range yyq996 { + if b { + yynn996++ + } + } + r.EncodeMapStart(yynn996) + yynn996 = 0 + } + if yyr996 || yy2arr996 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym998 := z.EncBinary() + _ = yym998 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("Name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym999 := z.EncBinary() + _ = yym999 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + if yyr996 || yy2arr996 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1001 := z.EncBinary() + _ = yym1001 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("key")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1002 := z.EncBinary() + _ = yym1002 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } + if yyr996 || yy2arr996 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1003 := z.DecBinary() + _ = yym1003 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1004 := r.ContainerType() + if yyct1004 == codecSelferValueTypeMap1234 { + yyl1004 := r.ReadMapStart() + if yyl1004 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1004, d) + } + } else if yyct1004 == codecSelferValueTypeArray1234 { + yyl1004 := r.ReadArrayStart() + if yyl1004 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1004, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1005Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1005Slc + var yyhl1005 bool = l >= 0 + for yyj1005 := 0; ; yyj1005++ { + if yyhl1005 { + if yyj1005 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1005Slc = r.DecodeBytes(yys1005Slc, true, true) + yys1005 := string(yys1005Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1005 { + case "Name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + case "key": + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys1005) + } // end switch yys1005 + } // end for yyj1005 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1008 int + var yyb1008 bool + var yyhl1008 bool = l >= 0 + yyj1008++ + if yyhl1008 { + yyb1008 = yyj1008 > l + } else { + yyb1008 = r.CheckBreak() + } + if yyb1008 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj1008++ + if yyhl1008 { + yyb1008 = yyj1008 > l + } else { + yyb1008 = r.CheckBreak() + } + if yyb1008 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + for { + yyj1008++ + if yyhl1008 { + yyb1008 = yyj1008 > l + } else { + yyb1008 = r.CheckBreak() + } + if yyb1008 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1008-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13945,38 +14211,38 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym992 := z.EncBinary() - _ = yym992 + yym1011 := z.EncBinary() + _ = yym1011 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep993 := !z.EncBinary() - yy2arr993 := z.EncBasicHandle().StructToArray - var yyq993 [4]bool - _, _, _ = yysep993, yyq993, yy2arr993 - const yyr993 bool = false - yyq993[0] = x.Path != "" - yyq993[1] = true - yyq993[2] = x.Host != "" - yyq993[3] = x.Scheme != "" - var yynn993 int - if yyr993 || yy2arr993 { + yysep1012 := !z.EncBinary() + yy2arr1012 := z.EncBasicHandle().StructToArray + var yyq1012 [4]bool + _, _, _ = yysep1012, yyq1012, yy2arr1012 + const yyr1012 bool = false + yyq1012[0] = x.Path != "" + yyq1012[1] = true + yyq1012[2] = x.Host != "" + yyq1012[3] = x.Scheme != "" + var yynn1012 int + if yyr1012 || yy2arr1012 { r.EncodeArrayStart(4) } else { - yynn993 = 0 - for _, b := range yyq993 { + yynn1012 = 0 + for _, b := range yyq1012 { if b { - yynn993++ + yynn1012++ } } - r.EncodeMapStart(yynn993) - yynn993 = 0 + r.EncodeMapStart(yynn1012) + yynn1012 = 0 } - if yyr993 || yy2arr993 { + if yyr1012 || yy2arr1012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq993[0] { - yym995 := z.EncBinary() - _ = yym995 + if yyq1012[0] { + yym1014 := z.EncBinary() + _ = yym1014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13985,56 +14251,56 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq993[0] { + if yyq1012[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym996 := z.EncBinary() - _ = yym996 + yym1015 := z.EncBinary() + _ = yym1015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr993 || yy2arr993 { + if yyr1012 || yy2arr1012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq993[1] { - yy998 := &x.Port - yym999 := z.EncBinary() - _ = yym999 + if yyq1012[1] { + yy1017 := &x.Port + yym1018 := z.EncBinary() + _ = yym1018 if false { - } else if z.HasExtensions() && z.EncExt(yy998) { - } else if !yym999 && z.IsJSONHandle() { - z.EncJSONMarshal(yy998) + } else if z.HasExtensions() && z.EncExt(yy1017) { + } else if !yym1018 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1017) } else { - z.EncFallback(yy998) + z.EncFallback(yy1017) } } else { r.EncodeNil() } } else { - if yyq993[1] { + if yyq1012[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1000 := &x.Port - yym1001 := z.EncBinary() - _ = yym1001 + yy1019 := &x.Port + yym1020 := z.EncBinary() + _ = yym1020 if false { - } else if z.HasExtensions() && z.EncExt(yy1000) { - } else if !yym1001 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1000) + } else if z.HasExtensions() && z.EncExt(yy1019) { + } else if !yym1020 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1019) } else { - z.EncFallback(yy1000) + z.EncFallback(yy1019) } } } - if yyr993 || yy2arr993 { + if yyr1012 || yy2arr1012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq993[2] { - yym1003 := z.EncBinary() - _ = yym1003 + if yyq1012[2] { + yym1022 := z.EncBinary() + _ = yym1022 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -14043,34 +14309,34 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq993[2] { + if yyq1012[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1004 := z.EncBinary() - _ = yym1004 + yym1023 := z.EncBinary() + _ = yym1023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr993 || yy2arr993 { + if yyr1012 || yy2arr1012 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq993[3] { + if yyq1012[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq993[3] { + if yyq1012[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr993 || yy2arr993 { + if yyr1012 || yy2arr1012 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14083,25 +14349,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1006 := z.DecBinary() - _ = yym1006 + yym1025 := z.DecBinary() + _ = yym1025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1007 := r.ContainerType() - if yyct1007 == codecSelferValueTypeMap1234 { - yyl1007 := r.ReadMapStart() - if yyl1007 == 0 { + yyct1026 := r.ContainerType() + if yyct1026 == codecSelferValueTypeMap1234 { + yyl1026 := r.ReadMapStart() + if yyl1026 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1007, d) + x.codecDecodeSelfFromMap(yyl1026, d) } - } else if yyct1007 == codecSelferValueTypeArray1234 { - yyl1007 := r.ReadArrayStart() - if yyl1007 == 0 { + } else if yyct1026 == codecSelferValueTypeArray1234 { + yyl1026 := r.ReadArrayStart() + if yyl1026 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1007, d) + x.codecDecodeSelfFromArray(yyl1026, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14113,12 +14379,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1008Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1008Slc - var yyhl1008 bool = l >= 0 - for yyj1008 := 0; ; yyj1008++ { - if yyhl1008 { - if yyj1008 >= l { + var yys1027Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1027Slc + var yyhl1027 bool = l >= 0 + for yyj1027 := 0; ; yyj1027++ { + if yyhl1027 { + if yyj1027 >= l { break } } else { @@ -14127,10 +14393,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1008Slc = r.DecodeBytes(yys1008Slc, true, true) - yys1008 := string(yys1008Slc) + yys1027Slc = r.DecodeBytes(yys1027Slc, true, true) + yys1027 := string(yys1027Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1008 { + switch yys1027 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -14141,15 +14407,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv1010 := &x.Port - yym1011 := z.DecBinary() - _ = yym1011 + yyv1029 := &x.Port + yym1030 := z.DecBinary() + _ = yym1030 if false { - } else if z.HasExtensions() && z.DecExt(yyv1010) { - } else if !yym1011 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1010) + } else if z.HasExtensions() && z.DecExt(yyv1029) { + } else if !yym1030 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1029) } else { - z.DecFallback(yyv1010, false) + z.DecFallback(yyv1029, false) } } case "host": @@ -14165,9 +14431,9 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1008) - } // end switch yys1008 - } // end for yyj1008 + z.DecStructFieldNotFound(-1, yys1027) + } // end switch yys1027 + } // end for yyj1027 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14175,16 +14441,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1014 int - var yyb1014 bool - var yyhl1014 bool = l >= 0 - yyj1014++ - if yyhl1014 { - yyb1014 = yyj1014 > l + var yyj1033 int + var yyb1033 bool + var yyhl1033 bool = l >= 0 + yyj1033++ + if yyhl1033 { + yyb1033 = yyj1033 > l } else { - yyb1014 = r.CheckBreak() + yyb1033 = r.CheckBreak() } - if yyb1014 { + if yyb1033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14194,266 +14460,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj1014++ - if yyhl1014 { - yyb1014 = yyj1014 > l + yyj1033++ + if yyhl1033 { + yyb1033 = yyj1033 > l } else { - yyb1014 = r.CheckBreak() + yyb1033 = r.CheckBreak() } - if yyb1014 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Port = pkg5_intstr.IntOrString{} - } else { - yyv1016 := &x.Port - yym1017 := z.DecBinary() - _ = yym1017 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1016) { - } else if !yym1017 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1016) - } else { - z.DecFallback(yyv1016, false) - } - } - yyj1014++ - if yyhl1014 { - yyb1014 = yyj1014 > l - } else { - yyb1014 = r.CheckBreak() - } - if yyb1014 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Host = "" - } else { - x.Host = string(r.DecodeString()) - } - yyj1014++ - if yyhl1014 { - yyb1014 = yyj1014 > l - } else { - yyb1014 = r.CheckBreak() - } - if yyb1014 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Scheme = "" - } else { - x.Scheme = URIScheme(r.DecodeString()) - } - for { - yyj1014++ - if yyhl1014 { - yyb1014 = yyj1014 > l - } else { - yyb1014 = r.CheckBreak() - } - if yyb1014 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1014-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym1020 := z.EncBinary() - _ = yym1020 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1021 := z.DecBinary() - _ = yym1021 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1022 := z.EncBinary() - _ = yym1022 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1023 := !z.EncBinary() - yy2arr1023 := z.EncBasicHandle().StructToArray - var yyq1023 [1]bool - _, _, _ = yysep1023, yyq1023, yy2arr1023 - const yyr1023 bool = false - yyq1023[0] = true - var yynn1023 int - if yyr1023 || yy2arr1023 { - r.EncodeArrayStart(1) - } else { - yynn1023 = 0 - for _, b := range yyq1023 { - if b { - yynn1023++ - } - } - r.EncodeMapStart(yynn1023) - yynn1023 = 0 - } - if yyr1023 || yy2arr1023 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1023[0] { - yy1025 := &x.Port - yym1026 := z.EncBinary() - _ = yym1026 - if false { - } else if z.HasExtensions() && z.EncExt(yy1025) { - } else if !yym1026 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1025) - } else { - z.EncFallback(yy1025) - } - } else { - r.EncodeNil() - } - } else { - if yyq1023[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("port")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1027 := &x.Port - yym1028 := z.EncBinary() - _ = yym1028 - if false { - } else if z.HasExtensions() && z.EncExt(yy1027) { - } else if !yym1028 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1027) - } else { - z.EncFallback(yy1027) - } - } - } - if yyr1023 || yy2arr1023 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1029 := z.DecBinary() - _ = yym1029 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1030 := r.ContainerType() - if yyct1030 == codecSelferValueTypeMap1234 { - yyl1030 := r.ReadMapStart() - if yyl1030 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1030, d) - } - } else if yyct1030 == codecSelferValueTypeArray1234 { - yyl1030 := r.ReadArrayStart() - if yyl1030 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1030, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1031Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1031Slc - var yyhl1031 bool = l >= 0 - for yyj1031 := 0; ; yyj1031++ { - if yyhl1031 { - if yyj1031 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1031Slc = r.DecodeBytes(yys1031Slc, true, true) - yys1031 := string(yys1031Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1031 { - case "port": - if r.TryDecodeAsNil() { - x.Port = pkg5_intstr.IntOrString{} - } else { - yyv1032 := &x.Port - yym1033 := z.DecBinary() - _ = yym1033 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1032) { - } else if !yym1033 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1032) - } else { - z.DecFallback(yyv1032, false) - } - } - default: - z.DecStructFieldNotFound(-1, yys1031) - } // end switch yys1031 - } // end for yyj1031 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1034 int - var yyb1034 bool - var yyhl1034 bool = l >= 0 - yyj1034++ - if yyhl1034 { - yyb1034 = yyj1034 > l - } else { - yyb1034 = r.CheckBreak() - } - if yyb1034 { + if yyb1033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14472,18 +14485,271 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) z.DecFallback(yyv1035, false) } } + yyj1033++ + if yyhl1033 { + yyb1033 = yyj1033 > l + } else { + yyb1033 = r.CheckBreak() + } + if yyb1033 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + yyj1033++ + if yyhl1033 { + yyb1033 = yyj1033 > l + } else { + yyb1033 = r.CheckBreak() + } + if yyb1033 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Scheme = "" + } else { + x.Scheme = URIScheme(r.DecodeString()) + } for { - yyj1034++ - if yyhl1034 { - yyb1034 = yyj1034 > l + yyj1033++ + if yyhl1033 { + yyb1033 = yyj1033 > l } else { - yyb1034 = r.CheckBreak() + yyb1033 = r.CheckBreak() } - if yyb1034 { + if yyb1033 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1034-1, "") + z.DecStructFieldNotFound(yyj1033-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1039 := z.EncBinary() + _ = yym1039 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1040 := z.DecBinary() + _ = yym1040 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1041 := z.EncBinary() + _ = yym1041 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1042 := !z.EncBinary() + yy2arr1042 := z.EncBasicHandle().StructToArray + var yyq1042 [1]bool + _, _, _ = yysep1042, yyq1042, yy2arr1042 + const yyr1042 bool = false + yyq1042[0] = true + var yynn1042 int + if yyr1042 || yy2arr1042 { + r.EncodeArrayStart(1) + } else { + yynn1042 = 0 + for _, b := range yyq1042 { + if b { + yynn1042++ + } + } + r.EncodeMapStart(yynn1042) + yynn1042 = 0 + } + if yyr1042 || yy2arr1042 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1042[0] { + yy1044 := &x.Port + yym1045 := z.EncBinary() + _ = yym1045 + if false { + } else if z.HasExtensions() && z.EncExt(yy1044) { + } else if !yym1045 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1044) + } else { + z.EncFallback(yy1044) + } + } else { + r.EncodeNil() + } + } else { + if yyq1042[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("port")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1046 := &x.Port + yym1047 := z.EncBinary() + _ = yym1047 + if false { + } else if z.HasExtensions() && z.EncExt(yy1046) { + } else if !yym1047 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1046) + } else { + z.EncFallback(yy1046) + } + } + } + if yyr1042 || yy2arr1042 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1048 := z.DecBinary() + _ = yym1048 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1049 := r.ContainerType() + if yyct1049 == codecSelferValueTypeMap1234 { + yyl1049 := r.ReadMapStart() + if yyl1049 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1049, d) + } + } else if yyct1049 == codecSelferValueTypeArray1234 { + yyl1049 := r.ReadArrayStart() + if yyl1049 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1049, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1050Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1050Slc + var yyhl1050 bool = l >= 0 + for yyj1050 := 0; ; yyj1050++ { + if yyhl1050 { + if yyj1050 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1050Slc = r.DecodeBytes(yys1050Slc, true, true) + yys1050 := string(yys1050Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1050 { + case "port": + if r.TryDecodeAsNil() { + x.Port = pkg5_intstr.IntOrString{} + } else { + yyv1051 := &x.Port + yym1052 := z.DecBinary() + _ = yym1052 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1051) { + } else if !yym1052 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1051) + } else { + z.DecFallback(yyv1051, false) + } + } + default: + z.DecStructFieldNotFound(-1, yys1050) + } // end switch yys1050 + } // end for yyj1050 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1053 int + var yyb1053 bool + var yyhl1053 bool = l >= 0 + yyj1053++ + if yyhl1053 { + yyb1053 = yyj1053 > l + } else { + yyb1053 = r.CheckBreak() + } + if yyb1053 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Port = pkg5_intstr.IntOrString{} + } else { + yyv1054 := &x.Port + yym1055 := z.DecBinary() + _ = yym1055 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1054) { + } else if !yym1055 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1054) + } else { + z.DecFallback(yyv1054, false) + } + } + for { + yyj1053++ + if yyhl1053 { + yyb1053 = yyj1053 > l + } else { + yyb1053 = r.CheckBreak() + } + if yyb1053 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1053-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14495,38 +14761,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1037 := z.EncBinary() - _ = yym1037 + yym1056 := z.EncBinary() + _ = yym1056 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1038 := !z.EncBinary() - yy2arr1038 := z.EncBasicHandle().StructToArray - var yyq1038 [1]bool - _, _, _ = yysep1038, yyq1038, yy2arr1038 - const yyr1038 bool = false - yyq1038[0] = len(x.Command) != 0 - var yynn1038 int - if yyr1038 || yy2arr1038 { + yysep1057 := !z.EncBinary() + yy2arr1057 := z.EncBasicHandle().StructToArray + var yyq1057 [1]bool + _, _, _ = yysep1057, yyq1057, yy2arr1057 + const yyr1057 bool = false + yyq1057[0] = len(x.Command) != 0 + var yynn1057 int + if yyr1057 || yy2arr1057 { r.EncodeArrayStart(1) } else { - yynn1038 = 0 - for _, b := range yyq1038 { + yynn1057 = 0 + for _, b := range yyq1057 { if b { - yynn1038++ + yynn1057++ } } - r.EncodeMapStart(yynn1038) - yynn1038 = 0 + r.EncodeMapStart(yynn1057) + yynn1057 = 0 } - if yyr1038 || yy2arr1038 { + if yyr1057 || yy2arr1057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1038[0] { + if yyq1057[0] { if x.Command == nil { r.EncodeNil() } else { - yym1040 := z.EncBinary() - _ = yym1040 + yym1059 := z.EncBinary() + _ = yym1059 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14536,15 +14802,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1038[0] { + if yyq1057[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1041 := z.EncBinary() - _ = yym1041 + yym1060 := z.EncBinary() + _ = yym1060 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14552,7 +14818,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1038 || yy2arr1038 { + if yyr1057 || yy2arr1057 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14565,25 +14831,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1042 := z.DecBinary() - _ = yym1042 + yym1061 := z.DecBinary() + _ = yym1061 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1043 := r.ContainerType() - if yyct1043 == codecSelferValueTypeMap1234 { - yyl1043 := r.ReadMapStart() - if yyl1043 == 0 { + yyct1062 := r.ContainerType() + if yyct1062 == codecSelferValueTypeMap1234 { + yyl1062 := r.ReadMapStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1043, d) + x.codecDecodeSelfFromMap(yyl1062, d) } - } else if yyct1043 == codecSelferValueTypeArray1234 { - yyl1043 := r.ReadArrayStart() - if yyl1043 == 0 { + } else if yyct1062 == codecSelferValueTypeArray1234 { + yyl1062 := r.ReadArrayStart() + if yyl1062 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1043, d) + x.codecDecodeSelfFromArray(yyl1062, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14595,12 +14861,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1044Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1044Slc - var yyhl1044 bool = l >= 0 - for yyj1044 := 0; ; yyj1044++ { - if yyhl1044 { - if yyj1044 >= l { + var yys1063Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1063Slc + var yyhl1063 bool = l >= 0 + for yyj1063 := 0; ; yyj1063++ { + if yyhl1063 { + if yyj1063 >= l { break } } else { @@ -14609,26 +14875,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1044Slc = r.DecodeBytes(yys1044Slc, true, true) - yys1044 := string(yys1044Slc) + yys1063Slc = r.DecodeBytes(yys1063Slc, true, true) + yys1063 := string(yys1063Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1044 { + switch yys1063 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1045 := &x.Command - yym1046 := z.DecBinary() - _ = yym1046 + yyv1064 := &x.Command + yym1065 := z.DecBinary() + _ = yym1065 if false { } else { - z.F.DecSliceStringX(yyv1045, false, d) + z.F.DecSliceStringX(yyv1064, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1044) - } // end switch yys1044 - } // end for yyj1044 + z.DecStructFieldNotFound(-1, yys1063) + } // end switch yys1063 + } // end for yyj1063 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14636,16 +14902,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1047 int - var yyb1047 bool - var yyhl1047 bool = l >= 0 - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + var yyj1066 int + var yyb1066 bool + var yyhl1066 bool = l >= 0 + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1047 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1047 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14653,26 +14919,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1048 := &x.Command - yym1049 := z.DecBinary() - _ = yym1049 + yyv1067 := &x.Command + yym1068 := z.DecBinary() + _ = yym1068 if false { } else { - z.F.DecSliceStringX(yyv1048, false, d) + z.F.DecSliceStringX(yyv1067, false, d) } } for { - yyj1047++ - if yyhl1047 { - yyb1047 = yyj1047 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1047 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1047 { + if yyb1066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1047-1, "") + z.DecStructFieldNotFound(yyj1066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14684,49 +14950,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1050 := z.EncBinary() - _ = yym1050 + yym1069 := z.EncBinary() + _ = yym1069 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1051 := !z.EncBinary() - yy2arr1051 := z.EncBasicHandle().StructToArray - var yyq1051 [8]bool - _, _, _ = yysep1051, yyq1051, yy2arr1051 - const yyr1051 bool = false - yyq1051[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1051[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1051[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1051[3] = x.InitialDelaySeconds != 0 - yyq1051[4] = x.TimeoutSeconds != 0 - yyq1051[5] = x.PeriodSeconds != 0 - yyq1051[6] = x.SuccessThreshold != 0 - yyq1051[7] = x.FailureThreshold != 0 - var yynn1051 int - if yyr1051 || yy2arr1051 { + yysep1070 := !z.EncBinary() + yy2arr1070 := z.EncBasicHandle().StructToArray + var yyq1070 [8]bool + _, _, _ = yysep1070, yyq1070, yy2arr1070 + const yyr1070 bool = false + yyq1070[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1070[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1070[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1070[3] = x.InitialDelaySeconds != 0 + yyq1070[4] = x.TimeoutSeconds != 0 + yyq1070[5] = x.PeriodSeconds != 0 + yyq1070[6] = x.SuccessThreshold != 0 + yyq1070[7] = x.FailureThreshold != 0 + var yynn1070 int + if yyr1070 || yy2arr1070 { r.EncodeArrayStart(8) } else { - yynn1051 = 0 - for _, b := range yyq1051 { + yynn1070 = 0 + for _, b := range yyq1070 { if b { - yynn1051++ + yynn1070++ } } - r.EncodeMapStart(yynn1051) - yynn1051 = 0 + r.EncodeMapStart(yynn1070) + yynn1070 = 0 } - var yyn1052 bool + var yyn1071 bool if x.Handler.Exec == nil { - yyn1052 = true - goto LABEL1052 + yyn1071 = true + goto LABEL1071 } - LABEL1052: - if yyr1051 || yy2arr1051 { - if yyn1052 { + LABEL1071: + if yyr1070 || yy2arr1070 { + if yyn1071 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[0] { + if yyq1070[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -14737,11 +15003,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1051[0] { + if yyq1070[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1052 { + if yyn1071 { r.EncodeNil() } else { if x.Exec == nil { @@ -14752,18 +15018,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1053 bool + var yyn1072 bool if x.Handler.HTTPGet == nil { - yyn1053 = true - goto LABEL1053 + yyn1072 = true + goto LABEL1072 } - LABEL1053: - if yyr1051 || yy2arr1051 { - if yyn1053 { + LABEL1072: + if yyr1070 || yy2arr1070 { + if yyn1072 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[1] { + if yyq1070[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -14774,11 +15040,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1051[1] { + if yyq1070[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1053 { + if yyn1072 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -14789,18 +15055,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1054 bool + var yyn1073 bool if x.Handler.TCPSocket == nil { - yyn1054 = true - goto LABEL1054 + yyn1073 = true + goto LABEL1073 } - LABEL1054: - if yyr1051 || yy2arr1051 { - if yyn1054 { + LABEL1073: + if yyr1070 || yy2arr1070 { + if yyn1073 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[2] { + if yyq1070[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -14811,11 +15077,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1051[2] { + if yyq1070[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1054 { + if yyn1073 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -14826,11 +15092,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[3] { - yym1056 := z.EncBinary() - _ = yym1056 + if yyq1070[3] { + yym1075 := z.EncBinary() + _ = yym1075 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -14839,23 +15105,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1051[3] { + if yyq1070[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1057 := z.EncBinary() - _ = yym1057 + yym1076 := z.EncBinary() + _ = yym1076 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[4] { - yym1059 := z.EncBinary() - _ = yym1059 + if yyq1070[4] { + yym1078 := z.EncBinary() + _ = yym1078 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -14864,23 +15130,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1051[4] { + if yyq1070[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1060 := z.EncBinary() - _ = yym1060 + yym1079 := z.EncBinary() + _ = yym1079 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[5] { - yym1062 := z.EncBinary() - _ = yym1062 + if yyq1070[5] { + yym1081 := z.EncBinary() + _ = yym1081 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -14889,23 +15155,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1051[5] { + if yyq1070[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1063 := z.EncBinary() - _ = yym1063 + yym1082 := z.EncBinary() + _ = yym1082 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[6] { - yym1065 := z.EncBinary() - _ = yym1065 + if yyq1070[6] { + yym1084 := z.EncBinary() + _ = yym1084 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -14914,23 +15180,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1051[6] { + if yyq1070[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1066 := z.EncBinary() - _ = yym1066 + yym1085 := z.EncBinary() + _ = yym1085 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1051[7] { - yym1068 := z.EncBinary() - _ = yym1068 + if yyq1070[7] { + yym1087 := z.EncBinary() + _ = yym1087 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -14939,19 +15205,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1051[7] { + if yyq1070[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1069 := z.EncBinary() - _ = yym1069 + yym1088 := z.EncBinary() + _ = yym1088 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1051 || yy2arr1051 { + if yyr1070 || yy2arr1070 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14964,25 +15230,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1070 := z.DecBinary() - _ = yym1070 + yym1089 := z.DecBinary() + _ = yym1089 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1071 := r.ContainerType() - if yyct1071 == codecSelferValueTypeMap1234 { - yyl1071 := r.ReadMapStart() - if yyl1071 == 0 { + yyct1090 := r.ContainerType() + if yyct1090 == codecSelferValueTypeMap1234 { + yyl1090 := r.ReadMapStart() + if yyl1090 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1071, d) + x.codecDecodeSelfFromMap(yyl1090, d) } - } else if yyct1071 == codecSelferValueTypeArray1234 { - yyl1071 := r.ReadArrayStart() - if yyl1071 == 0 { + } else if yyct1090 == codecSelferValueTypeArray1234 { + yyl1090 := r.ReadArrayStart() + if yyl1090 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1071, d) + x.codecDecodeSelfFromArray(yyl1090, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14994,12 +15260,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1072Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1072Slc - var yyhl1072 bool = l >= 0 - for yyj1072 := 0; ; yyj1072++ { - if yyhl1072 { - if yyj1072 >= l { + var yys1091Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1091Slc + var yyhl1091 bool = l >= 0 + for yyj1091 := 0; ; yyj1091++ { + if yyhl1091 { + if yyj1091 >= l { break } } else { @@ -15008,10 +15274,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1072Slc = r.DecodeBytes(yys1072Slc, true, true) - yys1072 := string(yys1072Slc) + yys1091Slc = r.DecodeBytes(yys1091Slc, true, true) + yys1091 := string(yys1091Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1072 { + switch yys1091 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -15085,9 +15351,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys1072) - } // end switch yys1072 - } // end for yyj1072 + z.DecStructFieldNotFound(-1, yys1091) + } // end switch yys1091 + } // end for yyj1091 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15095,19 +15361,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1081 int - var yyb1081 bool - var yyhl1081 bool = l >= 0 + var yyj1100 int + var yyb1100 bool + var yyhl1100 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15125,13 +15391,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15149,13 +15415,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15170,13 +15436,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15186,13 +15452,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15202,13 +15468,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15218,13 +15484,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15234,13 +15500,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15251,17 +15517,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj1081++ - if yyhl1081 { - yyb1081 = yyj1081 > l + yyj1100++ + if yyhl1100 { + yyb1100 = yyj1100 > l } else { - yyb1081 = r.CheckBreak() + yyb1100 = r.CheckBreak() } - if yyb1081 { + if yyb1100 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1081-1, "") + z.DecStructFieldNotFound(yyj1100-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15270,8 +15536,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1090 := z.EncBinary() - _ = yym1090 + yym1109 := z.EncBinary() + _ = yym1109 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15283,8 +15549,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1091 := z.DecBinary() - _ = yym1091 + yym1110 := z.DecBinary() + _ = yym1110 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15296,8 +15562,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1092 := z.EncBinary() - _ = yym1092 + yym1111 := z.EncBinary() + _ = yym1111 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -15309,8 +15575,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1093 := z.DecBinary() - _ = yym1093 + yym1112 := z.DecBinary() + _ = yym1112 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -15325,39 +15591,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1094 := z.EncBinary() - _ = yym1094 + yym1113 := z.EncBinary() + _ = yym1113 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1095 := !z.EncBinary() - yy2arr1095 := z.EncBasicHandle().StructToArray - var yyq1095 [2]bool - _, _, _ = yysep1095, yyq1095, yy2arr1095 - const yyr1095 bool = false - yyq1095[0] = len(x.Add) != 0 - yyq1095[1] = len(x.Drop) != 0 - var yynn1095 int - if yyr1095 || yy2arr1095 { + yysep1114 := !z.EncBinary() + yy2arr1114 := z.EncBasicHandle().StructToArray + var yyq1114 [2]bool + _, _, _ = yysep1114, yyq1114, yy2arr1114 + const yyr1114 bool = false + yyq1114[0] = len(x.Add) != 0 + yyq1114[1] = len(x.Drop) != 0 + var yynn1114 int + if yyr1114 || yy2arr1114 { r.EncodeArrayStart(2) } else { - yynn1095 = 0 - for _, b := range yyq1095 { + yynn1114 = 0 + for _, b := range yyq1114 { if b { - yynn1095++ + yynn1114++ } } - r.EncodeMapStart(yynn1095) - yynn1095 = 0 + r.EncodeMapStart(yynn1114) + yynn1114 = 0 } - if yyr1095 || yy2arr1095 { + if yyr1114 || yy2arr1114 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1095[0] { + if yyq1114[0] { if x.Add == nil { r.EncodeNil() } else { - yym1097 := z.EncBinary() - _ = yym1097 + yym1116 := z.EncBinary() + _ = yym1116 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15367,15 +15633,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1095[0] { + if yyq1114[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1098 := z.EncBinary() - _ = yym1098 + yym1117 := z.EncBinary() + _ = yym1117 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -15383,14 +15649,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1095 || yy2arr1095 { + if yyr1114 || yy2arr1114 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1095[1] { + if yyq1114[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1100 := z.EncBinary() - _ = yym1100 + yym1119 := z.EncBinary() + _ = yym1119 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15400,15 +15666,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1095[1] { + if yyq1114[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1101 := z.EncBinary() - _ = yym1101 + yym1120 := z.EncBinary() + _ = yym1120 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -15416,7 +15682,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1095 || yy2arr1095 { + if yyr1114 || yy2arr1114 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15429,25 +15695,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1102 := z.DecBinary() - _ = yym1102 + yym1121 := z.DecBinary() + _ = yym1121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1103 := r.ContainerType() - if yyct1103 == codecSelferValueTypeMap1234 { - yyl1103 := r.ReadMapStart() - if yyl1103 == 0 { + yyct1122 := r.ContainerType() + if yyct1122 == codecSelferValueTypeMap1234 { + yyl1122 := r.ReadMapStart() + if yyl1122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1103, d) + x.codecDecodeSelfFromMap(yyl1122, d) } - } else if yyct1103 == codecSelferValueTypeArray1234 { - yyl1103 := r.ReadArrayStart() - if yyl1103 == 0 { + } else if yyct1122 == codecSelferValueTypeArray1234 { + yyl1122 := r.ReadArrayStart() + if yyl1122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1103, d) + x.codecDecodeSelfFromArray(yyl1122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15459,12 +15725,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1104Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1104Slc - var yyhl1104 bool = l >= 0 - for yyj1104 := 0; ; yyj1104++ { - if yyhl1104 { - if yyj1104 >= l { + var yys1123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1123Slc + var yyhl1123 bool = l >= 0 + for yyj1123 := 0; ; yyj1123++ { + if yyhl1123 { + if yyj1123 >= l { break } } else { @@ -15473,38 +15739,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1104Slc = r.DecodeBytes(yys1104Slc, true, true) - yys1104 := string(yys1104Slc) + yys1123Slc = r.DecodeBytes(yys1123Slc, true, true) + yys1123 := string(yys1123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1104 { + switch yys1123 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1105 := &x.Add - yym1106 := z.DecBinary() - _ = yym1106 + yyv1124 := &x.Add + yym1125 := z.DecBinary() + _ = yym1125 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1105), d) + h.decSliceCapability((*[]Capability)(yyv1124), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1107 := &x.Drop - yym1108 := z.DecBinary() - _ = yym1108 + yyv1126 := &x.Drop + yym1127 := z.DecBinary() + _ = yym1127 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1107), d) + h.decSliceCapability((*[]Capability)(yyv1126), d) } } default: - z.DecStructFieldNotFound(-1, yys1104) - } // end switch yys1104 - } // end for yyj1104 + z.DecStructFieldNotFound(-1, yys1123) + } // end switch yys1123 + } // end for yyj1123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15512,16 +15778,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1109 int - var yyb1109 bool - var yyhl1109 bool = l >= 0 - yyj1109++ - if yyhl1109 { - yyb1109 = yyj1109 > l + var yyj1128 int + var yyb1128 bool + var yyhl1128 bool = l >= 0 + yyj1128++ + if yyhl1128 { + yyb1128 = yyj1128 > l } else { - yyb1109 = r.CheckBreak() + yyb1128 = r.CheckBreak() } - if yyb1109 { + if yyb1128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15529,21 +15795,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1110 := &x.Add - yym1111 := z.DecBinary() - _ = yym1111 + yyv1129 := &x.Add + yym1130 := z.DecBinary() + _ = yym1130 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1110), d) + h.decSliceCapability((*[]Capability)(yyv1129), d) } } - yyj1109++ - if yyhl1109 { - yyb1109 = yyj1109 > l + yyj1128++ + if yyhl1128 { + yyb1128 = yyj1128 > l } else { - yyb1109 = r.CheckBreak() + yyb1128 = r.CheckBreak() } - if yyb1109 { + if yyb1128 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15551,26 +15817,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1112 := &x.Drop - yym1113 := z.DecBinary() - _ = yym1113 + yyv1131 := &x.Drop + yym1132 := z.DecBinary() + _ = yym1132 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1112), d) + h.decSliceCapability((*[]Capability)(yyv1131), d) } } for { - yyj1109++ - if yyhl1109 { - yyb1109 = yyj1109 > l + yyj1128++ + if yyhl1128 { + yyb1128 = yyj1128 > l } else { - yyb1109 = r.CheckBreak() + yyb1128 = r.CheckBreak() } - if yyb1109 { + if yyb1128 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1109-1, "") + z.DecStructFieldNotFound(yyj1128-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15582,34 +15848,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1114 := z.EncBinary() - _ = yym1114 + yym1133 := z.EncBinary() + _ = yym1133 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1115 := !z.EncBinary() - yy2arr1115 := z.EncBasicHandle().StructToArray - var yyq1115 [2]bool - _, _, _ = yysep1115, yyq1115, yy2arr1115 - const yyr1115 bool = false - yyq1115[0] = len(x.Limits) != 0 - yyq1115[1] = len(x.Requests) != 0 - var yynn1115 int - if yyr1115 || yy2arr1115 { + yysep1134 := !z.EncBinary() + yy2arr1134 := z.EncBasicHandle().StructToArray + var yyq1134 [2]bool + _, _, _ = yysep1134, yyq1134, yy2arr1134 + const yyr1134 bool = false + yyq1134[0] = len(x.Limits) != 0 + yyq1134[1] = len(x.Requests) != 0 + var yynn1134 int + if yyr1134 || yy2arr1134 { r.EncodeArrayStart(2) } else { - yynn1115 = 0 - for _, b := range yyq1115 { + yynn1134 = 0 + for _, b := range yyq1134 { if b { - yynn1115++ + yynn1134++ } } - r.EncodeMapStart(yynn1115) - yynn1115 = 0 + r.EncodeMapStart(yynn1134) + yynn1134 = 0 } - if yyr1115 || yy2arr1115 { + if yyr1134 || yy2arr1134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1115[0] { + if yyq1134[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -15619,7 +15885,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1115[0] { + if yyq1134[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15630,9 +15896,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1115 || yy2arr1115 { + if yyr1134 || yy2arr1134 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1115[1] { + if yyq1134[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -15642,7 +15908,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1115[1] { + if yyq1134[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15653,7 +15919,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1115 || yy2arr1115 { + if yyr1134 || yy2arr1134 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15666,25 +15932,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1118 := z.DecBinary() - _ = yym1118 + yym1137 := z.DecBinary() + _ = yym1137 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1119 := r.ContainerType() - if yyct1119 == codecSelferValueTypeMap1234 { - yyl1119 := r.ReadMapStart() - if yyl1119 == 0 { + yyct1138 := r.ContainerType() + if yyct1138 == codecSelferValueTypeMap1234 { + yyl1138 := r.ReadMapStart() + if yyl1138 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1119, d) + x.codecDecodeSelfFromMap(yyl1138, d) } - } else if yyct1119 == codecSelferValueTypeArray1234 { - yyl1119 := r.ReadArrayStart() - if yyl1119 == 0 { + } else if yyct1138 == codecSelferValueTypeArray1234 { + yyl1138 := r.ReadArrayStart() + if yyl1138 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1119, d) + x.codecDecodeSelfFromArray(yyl1138, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15696,12 +15962,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1120Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1120Slc - var yyhl1120 bool = l >= 0 - for yyj1120 := 0; ; yyj1120++ { - if yyhl1120 { - if yyj1120 >= l { + var yys1139Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1139Slc + var yyhl1139 bool = l >= 0 + for yyj1139 := 0; ; yyj1139++ { + if yyhl1139 { + if yyj1139 >= l { break } } else { @@ -15710,28 +15976,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1120Slc = r.DecodeBytes(yys1120Slc, true, true) - yys1120 := string(yys1120Slc) + yys1139Slc = r.DecodeBytes(yys1139Slc, true, true) + yys1139 := string(yys1139Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1120 { + switch yys1139 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1121 := &x.Limits - yyv1121.CodecDecodeSelf(d) + yyv1140 := &x.Limits + yyv1140.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1122 := &x.Requests - yyv1122.CodecDecodeSelf(d) + yyv1141 := &x.Requests + yyv1141.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1120) - } // end switch yys1120 - } // end for yyj1120 + z.DecStructFieldNotFound(-1, yys1139) + } // end switch yys1139 + } // end for yyj1139 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15739,16 +16005,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1123 int - var yyb1123 bool - var yyhl1123 bool = l >= 0 - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + var yyj1142 int + var yyb1142 bool + var yyhl1142 bool = l >= 0 + yyj1142++ + if yyhl1142 { + yyb1142 = yyj1142 > l } else { - yyb1123 = r.CheckBreak() + yyb1142 = r.CheckBreak() } - if yyb1123 { + if yyb1142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15756,16 +16022,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1124 := &x.Limits - yyv1124.CodecDecodeSelf(d) + yyv1143 := &x.Limits + yyv1143.CodecDecodeSelf(d) } - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + yyj1142++ + if yyhl1142 { + yyb1142 = yyj1142 > l } else { - yyb1123 = r.CheckBreak() + yyb1142 = r.CheckBreak() } - if yyb1123 { + if yyb1142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15773,21 +16039,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1125 := &x.Requests - yyv1125.CodecDecodeSelf(d) + yyv1144 := &x.Requests + yyv1144.CodecDecodeSelf(d) } for { - yyj1123++ - if yyhl1123 { - yyb1123 = yyj1123 > l + yyj1142++ + if yyhl1142 { + yyb1142 = yyj1142 > l } else { - yyb1123 = r.CheckBreak() + yyb1142 = r.CheckBreak() } - if yyb1123 { + if yyb1142 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1123-1, "") + z.DecStructFieldNotFound(yyj1142-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15799,48 +16065,48 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1126 := z.EncBinary() - _ = yym1126 + yym1145 := z.EncBinary() + _ = yym1145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1127 := !z.EncBinary() - yy2arr1127 := z.EncBasicHandle().StructToArray - var yyq1127 [18]bool - _, _, _ = yysep1127, yyq1127, yy2arr1127 - const yyr1127 bool = false - yyq1127[2] = len(x.Command) != 0 - yyq1127[3] = len(x.Args) != 0 - yyq1127[4] = x.WorkingDir != "" - yyq1127[5] = len(x.Ports) != 0 - yyq1127[6] = len(x.Env) != 0 - yyq1127[7] = true - yyq1127[8] = len(x.VolumeMounts) != 0 - yyq1127[9] = x.LivenessProbe != nil - yyq1127[10] = x.ReadinessProbe != nil - yyq1127[11] = x.Lifecycle != nil - yyq1127[12] = x.TerminationMessagePath != "" - yyq1127[14] = x.SecurityContext != nil - yyq1127[15] = x.Stdin != false - yyq1127[16] = x.StdinOnce != false - yyq1127[17] = x.TTY != false - var yynn1127 int - if yyr1127 || yy2arr1127 { + yysep1146 := !z.EncBinary() + yy2arr1146 := z.EncBasicHandle().StructToArray + var yyq1146 [18]bool + _, _, _ = yysep1146, yyq1146, yy2arr1146 + const yyr1146 bool = false + yyq1146[2] = len(x.Command) != 0 + yyq1146[3] = len(x.Args) != 0 + yyq1146[4] = x.WorkingDir != "" + yyq1146[5] = len(x.Ports) != 0 + yyq1146[6] = len(x.Env) != 0 + yyq1146[7] = true + yyq1146[8] = len(x.VolumeMounts) != 0 + yyq1146[9] = x.LivenessProbe != nil + yyq1146[10] = x.ReadinessProbe != nil + yyq1146[11] = x.Lifecycle != nil + yyq1146[12] = x.TerminationMessagePath != "" + yyq1146[14] = x.SecurityContext != nil + yyq1146[15] = x.Stdin != false + yyq1146[16] = x.StdinOnce != false + yyq1146[17] = x.TTY != false + var yynn1146 int + if yyr1146 || yy2arr1146 { r.EncodeArrayStart(18) } else { - yynn1127 = 3 - for _, b := range yyq1127 { + yynn1146 = 3 + for _, b := range yyq1146 { if b { - yynn1127++ + yynn1146++ } } - r.EncodeMapStart(yynn1127) - yynn1127 = 0 + r.EncodeMapStart(yynn1146) + yynn1146 = 0 } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1129 := z.EncBinary() - _ = yym1129 + yym1148 := z.EncBinary() + _ = yym1148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15849,17 +16115,17 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1130 := z.EncBinary() - _ = yym1130 + yym1149 := z.EncBinary() + _ = yym1149 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1132 := z.EncBinary() - _ = yym1132 + yym1151 := z.EncBinary() + _ = yym1151 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -15868,21 +16134,21 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1133 := z.EncBinary() - _ = yym1133 + yym1152 := z.EncBinary() + _ = yym1152 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[2] { + if yyq1146[2] { if x.Command == nil { r.EncodeNil() } else { - yym1135 := z.EncBinary() - _ = yym1135 + yym1154 := z.EncBinary() + _ = yym1154 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15892,15 +16158,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[2] { + if yyq1146[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1136 := z.EncBinary() - _ = yym1136 + yym1155 := z.EncBinary() + _ = yym1155 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15908,14 +16174,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[3] { + if yyq1146[3] { if x.Args == nil { r.EncodeNil() } else { - yym1138 := z.EncBinary() - _ = yym1138 + yym1157 := z.EncBinary() + _ = yym1157 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -15925,15 +16191,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[3] { + if yyq1146[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1139 := z.EncBinary() - _ = yym1139 + yym1158 := z.EncBinary() + _ = yym1158 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -15941,11 +16207,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[4] { - yym1141 := z.EncBinary() - _ = yym1141 + if yyq1146[4] { + yym1160 := z.EncBinary() + _ = yym1160 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -15954,26 +16220,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1127[4] { + if yyq1146[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1142 := z.EncBinary() - _ = yym1142 + yym1161 := z.EncBinary() + _ = yym1161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[5] { + if yyq1146[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1144 := z.EncBinary() - _ = yym1144 + yym1163 := z.EncBinary() + _ = yym1163 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -15983,15 +16249,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[5] { + if yyq1146[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1145 := z.EncBinary() - _ = yym1145 + yym1164 := z.EncBinary() + _ = yym1164 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -15999,14 +16265,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[6] { + if yyq1146[6] { if x.Env == nil { r.EncodeNil() } else { - yym1147 := z.EncBinary() - _ = yym1147 + yym1166 := z.EncBinary() + _ = yym1166 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16016,15 +16282,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[6] { + if yyq1146[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1148 := z.EncBinary() - _ = yym1148 + yym1167 := z.EncBinary() + _ = yym1167 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -16032,31 +16298,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[7] { - yy1150 := &x.Resources - yy1150.CodecEncodeSelf(e) + if yyq1146[7] { + yy1169 := &x.Resources + yy1169.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1127[7] { + if yyq1146[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1151 := &x.Resources - yy1151.CodecEncodeSelf(e) + yy1170 := &x.Resources + yy1170.CodecEncodeSelf(e) } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[8] { + if yyq1146[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1153 := z.EncBinary() - _ = yym1153 + yym1172 := z.EncBinary() + _ = yym1172 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16066,15 +16332,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[8] { + if yyq1146[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1154 := z.EncBinary() - _ = yym1154 + yym1173 := z.EncBinary() + _ = yym1173 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -16082,9 +16348,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[9] { + if yyq1146[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -16094,7 +16360,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[9] { + if yyq1146[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16105,9 +16371,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[10] { + if yyq1146[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -16117,7 +16383,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[10] { + if yyq1146[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16128,9 +16394,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[11] { + if yyq1146[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -16140,7 +16406,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[11] { + if yyq1146[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16151,11 +16417,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[12] { - yym1159 := z.EncBinary() - _ = yym1159 + if yyq1146[12] { + yym1178 := z.EncBinary() + _ = yym1178 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -16164,19 +16430,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1127[12] { + if yyq1146[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1160 := z.EncBinary() - _ = yym1160 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.ImagePullPolicy.CodecEncodeSelf(e) } else { @@ -16185,9 +16451,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[14] { + if yyq1146[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -16197,7 +16463,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1127[14] { + if yyq1146[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16208,11 +16474,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[15] { - yym1164 := z.EncBinary() - _ = yym1164 + if yyq1146[15] { + yym1183 := z.EncBinary() + _ = yym1183 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -16221,23 +16487,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1127[15] { + if yyq1146[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1165 := z.EncBinary() - _ = yym1165 + yym1184 := z.EncBinary() + _ = yym1184 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[16] { - yym1167 := z.EncBinary() - _ = yym1167 + if yyq1146[16] { + yym1186 := z.EncBinary() + _ = yym1186 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -16246,23 +16512,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1127[16] { + if yyq1146[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1168 := z.EncBinary() - _ = yym1168 + yym1187 := z.EncBinary() + _ = yym1187 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1127[17] { - yym1170 := z.EncBinary() - _ = yym1170 + if yyq1146[17] { + yym1189 := z.EncBinary() + _ = yym1189 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -16271,19 +16537,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1127[17] { + if yyq1146[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1171 := z.EncBinary() - _ = yym1171 + yym1190 := z.EncBinary() + _ = yym1190 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1127 || yy2arr1127 { + if yyr1146 || yy2arr1146 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16296,25 +16562,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1172 := z.DecBinary() - _ = yym1172 + yym1191 := z.DecBinary() + _ = yym1191 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1173 := r.ContainerType() - if yyct1173 == codecSelferValueTypeMap1234 { - yyl1173 := r.ReadMapStart() - if yyl1173 == 0 { + yyct1192 := r.ContainerType() + if yyct1192 == codecSelferValueTypeMap1234 { + yyl1192 := r.ReadMapStart() + if yyl1192 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1173, d) + x.codecDecodeSelfFromMap(yyl1192, d) } - } else if yyct1173 == codecSelferValueTypeArray1234 { - yyl1173 := r.ReadArrayStart() - if yyl1173 == 0 { + } else if yyct1192 == codecSelferValueTypeArray1234 { + yyl1192 := r.ReadArrayStart() + if yyl1192 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1173, d) + x.codecDecodeSelfFromArray(yyl1192, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16326,12 +16592,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1174Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1174Slc - var yyhl1174 bool = l >= 0 - for yyj1174 := 0; ; yyj1174++ { - if yyhl1174 { - if yyj1174 >= l { + var yys1193Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1193Slc + var yyhl1193 bool = l >= 0 + for yyj1193 := 0; ; yyj1193++ { + if yyhl1193 { + if yyj1193 >= l { break } } else { @@ -16340,10 +16606,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1174Slc = r.DecodeBytes(yys1174Slc, true, true) - yys1174 := string(yys1174Slc) + yys1193Slc = r.DecodeBytes(yys1193Slc, true, true) + yys1193 := string(yys1193Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1174 { + switch yys1193 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -16360,24 +16626,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1177 := &x.Command - yym1178 := z.DecBinary() - _ = yym1178 + yyv1196 := &x.Command + yym1197 := z.DecBinary() + _ = yym1197 if false { } else { - z.F.DecSliceStringX(yyv1177, false, d) + z.F.DecSliceStringX(yyv1196, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1179 := &x.Args - yym1180 := z.DecBinary() - _ = yym1180 + yyv1198 := &x.Args + yym1199 := z.DecBinary() + _ = yym1199 if false { } else { - z.F.DecSliceStringX(yyv1179, false, d) + z.F.DecSliceStringX(yyv1198, false, d) } } case "workingDir": @@ -16390,43 +16656,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1182 := &x.Ports - yym1183 := z.DecBinary() - _ = yym1183 + yyv1201 := &x.Ports + yym1202 := z.DecBinary() + _ = yym1202 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1182), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1201), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1184 := &x.Env - yym1185 := z.DecBinary() - _ = yym1185 + yyv1203 := &x.Env + yym1204 := z.DecBinary() + _ = yym1204 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1184), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1203), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1186 := &x.Resources - yyv1186.CodecDecodeSelf(d) + yyv1205 := &x.Resources + yyv1205.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1187 := &x.VolumeMounts - yym1188 := z.DecBinary() - _ = yym1188 + yyv1206 := &x.VolumeMounts + yym1207 := z.DecBinary() + _ = yym1207 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1187), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1206), d) } } case "livenessProbe": @@ -16504,9 +16770,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1174) - } // end switch yys1174 - } // end for yyj1174 + z.DecStructFieldNotFound(-1, yys1193) + } // end switch yys1193 + } // end for yyj1193 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16514,16 +16780,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1198 int - var yyb1198 bool - var yyhl1198 bool = l >= 0 - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + var yyj1217 int + var yyb1217 bool + var yyhl1217 bool = l >= 0 + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16533,13 +16799,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16549,13 +16815,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16563,21 +16829,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1201 := &x.Command - yym1202 := z.DecBinary() - _ = yym1202 + yyv1220 := &x.Command + yym1221 := z.DecBinary() + _ = yym1221 if false { } else { - z.F.DecSliceStringX(yyv1201, false, d) + z.F.DecSliceStringX(yyv1220, false, d) } } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16585,21 +16851,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1203 := &x.Args - yym1204 := z.DecBinary() - _ = yym1204 + yyv1222 := &x.Args + yym1223 := z.DecBinary() + _ = yym1223 if false { } else { - z.F.DecSliceStringX(yyv1203, false, d) + z.F.DecSliceStringX(yyv1222, false, d) } } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16609,13 +16875,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16623,21 +16889,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1206 := &x.Ports - yym1207 := z.DecBinary() - _ = yym1207 + yyv1225 := &x.Ports + yym1226 := z.DecBinary() + _ = yym1226 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1206), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1225), d) } } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16645,21 +16911,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1208 := &x.Env - yym1209 := z.DecBinary() - _ = yym1209 + yyv1227 := &x.Env + yym1228 := z.DecBinary() + _ = yym1228 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1208), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1227), d) } } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16667,16 +16933,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1210 := &x.Resources - yyv1210.CodecDecodeSelf(d) + yyv1229 := &x.Resources + yyv1229.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16684,21 +16950,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1211 := &x.VolumeMounts - yym1212 := z.DecBinary() - _ = yym1212 + yyv1230 := &x.VolumeMounts + yym1231 := z.DecBinary() + _ = yym1231 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1211), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1230), d) } } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16713,13 +16979,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16734,13 +17000,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16755,13 +17021,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16771,13 +17037,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16787,13 +17053,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16808,13 +17074,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16824,13 +17090,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16840,13 +17106,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16857,17 +17123,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1217++ + if yyhl1217 { + yyb1217 = yyj1217 > l } else { - yyb1198 = r.CheckBreak() + yyb1217 = r.CheckBreak() } - if yyb1198 { + if yyb1217 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1198-1, "") + z.DecStructFieldNotFound(yyj1217-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16879,35 +17145,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1222 := z.EncBinary() - _ = yym1222 + yym1241 := z.EncBinary() + _ = yym1241 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1223 := !z.EncBinary() - yy2arr1223 := z.EncBasicHandle().StructToArray - var yyq1223 [3]bool - _, _, _ = yysep1223, yyq1223, yy2arr1223 - const yyr1223 bool = false - yyq1223[0] = x.Exec != nil - yyq1223[1] = x.HTTPGet != nil - yyq1223[2] = x.TCPSocket != nil - var yynn1223 int - if yyr1223 || yy2arr1223 { + yysep1242 := !z.EncBinary() + yy2arr1242 := z.EncBasicHandle().StructToArray + var yyq1242 [3]bool + _, _, _ = yysep1242, yyq1242, yy2arr1242 + const yyr1242 bool = false + yyq1242[0] = x.Exec != nil + yyq1242[1] = x.HTTPGet != nil + yyq1242[2] = x.TCPSocket != nil + var yynn1242 int + if yyr1242 || yy2arr1242 { r.EncodeArrayStart(3) } else { - yynn1223 = 0 - for _, b := range yyq1223 { + yynn1242 = 0 + for _, b := range yyq1242 { if b { - yynn1223++ + yynn1242++ } } - r.EncodeMapStart(yynn1223) - yynn1223 = 0 + r.EncodeMapStart(yynn1242) + yynn1242 = 0 } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1223[0] { + if yyq1242[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -16917,7 +17183,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1223[0] { + if yyq1242[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16928,9 +17194,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1223[1] { + if yyq1242[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -16940,7 +17206,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1223[1] { + if yyq1242[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16951,9 +17217,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1223[2] { + if yyq1242[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -16963,7 +17229,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1223[2] { + if yyq1242[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16974,7 +17240,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16987,25 +17253,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1227 := z.DecBinary() - _ = yym1227 + yym1246 := z.DecBinary() + _ = yym1246 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1228 := r.ContainerType() - if yyct1228 == codecSelferValueTypeMap1234 { - yyl1228 := r.ReadMapStart() - if yyl1228 == 0 { + yyct1247 := r.ContainerType() + if yyct1247 == codecSelferValueTypeMap1234 { + yyl1247 := r.ReadMapStart() + if yyl1247 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1228, d) + x.codecDecodeSelfFromMap(yyl1247, d) } - } else if yyct1228 == codecSelferValueTypeArray1234 { - yyl1228 := r.ReadArrayStart() - if yyl1228 == 0 { + } else if yyct1247 == codecSelferValueTypeArray1234 { + yyl1247 := r.ReadArrayStart() + if yyl1247 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1228, d) + x.codecDecodeSelfFromArray(yyl1247, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17017,12 +17283,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1229Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1229Slc - var yyhl1229 bool = l >= 0 - for yyj1229 := 0; ; yyj1229++ { - if yyhl1229 { - if yyj1229 >= l { + var yys1248Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1248Slc + var yyhl1248 bool = l >= 0 + for yyj1248 := 0; ; yyj1248++ { + if yyhl1248 { + if yyj1248 >= l { break } } else { @@ -17031,10 +17297,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1229Slc = r.DecodeBytes(yys1229Slc, true, true) - yys1229 := string(yys1229Slc) + yys1248Slc = r.DecodeBytes(yys1248Slc, true, true) + yys1248 := string(yys1248Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1229 { + switch yys1248 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -17069,9 +17335,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1229) - } // end switch yys1229 - } // end for yyj1229 + z.DecStructFieldNotFound(-1, yys1248) + } // end switch yys1248 + } // end for yyj1248 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17079,16 +17345,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1233 int - var yyb1233 bool - var yyhl1233 bool = l >= 0 - yyj1233++ - if yyhl1233 { - yyb1233 = yyj1233 > l + var yyj1252 int + var yyb1252 bool + var yyhl1252 bool = l >= 0 + yyj1252++ + if yyhl1252 { + yyb1252 = yyj1252 > l } else { - yyb1233 = r.CheckBreak() + yyb1252 = r.CheckBreak() } - if yyb1233 { + if yyb1252 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17103,13 +17369,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1233++ - if yyhl1233 { - yyb1233 = yyj1233 > l + yyj1252++ + if yyhl1252 { + yyb1252 = yyj1252 > l } else { - yyb1233 = r.CheckBreak() + yyb1252 = r.CheckBreak() } - if yyb1233 { + if yyb1252 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17124,13 +17390,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1233++ - if yyhl1233 { - yyb1233 = yyj1233 > l + yyj1252++ + if yyhl1252 { + yyb1252 = yyj1252 > l } else { - yyb1233 = r.CheckBreak() + yyb1252 = r.CheckBreak() } - if yyb1233 { + if yyb1252 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17146,17 +17412,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1233++ - if yyhl1233 { - yyb1233 = yyj1233 > l + yyj1252++ + if yyhl1252 { + yyb1252 = yyj1252 > l } else { - yyb1233 = r.CheckBreak() + yyb1252 = r.CheckBreak() } - if yyb1233 { + if yyb1252 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1233-1, "") + z.DecStructFieldNotFound(yyj1252-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17168,34 +17434,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1237 := z.EncBinary() - _ = yym1237 + yym1256 := z.EncBinary() + _ = yym1256 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1238 := !z.EncBinary() - yy2arr1238 := z.EncBasicHandle().StructToArray - var yyq1238 [2]bool - _, _, _ = yysep1238, yyq1238, yy2arr1238 - const yyr1238 bool = false - yyq1238[0] = x.PostStart != nil - yyq1238[1] = x.PreStop != nil - var yynn1238 int - if yyr1238 || yy2arr1238 { + yysep1257 := !z.EncBinary() + yy2arr1257 := z.EncBasicHandle().StructToArray + var yyq1257 [2]bool + _, _, _ = yysep1257, yyq1257, yy2arr1257 + const yyr1257 bool = false + yyq1257[0] = x.PostStart != nil + yyq1257[1] = x.PreStop != nil + var yynn1257 int + if yyr1257 || yy2arr1257 { r.EncodeArrayStart(2) } else { - yynn1238 = 0 - for _, b := range yyq1238 { + yynn1257 = 0 + for _, b := range yyq1257 { if b { - yynn1238++ + yynn1257++ } } - r.EncodeMapStart(yynn1238) - yynn1238 = 0 + r.EncodeMapStart(yynn1257) + yynn1257 = 0 } - if yyr1238 || yy2arr1238 { + if yyr1257 || yy2arr1257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1238[0] { + if yyq1257[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -17205,7 +17471,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1238[0] { + if yyq1257[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17216,9 +17482,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1238 || yy2arr1238 { + if yyr1257 || yy2arr1257 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1238[1] { + if yyq1257[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -17228,7 +17494,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1238[1] { + if yyq1257[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17239,7 +17505,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1238 || yy2arr1238 { + if yyr1257 || yy2arr1257 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17252,25 +17518,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1241 := z.DecBinary() - _ = yym1241 + yym1260 := z.DecBinary() + _ = yym1260 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1242 := r.ContainerType() - if yyct1242 == codecSelferValueTypeMap1234 { - yyl1242 := r.ReadMapStart() - if yyl1242 == 0 { + yyct1261 := r.ContainerType() + if yyct1261 == codecSelferValueTypeMap1234 { + yyl1261 := r.ReadMapStart() + if yyl1261 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1242, d) + x.codecDecodeSelfFromMap(yyl1261, d) } - } else if yyct1242 == codecSelferValueTypeArray1234 { - yyl1242 := r.ReadArrayStart() - if yyl1242 == 0 { + } else if yyct1261 == codecSelferValueTypeArray1234 { + yyl1261 := r.ReadArrayStart() + if yyl1261 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1242, d) + x.codecDecodeSelfFromArray(yyl1261, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17282,12 +17548,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1243Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1243Slc - var yyhl1243 bool = l >= 0 - for yyj1243 := 0; ; yyj1243++ { - if yyhl1243 { - if yyj1243 >= l { + var yys1262Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1262Slc + var yyhl1262 bool = l >= 0 + for yyj1262 := 0; ; yyj1262++ { + if yyhl1262 { + if yyj1262 >= l { break } } else { @@ -17296,10 +17562,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1243Slc = r.DecodeBytes(yys1243Slc, true, true) - yys1243 := string(yys1243Slc) + yys1262Slc = r.DecodeBytes(yys1262Slc, true, true) + yys1262 := string(yys1262Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1243 { + switch yys1262 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -17323,9 +17589,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1243) - } // end switch yys1243 - } // end for yyj1243 + z.DecStructFieldNotFound(-1, yys1262) + } // end switch yys1262 + } // end for yyj1262 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17333,16 +17599,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1246 int - var yyb1246 bool - var yyhl1246 bool = l >= 0 - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + var yyj1265 int + var yyb1265 bool + var yyhl1265 bool = l >= 0 + yyj1265++ + if yyhl1265 { + yyb1265 = yyj1265 > l } else { - yyb1246 = r.CheckBreak() + yyb1265 = r.CheckBreak() } - if yyb1246 { + if yyb1265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17357,13 +17623,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + yyj1265++ + if yyhl1265 { + yyb1265 = yyj1265 > l } else { - yyb1246 = r.CheckBreak() + yyb1265 = r.CheckBreak() } - if yyb1246 { + if yyb1265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17379,17 +17645,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1246++ - if yyhl1246 { - yyb1246 = yyj1246 > l + yyj1265++ + if yyhl1265 { + yyb1265 = yyj1265 > l } else { - yyb1246 = r.CheckBreak() + yyb1265 = r.CheckBreak() } - if yyb1246 { + if yyb1265 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1246-1, "") + z.DecStructFieldNotFound(yyj1265-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17398,8 +17664,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1249 := z.EncBinary() - _ = yym1249 + yym1268 := z.EncBinary() + _ = yym1268 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -17411,8 +17677,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1250 := z.DecBinary() - _ = yym1250 + yym1269 := z.DecBinary() + _ = yym1269 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17427,36 +17693,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1251 := z.EncBinary() - _ = yym1251 + yym1270 := z.EncBinary() + _ = yym1270 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1252 := !z.EncBinary() - yy2arr1252 := z.EncBasicHandle().StructToArray - var yyq1252 [2]bool - _, _, _ = yysep1252, yyq1252, yy2arr1252 - const yyr1252 bool = false - yyq1252[0] = x.Reason != "" - yyq1252[1] = x.Message != "" - var yynn1252 int - if yyr1252 || yy2arr1252 { + yysep1271 := !z.EncBinary() + yy2arr1271 := z.EncBasicHandle().StructToArray + var yyq1271 [2]bool + _, _, _ = yysep1271, yyq1271, yy2arr1271 + const yyr1271 bool = false + yyq1271[0] = x.Reason != "" + yyq1271[1] = x.Message != "" + var yynn1271 int + if yyr1271 || yy2arr1271 { r.EncodeArrayStart(2) } else { - yynn1252 = 0 - for _, b := range yyq1252 { + yynn1271 = 0 + for _, b := range yyq1271 { if b { - yynn1252++ + yynn1271++ } } - r.EncodeMapStart(yynn1252) - yynn1252 = 0 + r.EncodeMapStart(yynn1271) + yynn1271 = 0 } - if yyr1252 || yy2arr1252 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1252[0] { - yym1254 := z.EncBinary() - _ = yym1254 + if yyq1271[0] { + yym1273 := z.EncBinary() + _ = yym1273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17465,23 +17731,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1252[0] { + if yyq1271[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1255 := z.EncBinary() - _ = yym1255 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1252 || yy2arr1252 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1252[1] { - yym1257 := z.EncBinary() - _ = yym1257 + if yyq1271[1] { + yym1276 := z.EncBinary() + _ = yym1276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17490,19 +17756,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1252[1] { + if yyq1271[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1258 := z.EncBinary() - _ = yym1258 + yym1277 := z.EncBinary() + _ = yym1277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1252 || yy2arr1252 { + if yyr1271 || yy2arr1271 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17515,25 +17781,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1259 := z.DecBinary() - _ = yym1259 + yym1278 := z.DecBinary() + _ = yym1278 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1260 := r.ContainerType() - if yyct1260 == codecSelferValueTypeMap1234 { - yyl1260 := r.ReadMapStart() - if yyl1260 == 0 { + yyct1279 := r.ContainerType() + if yyct1279 == codecSelferValueTypeMap1234 { + yyl1279 := r.ReadMapStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1260, d) + x.codecDecodeSelfFromMap(yyl1279, d) } - } else if yyct1260 == codecSelferValueTypeArray1234 { - yyl1260 := r.ReadArrayStart() - if yyl1260 == 0 { + } else if yyct1279 == codecSelferValueTypeArray1234 { + yyl1279 := r.ReadArrayStart() + if yyl1279 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1260, d) + x.codecDecodeSelfFromArray(yyl1279, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17545,12 +17811,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1261Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1261Slc - var yyhl1261 bool = l >= 0 - for yyj1261 := 0; ; yyj1261++ { - if yyhl1261 { - if yyj1261 >= l { + var yys1280Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1280Slc + var yyhl1280 bool = l >= 0 + for yyj1280 := 0; ; yyj1280++ { + if yyhl1280 { + if yyj1280 >= l { break } } else { @@ -17559,10 +17825,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1261Slc = r.DecodeBytes(yys1261Slc, true, true) - yys1261 := string(yys1261Slc) + yys1280Slc = r.DecodeBytes(yys1280Slc, true, true) + yys1280 := string(yys1280Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1261 { + switch yys1280 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -17576,9 +17842,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1261) - } // end switch yys1261 - } // end for yyj1261 + z.DecStructFieldNotFound(-1, yys1280) + } // end switch yys1280 + } // end for yyj1280 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17586,16 +17852,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1264 int - var yyb1264 bool - var yyhl1264 bool = l >= 0 - yyj1264++ - if yyhl1264 { - yyb1264 = yyj1264 > l + var yyj1283 int + var yyb1283 bool + var yyhl1283 bool = l >= 0 + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1264 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1264 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17605,13 +17871,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1264++ - if yyhl1264 { - yyb1264 = yyj1264 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1264 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1264 { + if yyb1283 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17622,17 +17888,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1264++ - if yyhl1264 { - yyb1264 = yyj1264 > l + yyj1283++ + if yyhl1283 { + yyb1283 = yyj1283 > l } else { - yyb1264 = r.CheckBreak() + yyb1283 = r.CheckBreak() } - if yyb1264 { + if yyb1283 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1264-1, "") + z.DecStructFieldNotFound(yyj1283-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17644,68 +17910,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1267 := z.EncBinary() - _ = yym1267 + yym1286 := z.EncBinary() + _ = yym1286 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1268 := !z.EncBinary() - yy2arr1268 := z.EncBasicHandle().StructToArray - var yyq1268 [1]bool - _, _, _ = yysep1268, yyq1268, yy2arr1268 - const yyr1268 bool = false - yyq1268[0] = true - var yynn1268 int - if yyr1268 || yy2arr1268 { + yysep1287 := !z.EncBinary() + yy2arr1287 := z.EncBasicHandle().StructToArray + var yyq1287 [1]bool + _, _, _ = yysep1287, yyq1287, yy2arr1287 + const yyr1287 bool = false + yyq1287[0] = true + var yynn1287 int + if yyr1287 || yy2arr1287 { r.EncodeArrayStart(1) } else { - yynn1268 = 0 - for _, b := range yyq1268 { + yynn1287 = 0 + for _, b := range yyq1287 { if b { - yynn1268++ + yynn1287++ } } - r.EncodeMapStart(yynn1268) - yynn1268 = 0 + r.EncodeMapStart(yynn1287) + yynn1287 = 0 } - if yyr1268 || yy2arr1268 { + if yyr1287 || yy2arr1287 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1268[0] { - yy1270 := &x.StartedAt - yym1271 := z.EncBinary() - _ = yym1271 + if yyq1287[0] { + yy1289 := &x.StartedAt + yym1290 := z.EncBinary() + _ = yym1290 if false { - } else if z.HasExtensions() && z.EncExt(yy1270) { - } else if yym1271 { - z.EncBinaryMarshal(yy1270) - } else if !yym1271 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1270) + } else if z.HasExtensions() && z.EncExt(yy1289) { + } else if yym1290 { + z.EncBinaryMarshal(yy1289) + } else if !yym1290 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1289) } else { - z.EncFallback(yy1270) + z.EncFallback(yy1289) } } else { r.EncodeNil() } } else { - if yyq1268[0] { + if yyq1287[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1272 := &x.StartedAt - yym1273 := z.EncBinary() - _ = yym1273 + yy1291 := &x.StartedAt + yym1292 := z.EncBinary() + _ = yym1292 if false { - } else if z.HasExtensions() && z.EncExt(yy1272) { - } else if yym1273 { - z.EncBinaryMarshal(yy1272) - } else if !yym1273 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1272) + } else if z.HasExtensions() && z.EncExt(yy1291) { + } else if yym1292 { + z.EncBinaryMarshal(yy1291) + } else if !yym1292 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1291) } else { - z.EncFallback(yy1272) + z.EncFallback(yy1291) } } } - if yyr1268 || yy2arr1268 { + if yyr1287 || yy2arr1287 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17718,25 +17984,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1274 := z.DecBinary() - _ = yym1274 + yym1293 := z.DecBinary() + _ = yym1293 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1275 := r.ContainerType() - if yyct1275 == codecSelferValueTypeMap1234 { - yyl1275 := r.ReadMapStart() - if yyl1275 == 0 { + yyct1294 := r.ContainerType() + if yyct1294 == codecSelferValueTypeMap1234 { + yyl1294 := r.ReadMapStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1275, d) + x.codecDecodeSelfFromMap(yyl1294, d) } - } else if yyct1275 == codecSelferValueTypeArray1234 { - yyl1275 := r.ReadArrayStart() - if yyl1275 == 0 { + } else if yyct1294 == codecSelferValueTypeArray1234 { + yyl1294 := r.ReadArrayStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1275, d) + x.codecDecodeSelfFromArray(yyl1294, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17748,12 +18014,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1276Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1276Slc - var yyhl1276 bool = l >= 0 - for yyj1276 := 0; ; yyj1276++ { - if yyhl1276 { - if yyj1276 >= l { + var yys1295Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1295Slc + var yyhl1295 bool = l >= 0 + for yyj1295 := 0; ; yyj1295++ { + if yyhl1295 { + if yyj1295 >= l { break } } else { @@ -17762,31 +18028,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1276Slc = r.DecodeBytes(yys1276Slc, true, true) - yys1276 := string(yys1276Slc) + yys1295Slc = r.DecodeBytes(yys1295Slc, true, true) + yys1295 := string(yys1295Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1276 { + switch yys1295 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1277 := &x.StartedAt - yym1278 := z.DecBinary() - _ = yym1278 + yyv1296 := &x.StartedAt + yym1297 := z.DecBinary() + _ = yym1297 if false { - } else if z.HasExtensions() && z.DecExt(yyv1277) { - } else if yym1278 { - z.DecBinaryUnmarshal(yyv1277) - } else if !yym1278 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1277) + } else if z.HasExtensions() && z.DecExt(yyv1296) { + } else if yym1297 { + z.DecBinaryUnmarshal(yyv1296) + } else if !yym1297 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1296) } else { - z.DecFallback(yyv1277, false) + z.DecFallback(yyv1296, false) } } default: - z.DecStructFieldNotFound(-1, yys1276) - } // end switch yys1276 - } // end for yyj1276 + z.DecStructFieldNotFound(-1, yys1295) + } // end switch yys1295 + } // end for yyj1295 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17794,16 +18060,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1279 int - var yyb1279 bool - var yyhl1279 bool = l >= 0 - yyj1279++ - if yyhl1279 { - yyb1279 = yyj1279 > l + var yyj1298 int + var yyb1298 bool + var yyhl1298 bool = l >= 0 + yyj1298++ + if yyhl1298 { + yyb1298 = yyj1298 > l } else { - yyb1279 = r.CheckBreak() + yyb1298 = r.CheckBreak() } - if yyb1279 { + if yyb1298 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17811,31 +18077,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1280 := &x.StartedAt - yym1281 := z.DecBinary() - _ = yym1281 + yyv1299 := &x.StartedAt + yym1300 := z.DecBinary() + _ = yym1300 if false { - } else if z.HasExtensions() && z.DecExt(yyv1280) { - } else if yym1281 { - z.DecBinaryUnmarshal(yyv1280) - } else if !yym1281 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1280) + } else if z.HasExtensions() && z.DecExt(yyv1299) { + } else if yym1300 { + z.DecBinaryUnmarshal(yyv1299) + } else if !yym1300 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1299) } else { - z.DecFallback(yyv1280, false) + z.DecFallback(yyv1299, false) } } for { - yyj1279++ - if yyhl1279 { - yyb1279 = yyj1279 > l + yyj1298++ + if yyhl1298 { + yyb1298 = yyj1298 > l } else { - yyb1279 = r.CheckBreak() + yyb1298 = r.CheckBreak() } - if yyb1279 { + if yyb1298 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1279-1, "") + z.DecStructFieldNotFound(yyj1298-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17847,39 +18113,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1282 := z.EncBinary() - _ = yym1282 + yym1301 := z.EncBinary() + _ = yym1301 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1283 := !z.EncBinary() - yy2arr1283 := z.EncBasicHandle().StructToArray - var yyq1283 [7]bool - _, _, _ = yysep1283, yyq1283, yy2arr1283 - const yyr1283 bool = false - yyq1283[1] = x.Signal != 0 - yyq1283[2] = x.Reason != "" - yyq1283[3] = x.Message != "" - yyq1283[4] = true - yyq1283[5] = true - yyq1283[6] = x.ContainerID != "" - var yynn1283 int - if yyr1283 || yy2arr1283 { + yysep1302 := !z.EncBinary() + yy2arr1302 := z.EncBasicHandle().StructToArray + var yyq1302 [7]bool + _, _, _ = yysep1302, yyq1302, yy2arr1302 + const yyr1302 bool = false + yyq1302[1] = x.Signal != 0 + yyq1302[2] = x.Reason != "" + yyq1302[3] = x.Message != "" + yyq1302[4] = true + yyq1302[5] = true + yyq1302[6] = x.ContainerID != "" + var yynn1302 int + if yyr1302 || yy2arr1302 { r.EncodeArrayStart(7) } else { - yynn1283 = 1 - for _, b := range yyq1283 { + yynn1302 = 1 + for _, b := range yyq1302 { if b { - yynn1283++ + yynn1302++ } } - r.EncodeMapStart(yynn1283) - yynn1283 = 0 + r.EncodeMapStart(yynn1302) + yynn1302 = 0 } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1285 := z.EncBinary() - _ = yym1285 + yym1304 := z.EncBinary() + _ = yym1304 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -17888,18 +18154,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1286 := z.EncBinary() - _ = yym1286 + yym1305 := z.EncBinary() + _ = yym1305 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[1] { - yym1288 := z.EncBinary() - _ = yym1288 + if yyq1302[1] { + yym1307 := z.EncBinary() + _ = yym1307 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -17908,23 +18174,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1283[1] { + if yyq1302[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1289 := z.EncBinary() - _ = yym1289 + yym1308 := z.EncBinary() + _ = yym1308 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[2] { - yym1291 := z.EncBinary() - _ = yym1291 + if yyq1302[2] { + yym1310 := z.EncBinary() + _ = yym1310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17933,23 +18199,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1283[2] { + if yyq1302[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1292 := z.EncBinary() - _ = yym1292 + yym1311 := z.EncBinary() + _ = yym1311 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[3] { - yym1294 := z.EncBinary() - _ = yym1294 + if yyq1302[3] { + yym1313 := z.EncBinary() + _ = yym1313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17958,97 +18224,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1283[3] { + if yyq1302[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1295 := z.EncBinary() - _ = yym1295 + yym1314 := z.EncBinary() + _ = yym1314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[4] { - yy1297 := &x.StartedAt - yym1298 := z.EncBinary() - _ = yym1298 + if yyq1302[4] { + yy1316 := &x.StartedAt + yym1317 := z.EncBinary() + _ = yym1317 if false { - } else if z.HasExtensions() && z.EncExt(yy1297) { - } else if yym1298 { - z.EncBinaryMarshal(yy1297) - } else if !yym1298 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1297) + } else if z.HasExtensions() && z.EncExt(yy1316) { + } else if yym1317 { + z.EncBinaryMarshal(yy1316) + } else if !yym1317 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1316) } else { - z.EncFallback(yy1297) + z.EncFallback(yy1316) } } else { r.EncodeNil() } } else { - if yyq1283[4] { + if yyq1302[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1299 := &x.StartedAt - yym1300 := z.EncBinary() - _ = yym1300 + yy1318 := &x.StartedAt + yym1319 := z.EncBinary() + _ = yym1319 if false { - } else if z.HasExtensions() && z.EncExt(yy1299) { - } else if yym1300 { - z.EncBinaryMarshal(yy1299) - } else if !yym1300 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1299) + } else if z.HasExtensions() && z.EncExt(yy1318) { + } else if yym1319 { + z.EncBinaryMarshal(yy1318) + } else if !yym1319 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1318) } else { - z.EncFallback(yy1299) + z.EncFallback(yy1318) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[5] { - yy1302 := &x.FinishedAt - yym1303 := z.EncBinary() - _ = yym1303 + if yyq1302[5] { + yy1321 := &x.FinishedAt + yym1322 := z.EncBinary() + _ = yym1322 if false { - } else if z.HasExtensions() && z.EncExt(yy1302) { - } else if yym1303 { - z.EncBinaryMarshal(yy1302) - } else if !yym1303 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1302) + } else if z.HasExtensions() && z.EncExt(yy1321) { + } else if yym1322 { + z.EncBinaryMarshal(yy1321) + } else if !yym1322 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1321) } else { - z.EncFallback(yy1302) + z.EncFallback(yy1321) } } else { r.EncodeNil() } } else { - if yyq1283[5] { + if yyq1302[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1304 := &x.FinishedAt - yym1305 := z.EncBinary() - _ = yym1305 + yy1323 := &x.FinishedAt + yym1324 := z.EncBinary() + _ = yym1324 if false { - } else if z.HasExtensions() && z.EncExt(yy1304) { - } else if yym1305 { - z.EncBinaryMarshal(yy1304) - } else if !yym1305 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1304) + } else if z.HasExtensions() && z.EncExt(yy1323) { + } else if yym1324 { + z.EncBinaryMarshal(yy1323) + } else if !yym1324 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1323) } else { - z.EncFallback(yy1304) + z.EncFallback(yy1323) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1283[6] { - yym1307 := z.EncBinary() - _ = yym1307 + if yyq1302[6] { + yym1326 := z.EncBinary() + _ = yym1326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18057,19 +18323,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1283[6] { + if yyq1302[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1308 := z.EncBinary() - _ = yym1308 + yym1327 := z.EncBinary() + _ = yym1327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1283 || yy2arr1283 { + if yyr1302 || yy2arr1302 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18082,25 +18348,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1309 := z.DecBinary() - _ = yym1309 + yym1328 := z.DecBinary() + _ = yym1328 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1310 := r.ContainerType() - if yyct1310 == codecSelferValueTypeMap1234 { - yyl1310 := r.ReadMapStart() - if yyl1310 == 0 { + yyct1329 := r.ContainerType() + if yyct1329 == codecSelferValueTypeMap1234 { + yyl1329 := r.ReadMapStart() + if yyl1329 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1310, d) + x.codecDecodeSelfFromMap(yyl1329, d) } - } else if yyct1310 == codecSelferValueTypeArray1234 { - yyl1310 := r.ReadArrayStart() - if yyl1310 == 0 { + } else if yyct1329 == codecSelferValueTypeArray1234 { + yyl1329 := r.ReadArrayStart() + if yyl1329 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1310, d) + x.codecDecodeSelfFromArray(yyl1329, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18112,12 +18378,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1311Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1311Slc - var yyhl1311 bool = l >= 0 - for yyj1311 := 0; ; yyj1311++ { - if yyhl1311 { - if yyj1311 >= l { + var yys1330Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1330Slc + var yyhl1330 bool = l >= 0 + for yyj1330 := 0; ; yyj1330++ { + if yyhl1330 { + if yyj1330 >= l { break } } else { @@ -18126,10 +18392,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1311Slc = r.DecodeBytes(yys1311Slc, true, true) - yys1311 := string(yys1311Slc) + yys1330Slc = r.DecodeBytes(yys1330Slc, true, true) + yys1330 := string(yys1330Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1311 { + switch yys1330 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -18158,34 +18424,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1316 := &x.StartedAt - yym1317 := z.DecBinary() - _ = yym1317 + yyv1335 := &x.StartedAt + yym1336 := z.DecBinary() + _ = yym1336 if false { - } else if z.HasExtensions() && z.DecExt(yyv1316) { - } else if yym1317 { - z.DecBinaryUnmarshal(yyv1316) - } else if !yym1317 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1316) + } else if z.HasExtensions() && z.DecExt(yyv1335) { + } else if yym1336 { + z.DecBinaryUnmarshal(yyv1335) + } else if !yym1336 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1335) } else { - z.DecFallback(yyv1316, false) + z.DecFallback(yyv1335, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1318 := &x.FinishedAt - yym1319 := z.DecBinary() - _ = yym1319 + yyv1337 := &x.FinishedAt + yym1338 := z.DecBinary() + _ = yym1338 if false { - } else if z.HasExtensions() && z.DecExt(yyv1318) { - } else if yym1319 { - z.DecBinaryUnmarshal(yyv1318) - } else if !yym1319 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1318) + } else if z.HasExtensions() && z.DecExt(yyv1337) { + } else if yym1338 { + z.DecBinaryUnmarshal(yyv1337) + } else if !yym1338 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1337) } else { - z.DecFallback(yyv1318, false) + z.DecFallback(yyv1337, false) } } case "containerID": @@ -18195,9 +18461,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1311) - } // end switch yys1311 - } // end for yyj1311 + z.DecStructFieldNotFound(-1, yys1330) + } // end switch yys1330 + } // end for yyj1330 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18205,16 +18471,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1321 int - var yyb1321 bool - var yyhl1321 bool = l >= 0 - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + var yyj1340 int + var yyb1340 bool + var yyhl1340 bool = l >= 0 + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18224,13 +18490,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18240,13 +18506,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18256,13 +18522,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18272,13 +18538,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18286,26 +18552,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1326 := &x.StartedAt - yym1327 := z.DecBinary() - _ = yym1327 + yyv1345 := &x.StartedAt + yym1346 := z.DecBinary() + _ = yym1346 if false { - } else if z.HasExtensions() && z.DecExt(yyv1326) { - } else if yym1327 { - z.DecBinaryUnmarshal(yyv1326) - } else if !yym1327 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1326) + } else if z.HasExtensions() && z.DecExt(yyv1345) { + } else if yym1346 { + z.DecBinaryUnmarshal(yyv1345) + } else if !yym1346 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1345) } else { - z.DecFallback(yyv1326, false) + z.DecFallback(yyv1345, false) } } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18313,26 +18579,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1328 := &x.FinishedAt - yym1329 := z.DecBinary() - _ = yym1329 + yyv1347 := &x.FinishedAt + yym1348 := z.DecBinary() + _ = yym1348 if false { - } else if z.HasExtensions() && z.DecExt(yyv1328) { - } else if yym1329 { - z.DecBinaryUnmarshal(yyv1328) - } else if !yym1329 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1328) + } else if z.HasExtensions() && z.DecExt(yyv1347) { + } else if yym1348 { + z.DecBinaryUnmarshal(yyv1347) + } else if !yym1348 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1347) } else { - z.DecFallback(yyv1328, false) + z.DecFallback(yyv1347, false) } } - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18343,17 +18609,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1321++ - if yyhl1321 { - yyb1321 = yyj1321 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1321 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1321 { + if yyb1340 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1321-1, "") + z.DecStructFieldNotFound(yyj1340-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18365,35 +18631,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1331 := z.EncBinary() - _ = yym1331 + yym1350 := z.EncBinary() + _ = yym1350 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1332 := !z.EncBinary() - yy2arr1332 := z.EncBasicHandle().StructToArray - var yyq1332 [3]bool - _, _, _ = yysep1332, yyq1332, yy2arr1332 - const yyr1332 bool = false - yyq1332[0] = x.Waiting != nil - yyq1332[1] = x.Running != nil - yyq1332[2] = x.Terminated != nil - var yynn1332 int - if yyr1332 || yy2arr1332 { + yysep1351 := !z.EncBinary() + yy2arr1351 := z.EncBasicHandle().StructToArray + var yyq1351 [3]bool + _, _, _ = yysep1351, yyq1351, yy2arr1351 + const yyr1351 bool = false + yyq1351[0] = x.Waiting != nil + yyq1351[1] = x.Running != nil + yyq1351[2] = x.Terminated != nil + var yynn1351 int + if yyr1351 || yy2arr1351 { r.EncodeArrayStart(3) } else { - yynn1332 = 0 - for _, b := range yyq1332 { + yynn1351 = 0 + for _, b := range yyq1351 { if b { - yynn1332++ + yynn1351++ } } - r.EncodeMapStart(yynn1332) - yynn1332 = 0 + r.EncodeMapStart(yynn1351) + yynn1351 = 0 } - if yyr1332 || yy2arr1332 { + if yyr1351 || yy2arr1351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1332[0] { + if yyq1351[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -18403,7 +18669,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1332[0] { + if yyq1351[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18414,9 +18680,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1332 || yy2arr1332 { + if yyr1351 || yy2arr1351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1332[1] { + if yyq1351[1] { if x.Running == nil { r.EncodeNil() } else { @@ -18426,7 +18692,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1332[1] { + if yyq1351[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18437,9 +18703,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1332 || yy2arr1332 { + if yyr1351 || yy2arr1351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1332[2] { + if yyq1351[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -18449,7 +18715,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1332[2] { + if yyq1351[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18460,7 +18726,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1332 || yy2arr1332 { + if yyr1351 || yy2arr1351 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18473,25 +18739,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1336 := z.DecBinary() - _ = yym1336 + yym1355 := z.DecBinary() + _ = yym1355 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1337 := r.ContainerType() - if yyct1337 == codecSelferValueTypeMap1234 { - yyl1337 := r.ReadMapStart() - if yyl1337 == 0 { + yyct1356 := r.ContainerType() + if yyct1356 == codecSelferValueTypeMap1234 { + yyl1356 := r.ReadMapStart() + if yyl1356 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1337, d) + x.codecDecodeSelfFromMap(yyl1356, d) } - } else if yyct1337 == codecSelferValueTypeArray1234 { - yyl1337 := r.ReadArrayStart() - if yyl1337 == 0 { + } else if yyct1356 == codecSelferValueTypeArray1234 { + yyl1356 := r.ReadArrayStart() + if yyl1356 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1337, d) + x.codecDecodeSelfFromArray(yyl1356, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18503,12 +18769,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1338Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1338Slc - var yyhl1338 bool = l >= 0 - for yyj1338 := 0; ; yyj1338++ { - if yyhl1338 { - if yyj1338 >= l { + var yys1357Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1357Slc + var yyhl1357 bool = l >= 0 + for yyj1357 := 0; ; yyj1357++ { + if yyhl1357 { + if yyj1357 >= l { break } } else { @@ -18517,10 +18783,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1338Slc = r.DecodeBytes(yys1338Slc, true, true) - yys1338 := string(yys1338Slc) + yys1357Slc = r.DecodeBytes(yys1357Slc, true, true) + yys1357 := string(yys1357Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1338 { + switch yys1357 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -18555,9 +18821,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1338) - } // end switch yys1338 - } // end for yyj1338 + z.DecStructFieldNotFound(-1, yys1357) + } // end switch yys1357 + } // end for yyj1357 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18565,16 +18831,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1342 int - var yyb1342 bool - var yyhl1342 bool = l >= 0 - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + var yyj1361 int + var yyb1361 bool + var yyhl1361 bool = l >= 0 + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1342 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1342 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18589,13 +18855,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1342 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1342 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18610,13 +18876,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1342 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1342 { + if yyb1361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18632,17 +18898,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1342++ - if yyhl1342 { - yyb1342 = yyj1342 > l + yyj1361++ + if yyhl1361 { + yyb1361 = yyj1361 > l } else { - yyb1342 = r.CheckBreak() + yyb1361 = r.CheckBreak() } - if yyb1342 { + if yyb1361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1342-1, "") + z.DecStructFieldNotFound(yyj1361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18654,36 +18920,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1346 := z.EncBinary() - _ = yym1346 + yym1365 := z.EncBinary() + _ = yym1365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1347 := !z.EncBinary() - yy2arr1347 := z.EncBasicHandle().StructToArray - var yyq1347 [8]bool - _, _, _ = yysep1347, yyq1347, yy2arr1347 - const yyr1347 bool = false - yyq1347[1] = true - yyq1347[2] = true - yyq1347[7] = x.ContainerID != "" - var yynn1347 int - if yyr1347 || yy2arr1347 { + yysep1366 := !z.EncBinary() + yy2arr1366 := z.EncBasicHandle().StructToArray + var yyq1366 [8]bool + _, _, _ = yysep1366, yyq1366, yy2arr1366 + const yyr1366 bool = false + yyq1366[1] = true + yyq1366[2] = true + yyq1366[7] = x.ContainerID != "" + var yynn1366 int + if yyr1366 || yy2arr1366 { r.EncodeArrayStart(8) } else { - yynn1347 = 5 - for _, b := range yyq1347 { + yynn1366 = 5 + for _, b := range yyq1366 { if b { - yynn1347++ + yynn1366++ } } - r.EncodeMapStart(yynn1347) - yynn1347 = 0 + r.EncodeMapStart(yynn1366) + yynn1366 = 0 } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1349 := z.EncBinary() - _ = yym1349 + yym1368 := z.EncBinary() + _ = yym1368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -18692,51 +18958,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1350 := z.EncBinary() - _ = yym1350 + yym1369 := z.EncBinary() + _ = yym1369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1347[1] { - yy1352 := &x.State - yy1352.CodecEncodeSelf(e) + if yyq1366[1] { + yy1371 := &x.State + yy1371.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1347[1] { + if yyq1366[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1353 := &x.State - yy1353.CodecEncodeSelf(e) + yy1372 := &x.State + yy1372.CodecEncodeSelf(e) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1347[2] { - yy1355 := &x.LastTerminationState - yy1355.CodecEncodeSelf(e) + if yyq1366[2] { + yy1374 := &x.LastTerminationState + yy1374.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1347[2] { + if yyq1366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1356 := &x.LastTerminationState - yy1356.CodecEncodeSelf(e) + yy1375 := &x.LastTerminationState + yy1375.CodecEncodeSelf(e) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1358 := z.EncBinary() - _ = yym1358 + yym1377 := z.EncBinary() + _ = yym1377 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -18745,17 +19011,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1359 := z.EncBinary() - _ = yym1359 + yym1378 := z.EncBinary() + _ = yym1378 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1361 := z.EncBinary() - _ = yym1361 + yym1380 := z.EncBinary() + _ = yym1380 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -18764,17 +19030,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1362 := z.EncBinary() - _ = yym1362 + yym1381 := z.EncBinary() + _ = yym1381 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1364 := z.EncBinary() - _ = yym1364 + yym1383 := z.EncBinary() + _ = yym1383 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -18783,17 +19049,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1365 := z.EncBinary() - _ = yym1365 + yym1384 := z.EncBinary() + _ = yym1384 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1367 := z.EncBinary() - _ = yym1367 + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -18802,18 +19068,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1368 := z.EncBinary() - _ = yym1368 + yym1387 := z.EncBinary() + _ = yym1387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1347[7] { - yym1370 := z.EncBinary() - _ = yym1370 + if yyq1366[7] { + yym1389 := z.EncBinary() + _ = yym1389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18822,19 +19088,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1347[7] { + if yyq1366[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1371 := z.EncBinary() - _ = yym1371 + yym1390 := z.EncBinary() + _ = yym1390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1347 || yy2arr1347 { + if yyr1366 || yy2arr1366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18847,25 +19113,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1372 := z.DecBinary() - _ = yym1372 + yym1391 := z.DecBinary() + _ = yym1391 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1373 := r.ContainerType() - if yyct1373 == codecSelferValueTypeMap1234 { - yyl1373 := r.ReadMapStart() - if yyl1373 == 0 { + yyct1392 := r.ContainerType() + if yyct1392 == codecSelferValueTypeMap1234 { + yyl1392 := r.ReadMapStart() + if yyl1392 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1373, d) + x.codecDecodeSelfFromMap(yyl1392, d) } - } else if yyct1373 == codecSelferValueTypeArray1234 { - yyl1373 := r.ReadArrayStart() - if yyl1373 == 0 { + } else if yyct1392 == codecSelferValueTypeArray1234 { + yyl1392 := r.ReadArrayStart() + if yyl1392 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1373, d) + x.codecDecodeSelfFromArray(yyl1392, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18877,12 +19143,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1374Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1374Slc - var yyhl1374 bool = l >= 0 - for yyj1374 := 0; ; yyj1374++ { - if yyhl1374 { - if yyj1374 >= l { + var yys1393Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1393Slc + var yyhl1393 bool = l >= 0 + for yyj1393 := 0; ; yyj1393++ { + if yyhl1393 { + if yyj1393 >= l { break } } else { @@ -18891,10 +19157,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1374Slc = r.DecodeBytes(yys1374Slc, true, true) - yys1374 := string(yys1374Slc) + yys1393Slc = r.DecodeBytes(yys1393Slc, true, true) + yys1393 := string(yys1393Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1374 { + switch yys1393 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -18905,15 +19171,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1376 := &x.State - yyv1376.CodecDecodeSelf(d) + yyv1395 := &x.State + yyv1395.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1377 := &x.LastTerminationState - yyv1377.CodecDecodeSelf(d) + yyv1396 := &x.LastTerminationState + yyv1396.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -18946,9 +19212,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1374) - } // end switch yys1374 - } // end for yyj1374 + z.DecStructFieldNotFound(-1, yys1393) + } // end switch yys1393 + } // end for yyj1393 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18956,16 +19222,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1383 int - var yyb1383 bool - var yyhl1383 bool = l >= 0 - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + var yyj1402 int + var yyb1402 bool + var yyhl1402 bool = l >= 0 + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18975,13 +19241,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18989,16 +19255,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1385 := &x.State - yyv1385.CodecDecodeSelf(d) + yyv1404 := &x.State + yyv1404.CodecDecodeSelf(d) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19006,16 +19272,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1386 := &x.LastTerminationState - yyv1386.CodecDecodeSelf(d) + yyv1405 := &x.LastTerminationState + yyv1405.CodecDecodeSelf(d) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19025,13 +19291,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19041,13 +19307,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19057,13 +19323,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19073,13 +19339,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19090,17 +19356,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1383++ - if yyhl1383 { - yyb1383 = yyj1383 > l + yyj1402++ + if yyhl1402 { + yyb1402 = yyj1402 > l } else { - yyb1383 = r.CheckBreak() + yyb1402 = r.CheckBreak() } - if yyb1383 { + if yyb1402 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1383-1, "") + z.DecStructFieldNotFound(yyj1402-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19109,8 +19375,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1392 := z.EncBinary() - _ = yym1392 + yym1411 := z.EncBinary() + _ = yym1411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19122,8 +19388,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1393 := z.DecBinary() - _ = yym1393 + yym1412 := z.DecBinary() + _ = yym1412 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19135,8 +19401,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1394 := z.EncBinary() - _ = yym1394 + yym1413 := z.EncBinary() + _ = yym1413 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19148,8 +19414,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1395 := z.DecBinary() - _ = yym1395 + yym1414 := z.DecBinary() + _ = yym1414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19164,34 +19430,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1396 := z.EncBinary() - _ = yym1396 + yym1415 := z.EncBinary() + _ = yym1415 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1397 := !z.EncBinary() - yy2arr1397 := z.EncBasicHandle().StructToArray - var yyq1397 [6]bool - _, _, _ = yysep1397, yyq1397, yy2arr1397 - const yyr1397 bool = false - yyq1397[2] = true - yyq1397[3] = true - yyq1397[4] = x.Reason != "" - yyq1397[5] = x.Message != "" - var yynn1397 int - if yyr1397 || yy2arr1397 { + yysep1416 := !z.EncBinary() + yy2arr1416 := z.EncBasicHandle().StructToArray + var yyq1416 [6]bool + _, _, _ = yysep1416, yyq1416, yy2arr1416 + const yyr1416 bool = false + yyq1416[2] = true + yyq1416[3] = true + yyq1416[4] = x.Reason != "" + yyq1416[5] = x.Message != "" + var yynn1416 int + if yyr1416 || yy2arr1416 { r.EncodeArrayStart(6) } else { - yynn1397 = 2 - for _, b := range yyq1397 { + yynn1416 = 2 + for _, b := range yyq1416 { if b { - yynn1397++ + yynn1416++ } } - r.EncodeMapStart(yynn1397) - yynn1397 = 0 + r.EncodeMapStart(yynn1416) + yynn1416 = 0 } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -19200,7 +19466,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -19209,85 +19475,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1397[2] { - yy1401 := &x.LastProbeTime - yym1402 := z.EncBinary() - _ = yym1402 + if yyq1416[2] { + yy1420 := &x.LastProbeTime + yym1421 := z.EncBinary() + _ = yym1421 if false { - } else if z.HasExtensions() && z.EncExt(yy1401) { - } else if yym1402 { - z.EncBinaryMarshal(yy1401) - } else if !yym1402 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1401) + } else if z.HasExtensions() && z.EncExt(yy1420) { + } else if yym1421 { + z.EncBinaryMarshal(yy1420) + } else if !yym1421 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1420) } else { - z.EncFallback(yy1401) + z.EncFallback(yy1420) } } else { r.EncodeNil() } } else { - if yyq1397[2] { + if yyq1416[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1403 := &x.LastProbeTime - yym1404 := z.EncBinary() - _ = yym1404 + yy1422 := &x.LastProbeTime + yym1423 := z.EncBinary() + _ = yym1423 if false { - } else if z.HasExtensions() && z.EncExt(yy1403) { - } else if yym1404 { - z.EncBinaryMarshal(yy1403) - } else if !yym1404 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1403) + } else if z.HasExtensions() && z.EncExt(yy1422) { + } else if yym1423 { + z.EncBinaryMarshal(yy1422) + } else if !yym1423 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1422) } else { - z.EncFallback(yy1403) + z.EncFallback(yy1422) } } } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1397[3] { - yy1406 := &x.LastTransitionTime - yym1407 := z.EncBinary() - _ = yym1407 + if yyq1416[3] { + yy1425 := &x.LastTransitionTime + yym1426 := z.EncBinary() + _ = yym1426 if false { - } else if z.HasExtensions() && z.EncExt(yy1406) { - } else if yym1407 { - z.EncBinaryMarshal(yy1406) - } else if !yym1407 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1406) + } else if z.HasExtensions() && z.EncExt(yy1425) { + } else if yym1426 { + z.EncBinaryMarshal(yy1425) + } else if !yym1426 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1425) } else { - z.EncFallback(yy1406) + z.EncFallback(yy1425) } } else { r.EncodeNil() } } else { - if yyq1397[3] { + if yyq1416[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1408 := &x.LastTransitionTime - yym1409 := z.EncBinary() - _ = yym1409 + yy1427 := &x.LastTransitionTime + yym1428 := z.EncBinary() + _ = yym1428 if false { - } else if z.HasExtensions() && z.EncExt(yy1408) { - } else if yym1409 { - z.EncBinaryMarshal(yy1408) - } else if !yym1409 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1408) + } else if z.HasExtensions() && z.EncExt(yy1427) { + } else if yym1428 { + z.EncBinaryMarshal(yy1427) + } else if !yym1428 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1427) } else { - z.EncFallback(yy1408) + z.EncFallback(yy1427) } } } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1397[4] { - yym1411 := z.EncBinary() - _ = yym1411 + if yyq1416[4] { + yym1430 := z.EncBinary() + _ = yym1430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -19296,23 +19562,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1397[4] { + if yyq1416[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1412 := z.EncBinary() - _ = yym1412 + yym1431 := z.EncBinary() + _ = yym1431 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1397[5] { - yym1414 := z.EncBinary() - _ = yym1414 + if yyq1416[5] { + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -19321,19 +19587,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1397[5] { + if yyq1416[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1415 := z.EncBinary() - _ = yym1415 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1397 || yy2arr1397 { + if yyr1416 || yy2arr1416 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19346,25 +19612,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1416 := z.DecBinary() - _ = yym1416 + yym1435 := z.DecBinary() + _ = yym1435 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1417 := r.ContainerType() - if yyct1417 == codecSelferValueTypeMap1234 { - yyl1417 := r.ReadMapStart() - if yyl1417 == 0 { + yyct1436 := r.ContainerType() + if yyct1436 == codecSelferValueTypeMap1234 { + yyl1436 := r.ReadMapStart() + if yyl1436 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1417, d) + x.codecDecodeSelfFromMap(yyl1436, d) } - } else if yyct1417 == codecSelferValueTypeArray1234 { - yyl1417 := r.ReadArrayStart() - if yyl1417 == 0 { + } else if yyct1436 == codecSelferValueTypeArray1234 { + yyl1436 := r.ReadArrayStart() + if yyl1436 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1417, d) + x.codecDecodeSelfFromArray(yyl1436, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19376,12 +19642,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1418Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1418Slc - var yyhl1418 bool = l >= 0 - for yyj1418 := 0; ; yyj1418++ { - if yyhl1418 { - if yyj1418 >= l { + var yys1437Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1437Slc + var yyhl1437 bool = l >= 0 + for yyj1437 := 0; ; yyj1437++ { + if yyhl1437 { + if yyj1437 >= l { break } } else { @@ -19390,10 +19656,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1418Slc = r.DecodeBytes(yys1418Slc, true, true) - yys1418 := string(yys1418Slc) + yys1437Slc = r.DecodeBytes(yys1437Slc, true, true) + yys1437 := string(yys1437Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1418 { + switch yys1437 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -19410,34 +19676,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1421 := &x.LastProbeTime - yym1422 := z.DecBinary() - _ = yym1422 + yyv1440 := &x.LastProbeTime + yym1441 := z.DecBinary() + _ = yym1441 if false { - } else if z.HasExtensions() && z.DecExt(yyv1421) { - } else if yym1422 { - z.DecBinaryUnmarshal(yyv1421) - } else if !yym1422 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1421) + } else if z.HasExtensions() && z.DecExt(yyv1440) { + } else if yym1441 { + z.DecBinaryUnmarshal(yyv1440) + } else if !yym1441 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1440) } else { - z.DecFallback(yyv1421, false) + z.DecFallback(yyv1440, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1423 := &x.LastTransitionTime - yym1424 := z.DecBinary() - _ = yym1424 + yyv1442 := &x.LastTransitionTime + yym1443 := z.DecBinary() + _ = yym1443 if false { - } else if z.HasExtensions() && z.DecExt(yyv1423) { - } else if yym1424 { - z.DecBinaryUnmarshal(yyv1423) - } else if !yym1424 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1423) + } else if z.HasExtensions() && z.DecExt(yyv1442) { + } else if yym1443 { + z.DecBinaryUnmarshal(yyv1442) + } else if !yym1443 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1442) } else { - z.DecFallback(yyv1423, false) + z.DecFallback(yyv1442, false) } } case "reason": @@ -19453,9 +19719,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1418) - } // end switch yys1418 - } // end for yyj1418 + z.DecStructFieldNotFound(-1, yys1437) + } // end switch yys1437 + } // end for yyj1437 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19463,16 +19729,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1427 int - var yyb1427 bool - var yyhl1427 bool = l >= 0 - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + var yyj1446 int + var yyb1446 bool + var yyhl1446 bool = l >= 0 + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19482,13 +19748,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19498,13 +19764,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19512,26 +19778,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1430 := &x.LastProbeTime - yym1431 := z.DecBinary() - _ = yym1431 + yyv1449 := &x.LastProbeTime + yym1450 := z.DecBinary() + _ = yym1450 if false { - } else if z.HasExtensions() && z.DecExt(yyv1430) { - } else if yym1431 { - z.DecBinaryUnmarshal(yyv1430) - } else if !yym1431 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1430) + } else if z.HasExtensions() && z.DecExt(yyv1449) { + } else if yym1450 { + z.DecBinaryUnmarshal(yyv1449) + } else if !yym1450 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1449) } else { - z.DecFallback(yyv1430, false) + z.DecFallback(yyv1449, false) } } - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19539,26 +19805,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1432 := &x.LastTransitionTime - yym1433 := z.DecBinary() - _ = yym1433 + yyv1451 := &x.LastTransitionTime + yym1452 := z.DecBinary() + _ = yym1452 if false { - } else if z.HasExtensions() && z.DecExt(yyv1432) { - } else if yym1433 { - z.DecBinaryUnmarshal(yyv1432) - } else if !yym1433 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1432) + } else if z.HasExtensions() && z.DecExt(yyv1451) { + } else if yym1452 { + z.DecBinaryUnmarshal(yyv1451) + } else if !yym1452 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1451) } else { - z.DecFallback(yyv1432, false) + z.DecFallback(yyv1451, false) } } - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19568,13 +19834,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19585,17 +19851,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1427++ - if yyhl1427 { - yyb1427 = yyj1427 > l + yyj1446++ + if yyhl1446 { + yyb1446 = yyj1446 > l } else { - yyb1427 = r.CheckBreak() + yyb1446 = r.CheckBreak() } - if yyb1427 { + if yyb1446 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1427-1, "") + z.DecStructFieldNotFound(yyj1446-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19604,8 +19870,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1436 := z.EncBinary() - _ = yym1436 + yym1455 := z.EncBinary() + _ = yym1455 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19617,8 +19883,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1437 := z.DecBinary() - _ = yym1437 + yym1456 := z.DecBinary() + _ = yym1456 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19633,37 +19899,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1438 := z.EncBinary() - _ = yym1438 + yym1457 := z.EncBinary() + _ = yym1457 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1439 := !z.EncBinary() - yy2arr1439 := z.EncBasicHandle().StructToArray - var yyq1439 [4]bool - _, _, _ = yysep1439, yyq1439, yy2arr1439 - const yyr1439 bool = false - yyq1439[0] = x.Kind != "" - yyq1439[1] = x.APIVersion != "" - yyq1439[2] = true - var yynn1439 int - if yyr1439 || yy2arr1439 { + yysep1458 := !z.EncBinary() + yy2arr1458 := z.EncBasicHandle().StructToArray + var yyq1458 [4]bool + _, _, _ = yysep1458, yyq1458, yy2arr1458 + const yyr1458 bool = false + yyq1458[0] = x.Kind != "" + yyq1458[1] = x.APIVersion != "" + yyq1458[2] = true + var yynn1458 int + if yyr1458 || yy2arr1458 { r.EncodeArrayStart(4) } else { - yynn1439 = 1 - for _, b := range yyq1439 { + yynn1458 = 1 + for _, b := range yyq1458 { if b { - yynn1439++ + yynn1458++ } } - r.EncodeMapStart(yynn1439) - yynn1439 = 0 + r.EncodeMapStart(yynn1458) + yynn1458 = 0 } - if yyr1439 || yy2arr1439 { + if yyr1458 || yy2arr1458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1439[0] { - yym1441 := z.EncBinary() - _ = yym1441 + if yyq1458[0] { + yym1460 := z.EncBinary() + _ = yym1460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -19672,23 +19938,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1439[0] { + if yyq1458[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1442 := z.EncBinary() - _ = yym1442 + yym1461 := z.EncBinary() + _ = yym1461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1439 || yy2arr1439 { + if yyr1458 || yy2arr1458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1439[1] { - yym1444 := z.EncBinary() - _ = yym1444 + if yyq1458[1] { + yym1463 := z.EncBinary() + _ = yym1463 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -19697,54 +19963,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1439[1] { + if yyq1458[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1445 := z.EncBinary() - _ = yym1445 + yym1464 := z.EncBinary() + _ = yym1464 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1439 || yy2arr1439 { + if yyr1458 || yy2arr1458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1439[2] { - yy1447 := &x.ListMeta - yym1448 := z.EncBinary() - _ = yym1448 + if yyq1458[2] { + yy1466 := &x.ListMeta + yym1467 := z.EncBinary() + _ = yym1467 if false { - } else if z.HasExtensions() && z.EncExt(yy1447) { + } else if z.HasExtensions() && z.EncExt(yy1466) { } else { - z.EncFallback(yy1447) + z.EncFallback(yy1466) } } else { r.EncodeNil() } } else { - if yyq1439[2] { + if yyq1458[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1449 := &x.ListMeta - yym1450 := z.EncBinary() - _ = yym1450 + yy1468 := &x.ListMeta + yym1469 := z.EncBinary() + _ = yym1469 if false { - } else if z.HasExtensions() && z.EncExt(yy1449) { + } else if z.HasExtensions() && z.EncExt(yy1468) { } else { - z.EncFallback(yy1449) + z.EncFallback(yy1468) } } } - if yyr1439 || yy2arr1439 { + if yyr1458 || yy2arr1458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1452 := z.EncBinary() - _ = yym1452 + yym1471 := z.EncBinary() + _ = yym1471 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -19757,15 +20023,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1453 := z.EncBinary() - _ = yym1453 + yym1472 := z.EncBinary() + _ = yym1472 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1439 || yy2arr1439 { + if yyr1458 || yy2arr1458 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19778,25 +20044,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1454 := z.DecBinary() - _ = yym1454 + yym1473 := z.DecBinary() + _ = yym1473 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1455 := r.ContainerType() - if yyct1455 == codecSelferValueTypeMap1234 { - yyl1455 := r.ReadMapStart() - if yyl1455 == 0 { + yyct1474 := r.ContainerType() + if yyct1474 == codecSelferValueTypeMap1234 { + yyl1474 := r.ReadMapStart() + if yyl1474 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1455, d) + x.codecDecodeSelfFromMap(yyl1474, d) } - } else if yyct1455 == codecSelferValueTypeArray1234 { - yyl1455 := r.ReadArrayStart() - if yyl1455 == 0 { + } else if yyct1474 == codecSelferValueTypeArray1234 { + yyl1474 := r.ReadArrayStart() + if yyl1474 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1455, d) + x.codecDecodeSelfFromArray(yyl1474, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19808,12 +20074,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1456Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1456Slc - var yyhl1456 bool = l >= 0 - for yyj1456 := 0; ; yyj1456++ { - if yyhl1456 { - if yyj1456 >= l { + var yys1475Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1475Slc + var yyhl1475 bool = l >= 0 + for yyj1475 := 0; ; yyj1475++ { + if yyhl1475 { + if yyj1475 >= l { break } } else { @@ -19822,10 +20088,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1456Slc = r.DecodeBytes(yys1456Slc, true, true) - yys1456 := string(yys1456Slc) + yys1475Slc = r.DecodeBytes(yys1475Slc, true, true) + yys1475 := string(yys1475Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1456 { + switch yys1475 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -19842,31 +20108,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1459 := &x.ListMeta - yym1460 := z.DecBinary() - _ = yym1460 + yyv1478 := &x.ListMeta + yym1479 := z.DecBinary() + _ = yym1479 if false { - } else if z.HasExtensions() && z.DecExt(yyv1459) { + } else if z.HasExtensions() && z.DecExt(yyv1478) { } else { - z.DecFallback(yyv1459, false) + z.DecFallback(yyv1478, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1461 := &x.Items - yym1462 := z.DecBinary() - _ = yym1462 + yyv1480 := &x.Items + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSlicePod((*[]Pod)(yyv1461), d) + h.decSlicePod((*[]Pod)(yyv1480), d) } } default: - z.DecStructFieldNotFound(-1, yys1456) - } // end switch yys1456 - } // end for yyj1456 + z.DecStructFieldNotFound(-1, yys1475) + } // end switch yys1475 + } // end for yyj1475 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19874,16 +20140,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1463 int - var yyb1463 bool - var yyhl1463 bool = l >= 0 - yyj1463++ - if yyhl1463 { - yyb1463 = yyj1463 > l + var yyj1482 int + var yyb1482 bool + var yyhl1482 bool = l >= 0 + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1463 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1463 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19893,13 +20159,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1463++ - if yyhl1463 { - yyb1463 = yyj1463 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1463 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1463 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19909,13 +20175,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1463++ - if yyhl1463 { - yyb1463 = yyj1463 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1463 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1463 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19923,22 +20189,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1466 := &x.ListMeta - yym1467 := z.DecBinary() - _ = yym1467 + yyv1485 := &x.ListMeta + yym1486 := z.DecBinary() + _ = yym1486 if false { - } else if z.HasExtensions() && z.DecExt(yyv1466) { + } else if z.HasExtensions() && z.DecExt(yyv1485) { } else { - z.DecFallback(yyv1466, false) + z.DecFallback(yyv1485, false) } } - yyj1463++ - if yyhl1463 { - yyb1463 = yyj1463 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1463 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1463 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19946,26 +20212,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1468 := &x.Items - yym1469 := z.DecBinary() - _ = yym1469 + yyv1487 := &x.Items + yym1488 := z.DecBinary() + _ = yym1488 if false { } else { - h.decSlicePod((*[]Pod)(yyv1468), d) + h.decSlicePod((*[]Pod)(yyv1487), d) } } for { - yyj1463++ - if yyhl1463 { - yyb1463 = yyj1463 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1463 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1463 { + if yyb1482 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1463-1, "") + z.DecStructFieldNotFound(yyj1482-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19974,8 +20240,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1470 := z.EncBinary() - _ = yym1470 + yym1489 := z.EncBinary() + _ = yym1489 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19987,8 +20253,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1471 := z.DecBinary() - _ = yym1471 + yym1490 := z.DecBinary() + _ = yym1490 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -20003,44 +20269,44 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1472 := z.EncBinary() - _ = yym1472 + yym1491 := z.EncBinary() + _ = yym1491 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1473 := !z.EncBinary() - yy2arr1473 := z.EncBasicHandle().StructToArray - var yyq1473 [11]bool - _, _, _ = yysep1473, yyq1473, yy2arr1473 - const yyr1473 bool = false - yyq1473[2] = x.RestartPolicy != "" - yyq1473[3] = x.TerminationGracePeriodSeconds != nil - yyq1473[4] = x.ActiveDeadlineSeconds != nil - yyq1473[5] = x.DNSPolicy != "" - yyq1473[6] = len(x.NodeSelector) != 0 - yyq1473[8] = x.NodeName != "" - yyq1473[9] = x.SecurityContext != nil - yyq1473[10] = len(x.ImagePullSecrets) != 0 - var yynn1473 int - if yyr1473 || yy2arr1473 { + yysep1492 := !z.EncBinary() + yy2arr1492 := z.EncBasicHandle().StructToArray + var yyq1492 [11]bool + _, _, _ = yysep1492, yyq1492, yy2arr1492 + const yyr1492 bool = false + yyq1492[2] = x.RestartPolicy != "" + yyq1492[3] = x.TerminationGracePeriodSeconds != nil + yyq1492[4] = x.ActiveDeadlineSeconds != nil + yyq1492[5] = x.DNSPolicy != "" + yyq1492[6] = len(x.NodeSelector) != 0 + yyq1492[8] = x.NodeName != "" + yyq1492[9] = x.SecurityContext != nil + yyq1492[10] = len(x.ImagePullSecrets) != 0 + var yynn1492 int + if yyr1492 || yy2arr1492 { r.EncodeArrayStart(11) } else { - yynn1473 = 3 - for _, b := range yyq1473 { + yynn1492 = 3 + for _, b := range yyq1492 { if b { - yynn1473++ + yynn1492++ } } - r.EncodeMapStart(yynn1473) - yynn1473 = 0 + r.EncodeMapStart(yynn1492) + yynn1492 = 0 } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1475 := z.EncBinary() - _ = yym1475 + yym1494 := z.EncBinary() + _ = yym1494 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -20053,21 +20319,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Volumes == nil { r.EncodeNil() } else { - yym1476 := z.EncBinary() - _ = yym1476 + yym1495 := z.EncBinary() + _ = yym1495 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1478 := z.EncBinary() - _ = yym1478 + yym1497 := z.EncBinary() + _ = yym1497 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -20080,122 +20346,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1479 := z.EncBinary() - _ = yym1479 + yym1498 := z.EncBinary() + _ = yym1498 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[2] { + if yyq1492[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1473[2] { + if yyq1492[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[3] { + if yyq1492[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1482 := *x.TerminationGracePeriodSeconds - yym1483 := z.EncBinary() - _ = yym1483 + yy1501 := *x.TerminationGracePeriodSeconds + yym1502 := z.EncBinary() + _ = yym1502 if false { } else { - r.EncodeInt(int64(yy1482)) + r.EncodeInt(int64(yy1501)) } } } else { r.EncodeNil() } } else { - if yyq1473[3] { + if yyq1492[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1484 := *x.TerminationGracePeriodSeconds - yym1485 := z.EncBinary() - _ = yym1485 + yy1503 := *x.TerminationGracePeriodSeconds + yym1504 := z.EncBinary() + _ = yym1504 if false { } else { - r.EncodeInt(int64(yy1484)) + r.EncodeInt(int64(yy1503)) } } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[4] { + if yyq1492[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1487 := *x.ActiveDeadlineSeconds - yym1488 := z.EncBinary() - _ = yym1488 + yy1506 := *x.ActiveDeadlineSeconds + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { - r.EncodeInt(int64(yy1487)) + r.EncodeInt(int64(yy1506)) } } } else { r.EncodeNil() } } else { - if yyq1473[4] { + if yyq1492[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1489 := *x.ActiveDeadlineSeconds - yym1490 := z.EncBinary() - _ = yym1490 + yy1508 := *x.ActiveDeadlineSeconds + yym1509 := z.EncBinary() + _ = yym1509 if false { } else { - r.EncodeInt(int64(yy1489)) + r.EncodeInt(int64(yy1508)) } } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[5] { + if yyq1492[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1473[5] { + if yyq1492[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[6] { + if yyq1492[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1493 := z.EncBinary() - _ = yym1493 + yym1512 := z.EncBinary() + _ = yym1512 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -20205,15 +20471,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1473[6] { + if yyq1492[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1494 := z.EncBinary() - _ = yym1494 + yym1513 := z.EncBinary() + _ = yym1513 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -20221,10 +20487,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1496 := z.EncBinary() - _ = yym1496 + yym1515 := z.EncBinary() + _ = yym1515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -20233,18 +20499,18 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1497 := z.EncBinary() - _ = yym1497 + yym1516 := z.EncBinary() + _ = yym1516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[8] { - yym1499 := z.EncBinary() - _ = yym1499 + if yyq1492[8] { + yym1518 := z.EncBinary() + _ = yym1518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -20253,21 +20519,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1473[8] { + if yyq1492[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1500 := z.EncBinary() - _ = yym1500 + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[9] { + if yyq1492[9] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -20277,7 +20543,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1473[9] { + if yyq1492[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20288,14 +20554,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1473[10] { + if yyq1492[10] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1503 := z.EncBinary() - _ = yym1503 + yym1522 := z.EncBinary() + _ = yym1522 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -20305,15 +20571,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1473[10] { + if yyq1492[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1504 := z.EncBinary() - _ = yym1504 + yym1523 := z.EncBinary() + _ = yym1523 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -20321,7 +20587,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1473 || yy2arr1473 { + if yyr1492 || yy2arr1492 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20334,25 +20600,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1505 := z.DecBinary() - _ = yym1505 + yym1524 := z.DecBinary() + _ = yym1524 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1506 := r.ContainerType() - if yyct1506 == codecSelferValueTypeMap1234 { - yyl1506 := r.ReadMapStart() - if yyl1506 == 0 { + yyct1525 := r.ContainerType() + if yyct1525 == codecSelferValueTypeMap1234 { + yyl1525 := r.ReadMapStart() + if yyl1525 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1506, d) + x.codecDecodeSelfFromMap(yyl1525, d) } - } else if yyct1506 == codecSelferValueTypeArray1234 { - yyl1506 := r.ReadArrayStart() - if yyl1506 == 0 { + } else if yyct1525 == codecSelferValueTypeArray1234 { + yyl1525 := r.ReadArrayStart() + if yyl1525 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1506, d) + x.codecDecodeSelfFromArray(yyl1525, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20364,12 +20630,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1507Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1507Slc - var yyhl1507 bool = l >= 0 - for yyj1507 := 0; ; yyj1507++ { - if yyhl1507 { - if yyj1507 >= l { + var yys1526Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1526Slc + var yyhl1526 bool = l >= 0 + for yyj1526 := 0; ; yyj1526++ { + if yyhl1526 { + if yyj1526 >= l { break } } else { @@ -20378,32 +20644,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1507Slc = r.DecodeBytes(yys1507Slc, true, true) - yys1507 := string(yys1507Slc) + yys1526Slc = r.DecodeBytes(yys1526Slc, true, true) + yys1526 := string(yys1526Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1507 { + switch yys1526 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1508 := &x.Volumes - yym1509 := z.DecBinary() - _ = yym1509 + yyv1527 := &x.Volumes + yym1528 := z.DecBinary() + _ = yym1528 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1508), d) + h.decSliceVolume((*[]Volume)(yyv1527), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1510 := &x.Containers - yym1511 := z.DecBinary() - _ = yym1511 + yyv1529 := &x.Containers + yym1530 := z.DecBinary() + _ = yym1530 if false { } else { - h.decSliceContainer((*[]Container)(yyv1510), d) + h.decSliceContainer((*[]Container)(yyv1529), d) } } case "restartPolicy": @@ -20421,8 +20687,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1514 := z.DecBinary() - _ = yym1514 + yym1533 := z.DecBinary() + _ = yym1533 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -20437,8 +20703,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1516 := z.DecBinary() - _ = yym1516 + yym1535 := z.DecBinary() + _ = yym1535 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -20454,12 +20720,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1518 := &x.NodeSelector - yym1519 := z.DecBinary() - _ = yym1519 + yyv1537 := &x.NodeSelector + yym1538 := z.DecBinary() + _ = yym1538 if false { } else { - z.F.DecMapStringStringX(yyv1518, false, d) + z.F.DecMapStringStringX(yyv1537, false, d) } } case "serviceAccountName": @@ -20489,18 +20755,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1523 := &x.ImagePullSecrets - yym1524 := z.DecBinary() - _ = yym1524 + yyv1542 := &x.ImagePullSecrets + yym1543 := z.DecBinary() + _ = yym1543 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1523), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1542), d) } } default: - z.DecStructFieldNotFound(-1, yys1507) - } // end switch yys1507 - } // end for yyj1507 + z.DecStructFieldNotFound(-1, yys1526) + } // end switch yys1526 + } // end for yyj1526 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20508,16 +20774,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1525 int - var yyb1525 bool - var yyhl1525 bool = l >= 0 - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + var yyj1544 int + var yyb1544 bool + var yyhl1544 bool = l >= 0 + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20525,21 +20791,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1526 := &x.Volumes - yym1527 := z.DecBinary() - _ = yym1527 + yyv1545 := &x.Volumes + yym1546 := z.DecBinary() + _ = yym1546 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1526), d) + h.decSliceVolume((*[]Volume)(yyv1545), d) } } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20547,21 +20813,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1528 := &x.Containers - yym1529 := z.DecBinary() - _ = yym1529 + yyv1547 := &x.Containers + yym1548 := z.DecBinary() + _ = yym1548 if false { } else { - h.decSliceContainer((*[]Container)(yyv1528), d) + h.decSliceContainer((*[]Container)(yyv1547), d) } } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20571,13 +20837,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20590,20 +20856,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1532 := z.DecBinary() - _ = yym1532 + yym1551 := z.DecBinary() + _ = yym1551 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20616,20 +20882,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1534 := z.DecBinary() - _ = yym1534 + yym1553 := z.DecBinary() + _ = yym1553 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20639,13 +20905,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20653,21 +20919,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1536 := &x.NodeSelector - yym1537 := z.DecBinary() - _ = yym1537 + yyv1555 := &x.NodeSelector + yym1556 := z.DecBinary() + _ = yym1556 if false { } else { - z.F.DecMapStringStringX(yyv1536, false, d) + z.F.DecMapStringStringX(yyv1555, false, d) } } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20677,13 +20943,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20693,13 +20959,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20714,13 +20980,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20728,26 +20994,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1541 := &x.ImagePullSecrets - yym1542 := z.DecBinary() - _ = yym1542 + yyv1560 := &x.ImagePullSecrets + yym1561 := z.DecBinary() + _ = yym1561 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1541), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1560), d) } } for { - yyj1525++ - if yyhl1525 { - yyb1525 = yyj1525 > l + yyj1544++ + if yyhl1544 { + yyb1544 = yyj1544 > l } else { - yyb1525 = r.CheckBreak() + yyb1544 = r.CheckBreak() } - if yyb1525 { + if yyb1544 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1525-1, "") + z.DecStructFieldNotFound(yyj1544-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20759,42 +21025,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1543 := z.EncBinary() - _ = yym1543 + yym1562 := z.EncBinary() + _ = yym1562 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1544 := !z.EncBinary() - yy2arr1544 := z.EncBasicHandle().StructToArray - var yyq1544 [8]bool - _, _, _ = yysep1544, yyq1544, yy2arr1544 - const yyr1544 bool = false - yyq1544[0] = x.HostNetwork != false - yyq1544[1] = x.HostPID != false - yyq1544[2] = x.HostIPC != false - yyq1544[3] = x.SELinuxOptions != nil - yyq1544[4] = x.RunAsUser != nil - yyq1544[5] = x.RunAsNonRoot != nil - yyq1544[6] = len(x.SupplementalGroups) != 0 - yyq1544[7] = x.FSGroup != nil - var yynn1544 int - if yyr1544 || yy2arr1544 { + yysep1563 := !z.EncBinary() + yy2arr1563 := z.EncBasicHandle().StructToArray + var yyq1563 [8]bool + _, _, _ = yysep1563, yyq1563, yy2arr1563 + const yyr1563 bool = false + yyq1563[0] = x.HostNetwork != false + yyq1563[1] = x.HostPID != false + yyq1563[2] = x.HostIPC != false + yyq1563[3] = x.SELinuxOptions != nil + yyq1563[4] = x.RunAsUser != nil + yyq1563[5] = x.RunAsNonRoot != nil + yyq1563[6] = len(x.SupplementalGroups) != 0 + yyq1563[7] = x.FSGroup != nil + var yynn1563 int + if yyr1563 || yy2arr1563 { r.EncodeArrayStart(8) } else { - yynn1544 = 0 - for _, b := range yyq1544 { + yynn1563 = 0 + for _, b := range yyq1563 { if b { - yynn1544++ + yynn1563++ } } - r.EncodeMapStart(yynn1544) - yynn1544 = 0 + r.EncodeMapStart(yynn1563) + yynn1563 = 0 } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[0] { - yym1546 := z.EncBinary() - _ = yym1546 + if yyq1563[0] { + yym1565 := z.EncBinary() + _ = yym1565 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -20803,23 +21069,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1544[0] { + if yyq1563[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1547 := z.EncBinary() - _ = yym1547 + yym1566 := z.EncBinary() + _ = yym1566 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[1] { - yym1549 := z.EncBinary() - _ = yym1549 + if yyq1563[1] { + yym1568 := z.EncBinary() + _ = yym1568 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -20828,23 +21094,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1544[1] { + if yyq1563[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1550 := z.EncBinary() - _ = yym1550 + yym1569 := z.EncBinary() + _ = yym1569 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[2] { - yym1552 := z.EncBinary() - _ = yym1552 + if yyq1563[2] { + yym1571 := z.EncBinary() + _ = yym1571 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -20853,21 +21119,21 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1544[2] { + if yyq1563[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1553 := z.EncBinary() - _ = yym1553 + yym1572 := z.EncBinary() + _ = yym1572 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[3] { + if yyq1563[3] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -20877,7 +21143,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1544[3] { + if yyq1563[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20888,84 +21154,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[4] { + if yyq1563[4] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1556 := *x.RunAsUser - yym1557 := z.EncBinary() - _ = yym1557 + yy1575 := *x.RunAsUser + yym1576 := z.EncBinary() + _ = yym1576 if false { } else { - r.EncodeInt(int64(yy1556)) + r.EncodeInt(int64(yy1575)) } } } else { r.EncodeNil() } } else { - if yyq1544[4] { + if yyq1563[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1558 := *x.RunAsUser - yym1559 := z.EncBinary() - _ = yym1559 + yy1577 := *x.RunAsUser + yym1578 := z.EncBinary() + _ = yym1578 if false { } else { - r.EncodeInt(int64(yy1558)) + r.EncodeInt(int64(yy1577)) } } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[5] { + if yyq1563[5] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1561 := *x.RunAsNonRoot - yym1562 := z.EncBinary() - _ = yym1562 + yy1580 := *x.RunAsNonRoot + yym1581 := z.EncBinary() + _ = yym1581 if false { } else { - r.EncodeBool(bool(yy1561)) + r.EncodeBool(bool(yy1580)) } } } else { r.EncodeNil() } } else { - if yyq1544[5] { + if yyq1563[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1563 := *x.RunAsNonRoot - yym1564 := z.EncBinary() - _ = yym1564 + yy1582 := *x.RunAsNonRoot + yym1583 := z.EncBinary() + _ = yym1583 if false { } else { - r.EncodeBool(bool(yy1563)) + r.EncodeBool(bool(yy1582)) } } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[6] { + if yyq1563[6] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1566 := z.EncBinary() - _ = yym1566 + yym1585 := z.EncBinary() + _ = yym1585 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20975,15 +21241,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1544[6] { + if yyq1563[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1567 := z.EncBinary() - _ = yym1567 + yym1586 := z.EncBinary() + _ = yym1586 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20991,42 +21257,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1544[7] { + if yyq1563[7] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1569 := *x.FSGroup - yym1570 := z.EncBinary() - _ = yym1570 + yy1588 := *x.FSGroup + yym1589 := z.EncBinary() + _ = yym1589 if false { } else { - r.EncodeInt(int64(yy1569)) + r.EncodeInt(int64(yy1588)) } } } else { r.EncodeNil() } } else { - if yyq1544[7] { + if yyq1563[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1571 := *x.FSGroup - yym1572 := z.EncBinary() - _ = yym1572 + yy1590 := *x.FSGroup + yym1591 := z.EncBinary() + _ = yym1591 if false { } else { - r.EncodeInt(int64(yy1571)) + r.EncodeInt(int64(yy1590)) } } } } - if yyr1544 || yy2arr1544 { + if yyr1563 || yy2arr1563 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21039,25 +21305,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1573 := z.DecBinary() - _ = yym1573 + yym1592 := z.DecBinary() + _ = yym1592 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1574 := r.ContainerType() - if yyct1574 == codecSelferValueTypeMap1234 { - yyl1574 := r.ReadMapStart() - if yyl1574 == 0 { + yyct1593 := r.ContainerType() + if yyct1593 == codecSelferValueTypeMap1234 { + yyl1593 := r.ReadMapStart() + if yyl1593 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1574, d) + x.codecDecodeSelfFromMap(yyl1593, d) } - } else if yyct1574 == codecSelferValueTypeArray1234 { - yyl1574 := r.ReadArrayStart() - if yyl1574 == 0 { + } else if yyct1593 == codecSelferValueTypeArray1234 { + yyl1593 := r.ReadArrayStart() + if yyl1593 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1574, d) + x.codecDecodeSelfFromArray(yyl1593, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21069,12 +21335,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1575Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1575Slc - var yyhl1575 bool = l >= 0 - for yyj1575 := 0; ; yyj1575++ { - if yyhl1575 { - if yyj1575 >= l { + var yys1594Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1594Slc + var yyhl1594 bool = l >= 0 + for yyj1594 := 0; ; yyj1594++ { + if yyhl1594 { + if yyj1594 >= l { break } } else { @@ -21083,10 +21349,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1575Slc = r.DecodeBytes(yys1575Slc, true, true) - yys1575 := string(yys1575Slc) + yys1594Slc = r.DecodeBytes(yys1594Slc, true, true) + yys1594 := string(yys1594Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1575 { + switch yys1594 { case "hostNetwork": if r.TryDecodeAsNil() { x.HostNetwork = false @@ -21125,8 +21391,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1581 := z.DecBinary() - _ = yym1581 + yym1600 := z.DecBinary() + _ = yym1600 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -21141,8 +21407,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1583 := z.DecBinary() - _ = yym1583 + yym1602 := z.DecBinary() + _ = yym1602 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -21152,12 +21418,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1584 := &x.SupplementalGroups - yym1585 := z.DecBinary() - _ = yym1585 + yyv1603 := &x.SupplementalGroups + yym1604 := z.DecBinary() + _ = yym1604 if false { } else { - z.F.DecSliceInt64X(yyv1584, false, d) + z.F.DecSliceInt64X(yyv1603, false, d) } } case "fsGroup": @@ -21169,17 +21435,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1587 := z.DecBinary() - _ = yym1587 + yym1606 := z.DecBinary() + _ = yym1606 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1575) - } // end switch yys1575 - } // end for yyj1575 + z.DecStructFieldNotFound(-1, yys1594) + } // end switch yys1594 + } // end for yyj1594 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21187,16 +21453,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1588 int - var yyb1588 bool - var yyhl1588 bool = l >= 0 - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + var yyj1607 int + var yyb1607 bool + var yyhl1607 bool = l >= 0 + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21206,13 +21472,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21222,13 +21488,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostPID = bool(r.DecodeBool()) } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21238,13 +21504,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21259,13 +21525,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21278,20 +21544,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1594 := z.DecBinary() - _ = yym1594 + yym1613 := z.DecBinary() + _ = yym1613 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21304,20 +21570,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1596 := z.DecBinary() - _ = yym1596 + yym1615 := z.DecBinary() + _ = yym1615 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21325,21 +21591,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1597 := &x.SupplementalGroups - yym1598 := z.DecBinary() - _ = yym1598 + yyv1616 := &x.SupplementalGroups + yym1617 := z.DecBinary() + _ = yym1617 if false { } else { - z.F.DecSliceInt64X(yyv1597, false, d) + z.F.DecSliceInt64X(yyv1616, false, d) } } - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21352,25 +21618,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1600 := z.DecBinary() - _ = yym1600 + yym1619 := z.DecBinary() + _ = yym1619 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1588++ - if yyhl1588 { - yyb1588 = yyj1588 > l + yyj1607++ + if yyhl1607 { + yyb1607 = yyj1607 > l } else { - yyb1588 = r.CheckBreak() + yyb1607 = r.CheckBreak() } - if yyb1588 { + if yyb1607 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1588-1, "") + z.DecStructFieldNotFound(yyj1607-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21382,262 +21648,262 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1601 := z.EncBinary() - _ = yym1601 + yym1620 := z.EncBinary() + _ = yym1620 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1602 := !z.EncBinary() - yy2arr1602 := z.EncBasicHandle().StructToArray - var yyq1602 [8]bool - _, _, _ = yysep1602, yyq1602, yy2arr1602 - const yyr1602 bool = false - yyq1602[0] = x.Phase != "" - yyq1602[1] = len(x.Conditions) != 0 - yyq1602[2] = x.Message != "" - yyq1602[3] = x.Reason != "" - yyq1602[4] = x.HostIP != "" - yyq1602[5] = x.PodIP != "" - yyq1602[6] = x.StartTime != nil - yyq1602[7] = len(x.ContainerStatuses) != 0 - var yynn1602 int - if yyr1602 || yy2arr1602 { + yysep1621 := !z.EncBinary() + yy2arr1621 := z.EncBasicHandle().StructToArray + var yyq1621 [8]bool + _, _, _ = yysep1621, yyq1621, yy2arr1621 + const yyr1621 bool = false + yyq1621[0] = x.Phase != "" + yyq1621[1] = len(x.Conditions) != 0 + yyq1621[2] = x.Message != "" + yyq1621[3] = x.Reason != "" + yyq1621[4] = x.HostIP != "" + yyq1621[5] = x.PodIP != "" + yyq1621[6] = x.StartTime != nil + yyq1621[7] = len(x.ContainerStatuses) != 0 + var yynn1621 int + if yyr1621 || yy2arr1621 { r.EncodeArrayStart(8) } else { - yynn1602 = 0 - for _, b := range yyq1602 { + yynn1621 = 0 + for _, b := range yyq1621 { if b { - yynn1602++ + yynn1621++ } } - r.EncodeMapStart(yynn1602) - yynn1602 = 0 + r.EncodeMapStart(yynn1621) + yynn1621 = 0 } - if yyr1602 || yy2arr1602 { + if yyr1621 || yy2arr1621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[0] { + if yyq1621[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1602[0] { + if yyq1621[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1602 || yy2arr1602 { + if yyr1621 || yy2arr1621 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[1] { + if yyq1621[1] { if x.Conditions == nil { r.EncodeNil() - } else { - yym1605 := z.EncBinary() - _ = yym1605 - if false { - } else { - h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1602[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym1606 := z.EncBinary() - _ = yym1606 - if false { - } else { - h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) - } - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[2] { - yym1608 := z.EncBinary() - _ = yym1608 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1602[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1609 := z.EncBinary() - _ = yym1609 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[3] { - yym1611 := z.EncBinary() - _ = yym1611 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1602[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1612 := z.EncBinary() - _ = yym1612 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[4] { - yym1614 := z.EncBinary() - _ = yym1614 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1602[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostIP")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1615 := z.EncBinary() - _ = yym1615 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[5] { - yym1617 := z.EncBinary() - _ = yym1617 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1602[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podIP")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1618 := z.EncBinary() - _ = yym1618 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[6] { - if x.StartTime == nil { - r.EncodeNil() - } else { - yym1620 := z.EncBinary() - _ = yym1620 - if false { - } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1620 { - z.EncBinaryMarshal(x.StartTime) - } else if !yym1620 && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartTime) - } else { - z.EncFallback(x.StartTime) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1602[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startTime")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.StartTime == nil { - r.EncodeNil() - } else { - yym1621 := z.EncBinary() - _ = yym1621 - if false { - } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1621 { - z.EncBinaryMarshal(x.StartTime) - } else if !yym1621 && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartTime) - } else { - z.EncFallback(x.StartTime) - } - } - } - } - if yyr1602 || yy2arr1602 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1602[7] { - if x.ContainerStatuses == nil { - r.EncodeNil() - } else { - yym1623 := z.EncBinary() - _ = yym1623 - if false { - } else { - h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1602[7] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ContainerStatuses == nil { - r.EncodeNil() } else { yym1624 := z.EncBinary() _ = yym1624 if false { + } else { + h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1621[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym1625 := z.EncBinary() + _ = yym1625 + if false { + } else { + h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) + } + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[2] { + yym1627 := z.EncBinary() + _ = yym1627 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1621[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1628 := z.EncBinary() + _ = yym1628 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[3] { + yym1630 := z.EncBinary() + _ = yym1630 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1621[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1631 := z.EncBinary() + _ = yym1631 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[4] { + yym1633 := z.EncBinary() + _ = yym1633 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1621[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostIP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1634 := z.EncBinary() + _ = yym1634 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[5] { + yym1636 := z.EncBinary() + _ = yym1636 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1621[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podIP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1637 := z.EncBinary() + _ = yym1637 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[6] { + if x.StartTime == nil { + r.EncodeNil() + } else { + yym1639 := z.EncBinary() + _ = yym1639 + if false { + } else if z.HasExtensions() && z.EncExt(x.StartTime) { + } else if yym1639 { + z.EncBinaryMarshal(x.StartTime) + } else if !yym1639 && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartTime) + } else { + z.EncFallback(x.StartTime) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1621[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("startTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.StartTime == nil { + r.EncodeNil() + } else { + yym1640 := z.EncBinary() + _ = yym1640 + if false { + } else if z.HasExtensions() && z.EncExt(x.StartTime) { + } else if yym1640 { + z.EncBinaryMarshal(x.StartTime) + } else if !yym1640 && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartTime) + } else { + z.EncFallback(x.StartTime) + } + } + } + } + if yyr1621 || yy2arr1621 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1621[7] { + if x.ContainerStatuses == nil { + r.EncodeNil() + } else { + yym1642 := z.EncBinary() + _ = yym1642 + if false { + } else { + h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1621[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ContainerStatuses == nil { + r.EncodeNil() + } else { + yym1643 := z.EncBinary() + _ = yym1643 + if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) } } } } - if yyr1602 || yy2arr1602 { + if yyr1621 || yy2arr1621 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21650,25 +21916,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1625 := z.DecBinary() - _ = yym1625 + yym1644 := z.DecBinary() + _ = yym1644 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1626 := r.ContainerType() - if yyct1626 == codecSelferValueTypeMap1234 { - yyl1626 := r.ReadMapStart() - if yyl1626 == 0 { + yyct1645 := r.ContainerType() + if yyct1645 == codecSelferValueTypeMap1234 { + yyl1645 := r.ReadMapStart() + if yyl1645 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1626, d) + x.codecDecodeSelfFromMap(yyl1645, d) } - } else if yyct1626 == codecSelferValueTypeArray1234 { - yyl1626 := r.ReadArrayStart() - if yyl1626 == 0 { + } else if yyct1645 == codecSelferValueTypeArray1234 { + yyl1645 := r.ReadArrayStart() + if yyl1645 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1626, d) + x.codecDecodeSelfFromArray(yyl1645, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21680,12 +21946,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1627Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1627Slc - var yyhl1627 bool = l >= 0 - for yyj1627 := 0; ; yyj1627++ { - if yyhl1627 { - if yyj1627 >= l { + var yys1646Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1646Slc + var yyhl1646 bool = l >= 0 + for yyj1646 := 0; ; yyj1646++ { + if yyhl1646 { + if yyj1646 >= l { break } } else { @@ -21694,10 +21960,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1627Slc = r.DecodeBytes(yys1627Slc, true, true) - yys1627 := string(yys1627Slc) + yys1646Slc = r.DecodeBytes(yys1646Slc, true, true) + yys1646 := string(yys1646Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1627 { + switch yys1646 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -21708,12 +21974,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1629 := &x.Conditions - yym1630 := z.DecBinary() - _ = yym1630 + yyv1648 := &x.Conditions + yym1649 := z.DecBinary() + _ = yym1649 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1629), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1648), d) } } case "message": @@ -21749,13 +22015,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1636 := z.DecBinary() - _ = yym1636 + yym1655 := z.DecBinary() + _ = yym1655 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1636 { + } else if yym1655 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1636 && z.IsJSONHandle() { + } else if !yym1655 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -21765,18 +22031,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1637 := &x.ContainerStatuses - yym1638 := z.DecBinary() - _ = yym1638 + yyv1656 := &x.ContainerStatuses + yym1657 := z.DecBinary() + _ = yym1657 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1637), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1656), d) } } default: - z.DecStructFieldNotFound(-1, yys1627) - } // end switch yys1627 - } // end for yyj1627 + z.DecStructFieldNotFound(-1, yys1646) + } // end switch yys1646 + } // end for yyj1646 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21784,16 +22050,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1639 int - var yyb1639 bool - var yyhl1639 bool = l >= 0 - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + var yyj1658 int + var yyb1658 bool + var yyhl1658 bool = l >= 0 + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21803,13 +22069,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21817,21 +22083,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1641 := &x.Conditions - yym1642 := z.DecBinary() - _ = yym1642 + yyv1660 := &x.Conditions + yym1661 := z.DecBinary() + _ = yym1661 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1641), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1660), d) } } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21841,13 +22107,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21857,13 +22123,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21873,13 +22139,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21889,13 +22155,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21908,25 +22174,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1648 := z.DecBinary() - _ = yym1648 + yym1667 := z.DecBinary() + _ = yym1667 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1648 { + } else if yym1667 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1648 && z.IsJSONHandle() { + } else if !yym1667 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21934,26 +22200,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1649 := &x.ContainerStatuses - yym1650 := z.DecBinary() - _ = yym1650 + yyv1668 := &x.ContainerStatuses + yym1669 := z.DecBinary() + _ = yym1669 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1649), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1668), d) } } for { - yyj1639++ - if yyhl1639 { - yyb1639 = yyj1639 > l + yyj1658++ + if yyhl1658 { + yyb1658 = yyj1658 > l } else { - yyb1639 = r.CheckBreak() + yyb1658 = r.CheckBreak() } - if yyb1639 { + if yyb1658 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1639-1, "") + z.DecStructFieldNotFound(yyj1658-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21965,38 +22231,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1651 := z.EncBinary() - _ = yym1651 + yym1670 := z.EncBinary() + _ = yym1670 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1652 := !z.EncBinary() - yy2arr1652 := z.EncBasicHandle().StructToArray - var yyq1652 [4]bool - _, _, _ = yysep1652, yyq1652, yy2arr1652 - const yyr1652 bool = false - yyq1652[0] = x.Kind != "" - yyq1652[1] = x.APIVersion != "" - yyq1652[2] = true - yyq1652[3] = true - var yynn1652 int - if yyr1652 || yy2arr1652 { + yysep1671 := !z.EncBinary() + yy2arr1671 := z.EncBasicHandle().StructToArray + var yyq1671 [4]bool + _, _, _ = yysep1671, yyq1671, yy2arr1671 + const yyr1671 bool = false + yyq1671[0] = x.Kind != "" + yyq1671[1] = x.APIVersion != "" + yyq1671[2] = true + yyq1671[3] = true + var yynn1671 int + if yyr1671 || yy2arr1671 { r.EncodeArrayStart(4) } else { - yynn1652 = 0 - for _, b := range yyq1652 { + yynn1671 = 0 + for _, b := range yyq1671 { if b { - yynn1652++ + yynn1671++ } } - r.EncodeMapStart(yynn1652) - yynn1652 = 0 + r.EncodeMapStart(yynn1671) + yynn1671 = 0 } - if yyr1652 || yy2arr1652 { + if yyr1671 || yy2arr1671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1652[0] { - yym1654 := z.EncBinary() - _ = yym1654 + if yyq1671[0] { + yym1673 := z.EncBinary() + _ = yym1673 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22005,23 +22271,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1652[0] { + if yyq1671[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1655 := z.EncBinary() - _ = yym1655 + yym1674 := z.EncBinary() + _ = yym1674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1652 || yy2arr1652 { + if yyr1671 || yy2arr1671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1652[1] { - yym1657 := z.EncBinary() - _ = yym1657 + if yyq1671[1] { + yym1676 := z.EncBinary() + _ = yym1676 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22030,53 +22296,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1652[1] { + if yyq1671[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1658 := z.EncBinary() - _ = yym1658 + yym1677 := z.EncBinary() + _ = yym1677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1652 || yy2arr1652 { + if yyr1671 || yy2arr1671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1652[2] { - yy1660 := &x.ObjectMeta - yy1660.CodecEncodeSelf(e) + if yyq1671[2] { + yy1679 := &x.ObjectMeta + yy1679.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1652[2] { + if yyq1671[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1661 := &x.ObjectMeta - yy1661.CodecEncodeSelf(e) + yy1680 := &x.ObjectMeta + yy1680.CodecEncodeSelf(e) } } - if yyr1652 || yy2arr1652 { + if yyr1671 || yy2arr1671 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1652[3] { - yy1663 := &x.Status - yy1663.CodecEncodeSelf(e) + if yyq1671[3] { + yy1682 := &x.Status + yy1682.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1652[3] { + if yyq1671[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1664 := &x.Status - yy1664.CodecEncodeSelf(e) + yy1683 := &x.Status + yy1683.CodecEncodeSelf(e) } } - if yyr1652 || yy2arr1652 { + if yyr1671 || yy2arr1671 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22089,25 +22355,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1665 := z.DecBinary() - _ = yym1665 + yym1684 := z.DecBinary() + _ = yym1684 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1666 := r.ContainerType() - if yyct1666 == codecSelferValueTypeMap1234 { - yyl1666 := r.ReadMapStart() - if yyl1666 == 0 { + yyct1685 := r.ContainerType() + if yyct1685 == codecSelferValueTypeMap1234 { + yyl1685 := r.ReadMapStart() + if yyl1685 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1666, d) + x.codecDecodeSelfFromMap(yyl1685, d) } - } else if yyct1666 == codecSelferValueTypeArray1234 { - yyl1666 := r.ReadArrayStart() - if yyl1666 == 0 { + } else if yyct1685 == codecSelferValueTypeArray1234 { + yyl1685 := r.ReadArrayStart() + if yyl1685 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1666, d) + x.codecDecodeSelfFromArray(yyl1685, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22119,12 +22385,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1667Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1667Slc - var yyhl1667 bool = l >= 0 - for yyj1667 := 0; ; yyj1667++ { - if yyhl1667 { - if yyj1667 >= l { + var yys1686Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1686Slc + var yyhl1686 bool = l >= 0 + for yyj1686 := 0; ; yyj1686++ { + if yyhl1686 { + if yyj1686 >= l { break } } else { @@ -22133,10 +22399,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1667Slc = r.DecodeBytes(yys1667Slc, true, true) - yys1667 := string(yys1667Slc) + yys1686Slc = r.DecodeBytes(yys1686Slc, true, true) + yys1686 := string(yys1686Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1667 { + switch yys1686 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22153,20 +22419,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1670 := &x.ObjectMeta - yyv1670.CodecDecodeSelf(d) + yyv1689 := &x.ObjectMeta + yyv1689.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1671 := &x.Status - yyv1671.CodecDecodeSelf(d) + yyv1690 := &x.Status + yyv1690.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1667) - } // end switch yys1667 - } // end for yyj1667 + z.DecStructFieldNotFound(-1, yys1686) + } // end switch yys1686 + } // end for yyj1686 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22174,16 +22440,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1672 int - var yyb1672 bool - var yyhl1672 bool = l >= 0 - yyj1672++ - if yyhl1672 { - yyb1672 = yyj1672 > l + var yyj1691 int + var yyb1691 bool + var yyhl1691 bool = l >= 0 + yyj1691++ + if yyhl1691 { + yyb1691 = yyj1691 > l } else { - yyb1672 = r.CheckBreak() + yyb1691 = r.CheckBreak() } - if yyb1672 { + if yyb1691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22193,13 +22459,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1672++ - if yyhl1672 { - yyb1672 = yyj1672 > l + yyj1691++ + if yyhl1691 { + yyb1691 = yyj1691 > l } else { - yyb1672 = r.CheckBreak() + yyb1691 = r.CheckBreak() } - if yyb1672 { + if yyb1691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22209,13 +22475,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1672++ - if yyhl1672 { - yyb1672 = yyj1672 > l + yyj1691++ + if yyhl1691 { + yyb1691 = yyj1691 > l } else { - yyb1672 = r.CheckBreak() + yyb1691 = r.CheckBreak() } - if yyb1672 { + if yyb1691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22223,16 +22489,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1675 := &x.ObjectMeta - yyv1675.CodecDecodeSelf(d) + yyv1694 := &x.ObjectMeta + yyv1694.CodecDecodeSelf(d) } - yyj1672++ - if yyhl1672 { - yyb1672 = yyj1672 > l + yyj1691++ + if yyhl1691 { + yyb1691 = yyj1691 > l } else { - yyb1672 = r.CheckBreak() + yyb1691 = r.CheckBreak() } - if yyb1672 { + if yyb1691 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22240,21 +22506,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1676 := &x.Status - yyv1676.CodecDecodeSelf(d) + yyv1695 := &x.Status + yyv1695.CodecDecodeSelf(d) } for { - yyj1672++ - if yyhl1672 { - yyb1672 = yyj1672 > l + yyj1691++ + if yyhl1691 { + yyb1691 = yyj1691 > l } else { - yyb1672 = r.CheckBreak() + yyb1691 = r.CheckBreak() } - if yyb1672 { + if yyb1691 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1672-1, "") + z.DecStructFieldNotFound(yyj1691-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22266,39 +22532,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1677 := z.EncBinary() - _ = yym1677 + yym1696 := z.EncBinary() + _ = yym1696 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1678 := !z.EncBinary() - yy2arr1678 := z.EncBasicHandle().StructToArray - var yyq1678 [5]bool - _, _, _ = yysep1678, yyq1678, yy2arr1678 - const yyr1678 bool = false - yyq1678[0] = x.Kind != "" - yyq1678[1] = x.APIVersion != "" - yyq1678[2] = true - yyq1678[3] = true - yyq1678[4] = true - var yynn1678 int - if yyr1678 || yy2arr1678 { + yysep1697 := !z.EncBinary() + yy2arr1697 := z.EncBasicHandle().StructToArray + var yyq1697 [5]bool + _, _, _ = yysep1697, yyq1697, yy2arr1697 + const yyr1697 bool = false + yyq1697[0] = x.Kind != "" + yyq1697[1] = x.APIVersion != "" + yyq1697[2] = true + yyq1697[3] = true + yyq1697[4] = true + var yynn1697 int + if yyr1697 || yy2arr1697 { r.EncodeArrayStart(5) } else { - yynn1678 = 0 - for _, b := range yyq1678 { + yynn1697 = 0 + for _, b := range yyq1697 { if b { - yynn1678++ + yynn1697++ } } - r.EncodeMapStart(yynn1678) - yynn1678 = 0 + r.EncodeMapStart(yynn1697) + yynn1697 = 0 } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1678[0] { - yym1680 := z.EncBinary() - _ = yym1680 + if yyq1697[0] { + yym1699 := z.EncBinary() + _ = yym1699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22307,23 +22573,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1678[0] { + if yyq1697[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1681 := z.EncBinary() - _ = yym1681 + yym1700 := z.EncBinary() + _ = yym1700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1678[1] { - yym1683 := z.EncBinary() - _ = yym1683 + if yyq1697[1] { + yym1702 := z.EncBinary() + _ = yym1702 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22332,70 +22598,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1678[1] { + if yyq1697[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1684 := z.EncBinary() - _ = yym1684 + yym1703 := z.EncBinary() + _ = yym1703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1678[2] { - yy1686 := &x.ObjectMeta - yy1686.CodecEncodeSelf(e) + if yyq1697[2] { + yy1705 := &x.ObjectMeta + yy1705.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1678[2] { + if yyq1697[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1687 := &x.ObjectMeta - yy1687.CodecEncodeSelf(e) + yy1706 := &x.ObjectMeta + yy1706.CodecEncodeSelf(e) } } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1678[3] { - yy1689 := &x.Spec - yy1689.CodecEncodeSelf(e) + if yyq1697[3] { + yy1708 := &x.Spec + yy1708.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1678[3] { + if yyq1697[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1690 := &x.Spec - yy1690.CodecEncodeSelf(e) + yy1709 := &x.Spec + yy1709.CodecEncodeSelf(e) } } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1678[4] { - yy1692 := &x.Status - yy1692.CodecEncodeSelf(e) + if yyq1697[4] { + yy1711 := &x.Status + yy1711.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1678[4] { + if yyq1697[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1693 := &x.Status - yy1693.CodecEncodeSelf(e) + yy1712 := &x.Status + yy1712.CodecEncodeSelf(e) } } - if yyr1678 || yy2arr1678 { + if yyr1697 || yy2arr1697 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22408,25 +22674,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1694 := z.DecBinary() - _ = yym1694 + yym1713 := z.DecBinary() + _ = yym1713 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1695 := r.ContainerType() - if yyct1695 == codecSelferValueTypeMap1234 { - yyl1695 := r.ReadMapStart() - if yyl1695 == 0 { + yyct1714 := r.ContainerType() + if yyct1714 == codecSelferValueTypeMap1234 { + yyl1714 := r.ReadMapStart() + if yyl1714 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1695, d) + x.codecDecodeSelfFromMap(yyl1714, d) } - } else if yyct1695 == codecSelferValueTypeArray1234 { - yyl1695 := r.ReadArrayStart() - if yyl1695 == 0 { + } else if yyct1714 == codecSelferValueTypeArray1234 { + yyl1714 := r.ReadArrayStart() + if yyl1714 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1695, d) + x.codecDecodeSelfFromArray(yyl1714, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22438,12 +22704,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1696Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1696Slc - var yyhl1696 bool = l >= 0 - for yyj1696 := 0; ; yyj1696++ { - if yyhl1696 { - if yyj1696 >= l { + var yys1715Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1715Slc + var yyhl1715 bool = l >= 0 + for yyj1715 := 0; ; yyj1715++ { + if yyhl1715 { + if yyj1715 >= l { break } } else { @@ -22452,10 +22718,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1696Slc = r.DecodeBytes(yys1696Slc, true, true) - yys1696 := string(yys1696Slc) + yys1715Slc = r.DecodeBytes(yys1715Slc, true, true) + yys1715 := string(yys1715Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1696 { + switch yys1715 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22472,285 +22738,31 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1699 := &x.ObjectMeta - yyv1699.CodecDecodeSelf(d) + yyv1718 := &x.ObjectMeta + yyv1718.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1700 := &x.Spec - yyv1700.CodecDecodeSelf(d) + yyv1719 := &x.Spec + yyv1719.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1701 := &x.Status - yyv1701.CodecDecodeSelf(d) + yyv1720 := &x.Status + yyv1720.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1696) - } // end switch yys1696 - } // end for yyj1696 + z.DecStructFieldNotFound(-1, yys1715) + } // end switch yys1715 + } // end for yyj1715 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1702 int - var yyb1702 bool - var yyhl1702 bool = l >= 0 - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv1705 := &x.ObjectMeta - yyv1705.CodecDecodeSelf(d) - } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = PodSpec{} - } else { - yyv1706 := &x.Spec - yyv1706.CodecDecodeSelf(d) - } - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = PodStatus{} - } else { - yyv1707 := &x.Status - yyv1707.CodecDecodeSelf(d) - } - for { - yyj1702++ - if yyhl1702 { - yyb1702 = yyj1702 > l - } else { - yyb1702 = r.CheckBreak() - } - if yyb1702 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1702-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1708 := z.EncBinary() - _ = yym1708 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1709 := !z.EncBinary() - yy2arr1709 := z.EncBasicHandle().StructToArray - var yyq1709 [2]bool - _, _, _ = yysep1709, yyq1709, yy2arr1709 - const yyr1709 bool = false - yyq1709[0] = true - yyq1709[1] = true - var yynn1709 int - if yyr1709 || yy2arr1709 { - r.EncodeArrayStart(2) - } else { - yynn1709 = 0 - for _, b := range yyq1709 { - if b { - yynn1709++ - } - } - r.EncodeMapStart(yynn1709) - yynn1709 = 0 - } - if yyr1709 || yy2arr1709 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1709[0] { - yy1711 := &x.ObjectMeta - yy1711.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq1709[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1712 := &x.ObjectMeta - yy1712.CodecEncodeSelf(e) - } - } - if yyr1709 || yy2arr1709 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1709[1] { - yy1714 := &x.Spec - yy1714.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq1709[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1715 := &x.Spec - yy1715.CodecEncodeSelf(e) - } - } - if yyr1709 || yy2arr1709 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1716 := z.DecBinary() - _ = yym1716 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1717 := r.ContainerType() - if yyct1717 == codecSelferValueTypeMap1234 { - yyl1717 := r.ReadMapStart() - if yyl1717 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1717, d) - } - } else if yyct1717 == codecSelferValueTypeArray1234 { - yyl1717 := r.ReadArrayStart() - if yyl1717 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1717, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1718Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1718Slc - var yyhl1718 bool = l >= 0 - for yyj1718 := 0; ; yyj1718++ { - if yyhl1718 { - if yyj1718 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1718Slc = r.DecodeBytes(yys1718Slc, true, true) - yys1718 := string(yys1718Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1718 { - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv1719 := &x.ObjectMeta - yyv1719.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = PodSpec{} - } else { - yyv1720 := &x.Spec - yyv1720.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys1718) - } // end switch yys1718 - } // end for yyj1718 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -22768,11 +22780,43 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj1721++ + if yyhl1721 { + yyb1721 = yyj1721 > l + } else { + yyb1721 = r.CheckBreak() + } + if yyb1721 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj1721++ + if yyhl1721 { + yyb1721 = yyj1721 > l + } else { + yyb1721 = r.CheckBreak() + } + if yyb1721 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1722 := &x.ObjectMeta - yyv1722.CodecDecodeSelf(d) + yyv1724 := &x.ObjectMeta + yyv1724.CodecDecodeSelf(d) } yyj1721++ if yyhl1721 { @@ -22788,8 +22832,25 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1723 := &x.Spec - yyv1723.CodecDecodeSelf(d) + yyv1725 := &x.Spec + yyv1725.CodecDecodeSelf(d) + } + yyj1721++ + if yyhl1721 { + yyb1721 = yyj1721 > l + } else { + yyb1721 = r.CheckBreak() + } + if yyb1721 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = PodStatus{} + } else { + yyv1726 := &x.Status + yyv1726.CodecDecodeSelf(d) } for { yyj1721++ @@ -22807,6 +22868,211 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1727 := z.EncBinary() + _ = yym1727 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1728 := !z.EncBinary() + yy2arr1728 := z.EncBasicHandle().StructToArray + var yyq1728 [2]bool + _, _, _ = yysep1728, yyq1728, yy2arr1728 + const yyr1728 bool = false + yyq1728[0] = true + yyq1728[1] = true + var yynn1728 int + if yyr1728 || yy2arr1728 { + r.EncodeArrayStart(2) + } else { + yynn1728 = 0 + for _, b := range yyq1728 { + if b { + yynn1728++ + } + } + r.EncodeMapStart(yynn1728) + yynn1728 = 0 + } + if yyr1728 || yy2arr1728 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1728[0] { + yy1730 := &x.ObjectMeta + yy1730.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq1728[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1731 := &x.ObjectMeta + yy1731.CodecEncodeSelf(e) + } + } + if yyr1728 || yy2arr1728 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1728[1] { + yy1733 := &x.Spec + yy1733.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq1728[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1734 := &x.Spec + yy1734.CodecEncodeSelf(e) + } + } + if yyr1728 || yy2arr1728 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1735 := z.DecBinary() + _ = yym1735 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1736 := r.ContainerType() + if yyct1736 == codecSelferValueTypeMap1234 { + yyl1736 := r.ReadMapStart() + if yyl1736 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1736, d) + } + } else if yyct1736 == codecSelferValueTypeArray1234 { + yyl1736 := r.ReadArrayStart() + if yyl1736 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1736, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1737Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1737Slc + var yyhl1737 bool = l >= 0 + for yyj1737 := 0; ; yyj1737++ { + if yyhl1737 { + if yyj1737 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1737Slc = r.DecodeBytes(yys1737Slc, true, true) + yys1737 := string(yys1737Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1737 { + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv1738 := &x.ObjectMeta + yyv1738.CodecDecodeSelf(d) + } + case "spec": + if r.TryDecodeAsNil() { + x.Spec = PodSpec{} + } else { + yyv1739 := &x.Spec + yyv1739.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys1737) + } // end switch yys1737 + } // end for yyj1737 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1740 int + var yyb1740 bool + var yyhl1740 bool = l >= 0 + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l + } else { + yyb1740 = r.CheckBreak() + } + if yyb1740 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv1741 := &x.ObjectMeta + yyv1741.CodecDecodeSelf(d) + } + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l + } else { + yyb1740 = r.CheckBreak() + } + if yyb1740 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = PodSpec{} + } else { + yyv1742 := &x.Spec + yyv1742.CodecDecodeSelf(d) + } + for { + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l + } else { + yyb1740 = r.CheckBreak() + } + if yyb1740 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1740-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -22814,38 +23080,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1724 := z.EncBinary() - _ = yym1724 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1725 := !z.EncBinary() - yy2arr1725 := z.EncBasicHandle().StructToArray - var yyq1725 [4]bool - _, _, _ = yysep1725, yyq1725, yy2arr1725 - const yyr1725 bool = false - yyq1725[0] = x.Kind != "" - yyq1725[1] = x.APIVersion != "" - yyq1725[2] = true - yyq1725[3] = true - var yynn1725 int - if yyr1725 || yy2arr1725 { + yysep1744 := !z.EncBinary() + yy2arr1744 := z.EncBasicHandle().StructToArray + var yyq1744 [4]bool + _, _, _ = yysep1744, yyq1744, yy2arr1744 + const yyr1744 bool = false + yyq1744[0] = x.Kind != "" + yyq1744[1] = x.APIVersion != "" + yyq1744[2] = true + yyq1744[3] = true + var yynn1744 int + if yyr1744 || yy2arr1744 { r.EncodeArrayStart(4) } else { - yynn1725 = 0 - for _, b := range yyq1725 { + yynn1744 = 0 + for _, b := range yyq1744 { if b { - yynn1725++ + yynn1744++ } } - r.EncodeMapStart(yynn1725) - yynn1725 = 0 + r.EncodeMapStart(yynn1744) + yynn1744 = 0 } - if yyr1725 || yy2arr1725 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[0] { - yym1727 := z.EncBinary() - _ = yym1727 + if yyq1744[0] { + yym1746 := z.EncBinary() + _ = yym1746 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22854,23 +23120,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1725[0] { + if yyq1744[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1728 := z.EncBinary() - _ = yym1728 + yym1747 := z.EncBinary() + _ = yym1747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1725 || yy2arr1725 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[1] { - yym1730 := z.EncBinary() - _ = yym1730 + if yyq1744[1] { + yym1749 := z.EncBinary() + _ = yym1749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22879,53 +23145,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1725[1] { + if yyq1744[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1731 := z.EncBinary() - _ = yym1731 + yym1750 := z.EncBinary() + _ = yym1750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1725 || yy2arr1725 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[2] { - yy1733 := &x.ObjectMeta - yy1733.CodecEncodeSelf(e) + if yyq1744[2] { + yy1752 := &x.ObjectMeta + yy1752.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1725[2] { + if yyq1744[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1734 := &x.ObjectMeta - yy1734.CodecEncodeSelf(e) + yy1753 := &x.ObjectMeta + yy1753.CodecEncodeSelf(e) } } - if yyr1725 || yy2arr1725 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1725[3] { - yy1736 := &x.Template - yy1736.CodecEncodeSelf(e) + if yyq1744[3] { + yy1755 := &x.Template + yy1755.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1725[3] { + if yyq1744[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1737 := &x.Template - yy1737.CodecEncodeSelf(e) + yy1756 := &x.Template + yy1756.CodecEncodeSelf(e) } } - if yyr1725 || yy2arr1725 { + if yyr1744 || yy2arr1744 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22938,25 +23204,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1738 := z.DecBinary() - _ = yym1738 + yym1757 := z.DecBinary() + _ = yym1757 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1739 := r.ContainerType() - if yyct1739 == codecSelferValueTypeMap1234 { - yyl1739 := r.ReadMapStart() - if yyl1739 == 0 { + yyct1758 := r.ContainerType() + if yyct1758 == codecSelferValueTypeMap1234 { + yyl1758 := r.ReadMapStart() + if yyl1758 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1739, d) + x.codecDecodeSelfFromMap(yyl1758, d) } - } else if yyct1739 == codecSelferValueTypeArray1234 { - yyl1739 := r.ReadArrayStart() - if yyl1739 == 0 { + } else if yyct1758 == codecSelferValueTypeArray1234 { + yyl1758 := r.ReadArrayStart() + if yyl1758 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1739, d) + x.codecDecodeSelfFromArray(yyl1758, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22968,12 +23234,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1740Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1740Slc - var yyhl1740 bool = l >= 0 - for yyj1740 := 0; ; yyj1740++ { - if yyhl1740 { - if yyj1740 >= l { + var yys1759Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1759Slc + var yyhl1759 bool = l >= 0 + for yyj1759 := 0; ; yyj1759++ { + if yyhl1759 { + if yyj1759 >= l { break } } else { @@ -22982,10 +23248,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1740Slc = r.DecodeBytes(yys1740Slc, true, true) - yys1740 := string(yys1740Slc) + yys1759Slc = r.DecodeBytes(yys1759Slc, true, true) + yys1759 := string(yys1759Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1740 { + switch yys1759 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23002,20 +23268,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1743 := &x.ObjectMeta - yyv1743.CodecDecodeSelf(d) + yyv1762 := &x.ObjectMeta + yyv1762.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1744 := &x.Template - yyv1744.CodecDecodeSelf(d) + yyv1763 := &x.Template + yyv1763.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1740) - } // end switch yys1740 - } // end for yyj1740 + z.DecStructFieldNotFound(-1, yys1759) + } // end switch yys1759 + } // end for yyj1759 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23023,16 +23289,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1745 int - var yyb1745 bool - var yyhl1745 bool = l >= 0 - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + var yyj1764 int + var yyb1764 bool + var yyhl1764 bool = l >= 0 + yyj1764++ + if yyhl1764 { + yyb1764 = yyj1764 > l } else { - yyb1745 = r.CheckBreak() + yyb1764 = r.CheckBreak() } - if yyb1745 { + if yyb1764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23042,13 +23308,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1764++ + if yyhl1764 { + yyb1764 = yyj1764 > l } else { - yyb1745 = r.CheckBreak() + yyb1764 = r.CheckBreak() } - if yyb1745 { + if yyb1764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23058,13 +23324,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1764++ + if yyhl1764 { + yyb1764 = yyj1764 > l } else { - yyb1745 = r.CheckBreak() + yyb1764 = r.CheckBreak() } - if yyb1745 { + if yyb1764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23072,16 +23338,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1748 := &x.ObjectMeta - yyv1748.CodecDecodeSelf(d) + yyv1767 := &x.ObjectMeta + yyv1767.CodecDecodeSelf(d) } - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1764++ + if yyhl1764 { + yyb1764 = yyj1764 > l } else { - yyb1745 = r.CheckBreak() + yyb1764 = r.CheckBreak() } - if yyb1745 { + if yyb1764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23089,21 +23355,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1749 := &x.Template - yyv1749.CodecDecodeSelf(d) + yyv1768 := &x.Template + yyv1768.CodecDecodeSelf(d) } for { - yyj1745++ - if yyhl1745 { - yyb1745 = yyj1745 > l + yyj1764++ + if yyhl1764 { + yyb1764 = yyj1764 > l } else { - yyb1745 = r.CheckBreak() + yyb1764 = r.CheckBreak() } - if yyb1745 { + if yyb1764 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1745-1, "") + z.DecStructFieldNotFound(yyj1764-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23115,37 +23381,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1750 := z.EncBinary() - _ = yym1750 + yym1769 := z.EncBinary() + _ = yym1769 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1751 := !z.EncBinary() - yy2arr1751 := z.EncBasicHandle().StructToArray - var yyq1751 [4]bool - _, _, _ = yysep1751, yyq1751, yy2arr1751 - const yyr1751 bool = false - yyq1751[0] = x.Kind != "" - yyq1751[1] = x.APIVersion != "" - yyq1751[2] = true - var yynn1751 int - if yyr1751 || yy2arr1751 { + yysep1770 := !z.EncBinary() + yy2arr1770 := z.EncBasicHandle().StructToArray + var yyq1770 [4]bool + _, _, _ = yysep1770, yyq1770, yy2arr1770 + const yyr1770 bool = false + yyq1770[0] = x.Kind != "" + yyq1770[1] = x.APIVersion != "" + yyq1770[2] = true + var yynn1770 int + if yyr1770 || yy2arr1770 { r.EncodeArrayStart(4) } else { - yynn1751 = 1 - for _, b := range yyq1751 { + yynn1770 = 1 + for _, b := range yyq1770 { if b { - yynn1751++ + yynn1770++ } } - r.EncodeMapStart(yynn1751) - yynn1751 = 0 + r.EncodeMapStart(yynn1770) + yynn1770 = 0 } - if yyr1751 || yy2arr1751 { + if yyr1770 || yy2arr1770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1751[0] { - yym1753 := z.EncBinary() - _ = yym1753 + if yyq1770[0] { + yym1772 := z.EncBinary() + _ = yym1772 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23154,23 +23420,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1751[0] { + if yyq1770[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1754 := z.EncBinary() - _ = yym1754 + yym1773 := z.EncBinary() + _ = yym1773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1751 || yy2arr1751 { + if yyr1770 || yy2arr1770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1751[1] { - yym1756 := z.EncBinary() - _ = yym1756 + if yyq1770[1] { + yym1775 := z.EncBinary() + _ = yym1775 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23179,54 +23445,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1751[1] { + if yyq1770[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1757 := z.EncBinary() - _ = yym1757 + yym1776 := z.EncBinary() + _ = yym1776 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1751 || yy2arr1751 { + if yyr1770 || yy2arr1770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1751[2] { - yy1759 := &x.ListMeta - yym1760 := z.EncBinary() - _ = yym1760 + if yyq1770[2] { + yy1778 := &x.ListMeta + yym1779 := z.EncBinary() + _ = yym1779 if false { - } else if z.HasExtensions() && z.EncExt(yy1759) { + } else if z.HasExtensions() && z.EncExt(yy1778) { } else { - z.EncFallback(yy1759) + z.EncFallback(yy1778) } } else { r.EncodeNil() } } else { - if yyq1751[2] { + if yyq1770[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1761 := &x.ListMeta - yym1762 := z.EncBinary() - _ = yym1762 + yy1780 := &x.ListMeta + yym1781 := z.EncBinary() + _ = yym1781 if false { - } else if z.HasExtensions() && z.EncExt(yy1761) { + } else if z.HasExtensions() && z.EncExt(yy1780) { } else { - z.EncFallback(yy1761) + z.EncFallback(yy1780) } } } - if yyr1751 || yy2arr1751 { + if yyr1770 || yy2arr1770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1764 := z.EncBinary() - _ = yym1764 + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -23239,15 +23505,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1765 := z.EncBinary() - _ = yym1765 + yym1784 := z.EncBinary() + _ = yym1784 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1751 || yy2arr1751 { + if yyr1770 || yy2arr1770 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23260,25 +23526,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1766 := z.DecBinary() - _ = yym1766 + yym1785 := z.DecBinary() + _ = yym1785 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1767 := r.ContainerType() - if yyct1767 == codecSelferValueTypeMap1234 { - yyl1767 := r.ReadMapStart() - if yyl1767 == 0 { + yyct1786 := r.ContainerType() + if yyct1786 == codecSelferValueTypeMap1234 { + yyl1786 := r.ReadMapStart() + if yyl1786 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1767, d) + x.codecDecodeSelfFromMap(yyl1786, d) } - } else if yyct1767 == codecSelferValueTypeArray1234 { - yyl1767 := r.ReadArrayStart() - if yyl1767 == 0 { + } else if yyct1786 == codecSelferValueTypeArray1234 { + yyl1786 := r.ReadArrayStart() + if yyl1786 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1767, d) + x.codecDecodeSelfFromArray(yyl1786, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23290,12 +23556,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1768Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1768Slc - var yyhl1768 bool = l >= 0 - for yyj1768 := 0; ; yyj1768++ { - if yyhl1768 { - if yyj1768 >= l { + var yys1787Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1787Slc + var yyhl1787 bool = l >= 0 + for yyj1787 := 0; ; yyj1787++ { + if yyhl1787 { + if yyj1787 >= l { break } } else { @@ -23304,10 +23570,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1768Slc = r.DecodeBytes(yys1768Slc, true, true) - yys1768 := string(yys1768Slc) + yys1787Slc = r.DecodeBytes(yys1787Slc, true, true) + yys1787 := string(yys1787Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1768 { + switch yys1787 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23324,31 +23590,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1771 := &x.ListMeta - yym1772 := z.DecBinary() - _ = yym1772 + yyv1790 := &x.ListMeta + yym1791 := z.DecBinary() + _ = yym1791 if false { - } else if z.HasExtensions() && z.DecExt(yyv1771) { + } else if z.HasExtensions() && z.DecExt(yyv1790) { } else { - z.DecFallback(yyv1771, false) + z.DecFallback(yyv1790, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1773 := &x.Items - yym1774 := z.DecBinary() - _ = yym1774 + yyv1792 := &x.Items + yym1793 := z.DecBinary() + _ = yym1793 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1773), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1792), d) } } default: - z.DecStructFieldNotFound(-1, yys1768) - } // end switch yys1768 - } // end for yyj1768 + z.DecStructFieldNotFound(-1, yys1787) + } // end switch yys1787 + } // end for yyj1787 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23356,16 +23622,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1775 int - var yyb1775 bool - var yyhl1775 bool = l >= 0 - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + var yyj1794 int + var yyb1794 bool + var yyhl1794 bool = l >= 0 + yyj1794++ + if yyhl1794 { + yyb1794 = yyj1794 > l } else { - yyb1775 = r.CheckBreak() + yyb1794 = r.CheckBreak() } - if yyb1775 { + if yyb1794 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23375,13 +23641,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1794++ + if yyhl1794 { + yyb1794 = yyj1794 > l } else { - yyb1775 = r.CheckBreak() + yyb1794 = r.CheckBreak() } - if yyb1775 { + if yyb1794 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23391,13 +23657,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1794++ + if yyhl1794 { + yyb1794 = yyj1794 > l } else { - yyb1775 = r.CheckBreak() + yyb1794 = r.CheckBreak() } - if yyb1775 { + if yyb1794 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23405,22 +23671,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1778 := &x.ListMeta - yym1779 := z.DecBinary() - _ = yym1779 + yyv1797 := &x.ListMeta + yym1798 := z.DecBinary() + _ = yym1798 if false { - } else if z.HasExtensions() && z.DecExt(yyv1778) { + } else if z.HasExtensions() && z.DecExt(yyv1797) { } else { - z.DecFallback(yyv1778, false) + z.DecFallback(yyv1797, false) } } - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1794++ + if yyhl1794 { + yyb1794 = yyj1794 > l } else { - yyb1775 = r.CheckBreak() + yyb1794 = r.CheckBreak() } - if yyb1775 { + if yyb1794 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23428,26 +23694,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1780 := &x.Items - yym1781 := z.DecBinary() - _ = yym1781 + yyv1799 := &x.Items + yym1800 := z.DecBinary() + _ = yym1800 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1780), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1799), d) } } for { - yyj1775++ - if yyhl1775 { - yyb1775 = yyj1775 > l + yyj1794++ + if yyhl1794 { + yyb1794 = yyj1794 > l } else { - yyb1775 = r.CheckBreak() + yyb1794 = r.CheckBreak() } - if yyb1775 { + if yyb1794 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1775-1, "") + z.DecStructFieldNotFound(yyj1794-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23459,34 +23725,34 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1782 := z.EncBinary() - _ = yym1782 + yym1801 := z.EncBinary() + _ = yym1801 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1783 := !z.EncBinary() - yy2arr1783 := z.EncBasicHandle().StructToArray - var yyq1783 [3]bool - _, _, _ = yysep1783, yyq1783, yy2arr1783 - const yyr1783 bool = false - yyq1783[2] = x.Template != nil - var yynn1783 int - if yyr1783 || yy2arr1783 { + yysep1802 := !z.EncBinary() + yy2arr1802 := z.EncBasicHandle().StructToArray + var yyq1802 [3]bool + _, _, _ = yysep1802, yyq1802, yy2arr1802 + const yyr1802 bool = false + yyq1802[2] = x.Template != nil + var yynn1802 int + if yyr1802 || yy2arr1802 { r.EncodeArrayStart(3) } else { - yynn1783 = 2 - for _, b := range yyq1783 { + yynn1802 = 2 + for _, b := range yyq1802 { if b { - yynn1783++ + yynn1802++ } } - r.EncodeMapStart(yynn1783) - yynn1783 = 0 + r.EncodeMapStart(yynn1802) + yynn1802 = 0 } - if yyr1783 || yy2arr1783 { + if yyr1802 || yy2arr1802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1785 := z.EncBinary() - _ = yym1785 + yym1804 := z.EncBinary() + _ = yym1804 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -23495,20 +23761,20 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1786 := z.EncBinary() - _ = yym1786 + yym1805 := z.EncBinary() + _ = yym1805 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1783 || yy2arr1783 { + if yyr1802 || yy2arr1802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym1788 := z.EncBinary() - _ = yym1788 + yym1807 := z.EncBinary() + _ = yym1807 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -23521,17 +23787,17 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym1789 := z.EncBinary() - _ = yym1789 + yym1808 := z.EncBinary() + _ = yym1808 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr1783 || yy2arr1783 { + if yyr1802 || yy2arr1802 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1783[2] { + if yyq1802[2] { if x.Template == nil { r.EncodeNil() } else { @@ -23541,7 +23807,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1783[2] { + if yyq1802[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23552,7 +23818,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1783 || yy2arr1783 { + if yyr1802 || yy2arr1802 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23565,25 +23831,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1791 := z.DecBinary() - _ = yym1791 + yym1810 := z.DecBinary() + _ = yym1810 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1792 := r.ContainerType() - if yyct1792 == codecSelferValueTypeMap1234 { - yyl1792 := r.ReadMapStart() - if yyl1792 == 0 { + yyct1811 := r.ContainerType() + if yyct1811 == codecSelferValueTypeMap1234 { + yyl1811 := r.ReadMapStart() + if yyl1811 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1792, d) + x.codecDecodeSelfFromMap(yyl1811, d) } - } else if yyct1792 == codecSelferValueTypeArray1234 { - yyl1792 := r.ReadArrayStart() - if yyl1792 == 0 { + } else if yyct1811 == codecSelferValueTypeArray1234 { + yyl1811 := r.ReadArrayStart() + if yyl1811 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1792, d) + x.codecDecodeSelfFromArray(yyl1811, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23595,12 +23861,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1793Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1793Slc - var yyhl1793 bool = l >= 0 - for yyj1793 := 0; ; yyj1793++ { - if yyhl1793 { - if yyj1793 >= l { + var yys1812Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1812Slc + var yyhl1812 bool = l >= 0 + for yyj1812 := 0; ; yyj1812++ { + if yyhl1812 { + if yyj1812 >= l { break } } else { @@ -23609,10 +23875,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1793Slc = r.DecodeBytes(yys1793Slc, true, true) - yys1793 := string(yys1793Slc) + yys1812Slc = r.DecodeBytes(yys1812Slc, true, true) + yys1812 := string(yys1812Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1793 { + switch yys1812 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -23623,12 +23889,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1795 := &x.Selector - yym1796 := z.DecBinary() - _ = yym1796 + yyv1814 := &x.Selector + yym1815 := z.DecBinary() + _ = yym1815 if false { } else { - z.F.DecMapStringStringX(yyv1795, false, d) + z.F.DecMapStringStringX(yyv1814, false, d) } } case "template": @@ -23643,9 +23909,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1793) - } // end switch yys1793 - } // end for yyj1793 + z.DecStructFieldNotFound(-1, yys1812) + } // end switch yys1812 + } // end for yyj1812 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23653,16 +23919,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1798 int - var yyb1798 bool - var yyhl1798 bool = l >= 0 - yyj1798++ - if yyhl1798 { - yyb1798 = yyj1798 > l + var yyj1817 int + var yyb1817 bool + var yyhl1817 bool = l >= 0 + yyj1817++ + if yyhl1817 { + yyb1817 = yyj1817 > l } else { - yyb1798 = r.CheckBreak() + yyb1817 = r.CheckBreak() } - if yyb1798 { + if yyb1817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23672,13 +23938,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1798++ - if yyhl1798 { - yyb1798 = yyj1798 > l + yyj1817++ + if yyhl1817 { + yyb1817 = yyj1817 > l } else { - yyb1798 = r.CheckBreak() + yyb1817 = r.CheckBreak() } - if yyb1798 { + if yyb1817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23686,21 +23952,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1800 := &x.Selector - yym1801 := z.DecBinary() - _ = yym1801 + yyv1819 := &x.Selector + yym1820 := z.DecBinary() + _ = yym1820 if false { } else { - z.F.DecMapStringStringX(yyv1800, false, d) + z.F.DecMapStringStringX(yyv1819, false, d) } } - yyj1798++ - if yyhl1798 { - yyb1798 = yyj1798 > l + yyj1817++ + if yyhl1817 { + yyb1817 = yyj1817 > l } else { - yyb1798 = r.CheckBreak() + yyb1817 = r.CheckBreak() } - if yyb1798 { + if yyb1817 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23716,17 +23982,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj1798++ - if yyhl1798 { - yyb1798 = yyj1798 > l + yyj1817++ + if yyhl1817 { + yyb1817 = yyj1817 > l } else { - yyb1798 = r.CheckBreak() + yyb1817 = r.CheckBreak() } - if yyb1798 { + if yyb1817 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1798-1, "") + z.DecStructFieldNotFound(yyj1817-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23738,34 +24004,34 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1803 := z.EncBinary() - _ = yym1803 + yym1822 := z.EncBinary() + _ = yym1822 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1804 := !z.EncBinary() - yy2arr1804 := z.EncBasicHandle().StructToArray - var yyq1804 [2]bool - _, _, _ = yysep1804, yyq1804, yy2arr1804 - const yyr1804 bool = false - yyq1804[1] = x.ObservedGeneration != 0 - var yynn1804 int - if yyr1804 || yy2arr1804 { + yysep1823 := !z.EncBinary() + yy2arr1823 := z.EncBasicHandle().StructToArray + var yyq1823 [2]bool + _, _, _ = yysep1823, yyq1823, yy2arr1823 + const yyr1823 bool = false + yyq1823[1] = x.ObservedGeneration != 0 + var yynn1823 int + if yyr1823 || yy2arr1823 { r.EncodeArrayStart(2) } else { - yynn1804 = 1 - for _, b := range yyq1804 { + yynn1823 = 1 + for _, b := range yyq1823 { if b { - yynn1804++ + yynn1823++ } } - r.EncodeMapStart(yynn1804) - yynn1804 = 0 + r.EncodeMapStart(yynn1823) + yynn1823 = 0 } - if yyr1804 || yy2arr1804 { + if yyr1823 || yy2arr1823 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1806 := z.EncBinary() - _ = yym1806 + yym1825 := z.EncBinary() + _ = yym1825 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -23774,18 +24040,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1807 := z.EncBinary() - _ = yym1807 + yym1826 := z.EncBinary() + _ = yym1826 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1804 || yy2arr1804 { + if yyr1823 || yy2arr1823 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1804[1] { - yym1809 := z.EncBinary() - _ = yym1809 + if yyq1823[1] { + yym1828 := z.EncBinary() + _ = yym1828 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -23794,19 +24060,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1804[1] { + if yyq1823[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1810 := z.EncBinary() - _ = yym1810 + yym1829 := z.EncBinary() + _ = yym1829 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1804 || yy2arr1804 { + if yyr1823 || yy2arr1823 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23819,25 +24085,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1811 := z.DecBinary() - _ = yym1811 + yym1830 := z.DecBinary() + _ = yym1830 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1812 := r.ContainerType() - if yyct1812 == codecSelferValueTypeMap1234 { - yyl1812 := r.ReadMapStart() - if yyl1812 == 0 { + yyct1831 := r.ContainerType() + if yyct1831 == codecSelferValueTypeMap1234 { + yyl1831 := r.ReadMapStart() + if yyl1831 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1812, d) + x.codecDecodeSelfFromMap(yyl1831, d) } - } else if yyct1812 == codecSelferValueTypeArray1234 { - yyl1812 := r.ReadArrayStart() - if yyl1812 == 0 { + } else if yyct1831 == codecSelferValueTypeArray1234 { + yyl1831 := r.ReadArrayStart() + if yyl1831 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1812, d) + x.codecDecodeSelfFromArray(yyl1831, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23849,12 +24115,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1813Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1813Slc - var yyhl1813 bool = l >= 0 - for yyj1813 := 0; ; yyj1813++ { - if yyhl1813 { - if yyj1813 >= l { + var yys1832Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1832Slc + var yyhl1832 bool = l >= 0 + for yyj1832 := 0; ; yyj1832++ { + if yyhl1832 { + if yyj1832 >= l { break } } else { @@ -23863,10 +24129,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1813Slc = r.DecodeBytes(yys1813Slc, true, true) - yys1813 := string(yys1813Slc) + yys1832Slc = r.DecodeBytes(yys1832Slc, true, true) + yys1832 := string(yys1832Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1813 { + switch yys1832 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -23880,9 +24146,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1813) - } // end switch yys1813 - } // end for yyj1813 + z.DecStructFieldNotFound(-1, yys1832) + } // end switch yys1832 + } // end for yyj1832 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23890,16 +24156,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1816 int - var yyb1816 bool - var yyhl1816 bool = l >= 0 - yyj1816++ - if yyhl1816 { - yyb1816 = yyj1816 > l + var yyj1835 int + var yyb1835 bool + var yyhl1835 bool = l >= 0 + yyj1835++ + if yyhl1835 { + yyb1835 = yyj1835 > l } else { - yyb1816 = r.CheckBreak() + yyb1835 = r.CheckBreak() } - if yyb1816 { + if yyb1835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23909,13 +24175,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1816++ - if yyhl1816 { - yyb1816 = yyj1816 > l + yyj1835++ + if yyhl1835 { + yyb1835 = yyj1835 > l } else { - yyb1816 = r.CheckBreak() + yyb1835 = r.CheckBreak() } - if yyb1816 { + if yyb1835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23926,17 +24192,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj1816++ - if yyhl1816 { - yyb1816 = yyj1816 > l + yyj1835++ + if yyhl1835 { + yyb1835 = yyj1835 > l } else { - yyb1816 = r.CheckBreak() + yyb1835 = r.CheckBreak() } - if yyb1816 { + if yyb1835 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1816-1, "") + z.DecStructFieldNotFound(yyj1835-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23948,39 +24214,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1819 := z.EncBinary() - _ = yym1819 + yym1838 := z.EncBinary() + _ = yym1838 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1820 := !z.EncBinary() - yy2arr1820 := z.EncBasicHandle().StructToArray - var yyq1820 [5]bool - _, _, _ = yysep1820, yyq1820, yy2arr1820 - const yyr1820 bool = false - yyq1820[0] = x.Kind != "" - yyq1820[1] = x.APIVersion != "" - yyq1820[2] = true - yyq1820[3] = true - yyq1820[4] = true - var yynn1820 int - if yyr1820 || yy2arr1820 { + yysep1839 := !z.EncBinary() + yy2arr1839 := z.EncBasicHandle().StructToArray + var yyq1839 [5]bool + _, _, _ = yysep1839, yyq1839, yy2arr1839 + const yyr1839 bool = false + yyq1839[0] = x.Kind != "" + yyq1839[1] = x.APIVersion != "" + yyq1839[2] = true + yyq1839[3] = true + yyq1839[4] = true + var yynn1839 int + if yyr1839 || yy2arr1839 { r.EncodeArrayStart(5) } else { - yynn1820 = 0 - for _, b := range yyq1820 { + yynn1839 = 0 + for _, b := range yyq1839 { if b { - yynn1820++ + yynn1839++ } } - r.EncodeMapStart(yynn1820) - yynn1820 = 0 + r.EncodeMapStart(yynn1839) + yynn1839 = 0 } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1820[0] { - yym1822 := z.EncBinary() - _ = yym1822 + if yyq1839[0] { + yym1841 := z.EncBinary() + _ = yym1841 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23989,23 +24255,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1820[0] { + if yyq1839[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1823 := z.EncBinary() - _ = yym1823 + yym1842 := z.EncBinary() + _ = yym1842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1820[1] { - yym1825 := z.EncBinary() - _ = yym1825 + if yyq1839[1] { + yym1844 := z.EncBinary() + _ = yym1844 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24014,70 +24280,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1820[1] { + if yyq1839[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1826 := z.EncBinary() - _ = yym1826 + yym1845 := z.EncBinary() + _ = yym1845 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1820[2] { - yy1828 := &x.ObjectMeta - yy1828.CodecEncodeSelf(e) + if yyq1839[2] { + yy1847 := &x.ObjectMeta + yy1847.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1820[2] { + if yyq1839[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1829 := &x.ObjectMeta - yy1829.CodecEncodeSelf(e) + yy1848 := &x.ObjectMeta + yy1848.CodecEncodeSelf(e) } } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1820[3] { - yy1831 := &x.Spec - yy1831.CodecEncodeSelf(e) + if yyq1839[3] { + yy1850 := &x.Spec + yy1850.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1820[3] { + if yyq1839[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1832 := &x.Spec - yy1832.CodecEncodeSelf(e) + yy1851 := &x.Spec + yy1851.CodecEncodeSelf(e) } } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1820[4] { - yy1834 := &x.Status - yy1834.CodecEncodeSelf(e) + if yyq1839[4] { + yy1853 := &x.Status + yy1853.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1820[4] { + if yyq1839[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1835 := &x.Status - yy1835.CodecEncodeSelf(e) + yy1854 := &x.Status + yy1854.CodecEncodeSelf(e) } } - if yyr1820 || yy2arr1820 { + if yyr1839 || yy2arr1839 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24090,25 +24356,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1836 := z.DecBinary() - _ = yym1836 + yym1855 := z.DecBinary() + _ = yym1855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1837 := r.ContainerType() - if yyct1837 == codecSelferValueTypeMap1234 { - yyl1837 := r.ReadMapStart() - if yyl1837 == 0 { + yyct1856 := r.ContainerType() + if yyct1856 == codecSelferValueTypeMap1234 { + yyl1856 := r.ReadMapStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1837, d) + x.codecDecodeSelfFromMap(yyl1856, d) } - } else if yyct1837 == codecSelferValueTypeArray1234 { - yyl1837 := r.ReadArrayStart() - if yyl1837 == 0 { + } else if yyct1856 == codecSelferValueTypeArray1234 { + yyl1856 := r.ReadArrayStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1837, d) + x.codecDecodeSelfFromArray(yyl1856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24120,12 +24386,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1838Slc - var yyhl1838 bool = l >= 0 - for yyj1838 := 0; ; yyj1838++ { - if yyhl1838 { - if yyj1838 >= l { + var yys1857Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1857Slc + var yyhl1857 bool = l >= 0 + for yyj1857 := 0; ; yyj1857++ { + if yyhl1857 { + if yyj1857 >= l { break } } else { @@ -24134,10 +24400,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1838Slc = r.DecodeBytes(yys1838Slc, true, true) - yys1838 := string(yys1838Slc) + yys1857Slc = r.DecodeBytes(yys1857Slc, true, true) + yys1857 := string(yys1857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1838 { + switch yys1857 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24154,27 +24420,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1841 := &x.ObjectMeta - yyv1841.CodecDecodeSelf(d) + yyv1860 := &x.ObjectMeta + yyv1860.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1842 := &x.Spec - yyv1842.CodecDecodeSelf(d) + yyv1861 := &x.Spec + yyv1861.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1843 := &x.Status - yyv1843.CodecDecodeSelf(d) + yyv1862 := &x.Status + yyv1862.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1838) - } // end switch yys1838 - } // end for yyj1838 + z.DecStructFieldNotFound(-1, yys1857) + } // end switch yys1857 + } // end for yyj1857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24182,16 +24448,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1844 int - var yyb1844 bool - var yyhl1844 bool = l >= 0 - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + var yyj1863 int + var yyb1863 bool + var yyhl1863 bool = l >= 0 + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24201,13 +24467,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24217,13 +24483,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24231,16 +24497,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1847 := &x.ObjectMeta - yyv1847.CodecDecodeSelf(d) + yyv1866 := &x.ObjectMeta + yyv1866.CodecDecodeSelf(d) } - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24248,16 +24514,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1848 := &x.Spec - yyv1848.CodecDecodeSelf(d) + yyv1867 := &x.Spec + yyv1867.CodecDecodeSelf(d) } - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24265,21 +24531,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1849 := &x.Status - yyv1849.CodecDecodeSelf(d) + yyv1868 := &x.Status + yyv1868.CodecDecodeSelf(d) } for { - yyj1844++ - if yyhl1844 { - yyb1844 = yyj1844 > l + yyj1863++ + if yyhl1863 { + yyb1863 = yyj1863 > l } else { - yyb1844 = r.CheckBreak() + yyb1863 = r.CheckBreak() } - if yyb1844 { + if yyb1863 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1844-1, "") + z.DecStructFieldNotFound(yyj1863-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24291,37 +24557,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1850 := z.EncBinary() - _ = yym1850 + yym1869 := z.EncBinary() + _ = yym1869 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1851 := !z.EncBinary() - yy2arr1851 := z.EncBasicHandle().StructToArray - var yyq1851 [4]bool - _, _, _ = yysep1851, yyq1851, yy2arr1851 - const yyr1851 bool = false - yyq1851[0] = x.Kind != "" - yyq1851[1] = x.APIVersion != "" - yyq1851[2] = true - var yynn1851 int - if yyr1851 || yy2arr1851 { + yysep1870 := !z.EncBinary() + yy2arr1870 := z.EncBasicHandle().StructToArray + var yyq1870 [4]bool + _, _, _ = yysep1870, yyq1870, yy2arr1870 + const yyr1870 bool = false + yyq1870[0] = x.Kind != "" + yyq1870[1] = x.APIVersion != "" + yyq1870[2] = true + var yynn1870 int + if yyr1870 || yy2arr1870 { r.EncodeArrayStart(4) } else { - yynn1851 = 1 - for _, b := range yyq1851 { + yynn1870 = 1 + for _, b := range yyq1870 { if b { - yynn1851++ + yynn1870++ } } - r.EncodeMapStart(yynn1851) - yynn1851 = 0 + r.EncodeMapStart(yynn1870) + yynn1870 = 0 } - if yyr1851 || yy2arr1851 { + if yyr1870 || yy2arr1870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1851[0] { - yym1853 := z.EncBinary() - _ = yym1853 + if yyq1870[0] { + yym1872 := z.EncBinary() + _ = yym1872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24330,23 +24596,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1851[0] { + if yyq1870[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1854 := z.EncBinary() - _ = yym1854 + yym1873 := z.EncBinary() + _ = yym1873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1851 || yy2arr1851 { + if yyr1870 || yy2arr1870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1851[1] { - yym1856 := z.EncBinary() - _ = yym1856 + if yyq1870[1] { + yym1875 := z.EncBinary() + _ = yym1875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24355,54 +24621,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1851[1] { + if yyq1870[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1857 := z.EncBinary() - _ = yym1857 + yym1876 := z.EncBinary() + _ = yym1876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1851 || yy2arr1851 { + if yyr1870 || yy2arr1870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1851[2] { - yy1859 := &x.ListMeta - yym1860 := z.EncBinary() - _ = yym1860 + if yyq1870[2] { + yy1878 := &x.ListMeta + yym1879 := z.EncBinary() + _ = yym1879 if false { - } else if z.HasExtensions() && z.EncExt(yy1859) { + } else if z.HasExtensions() && z.EncExt(yy1878) { } else { - z.EncFallback(yy1859) + z.EncFallback(yy1878) } } else { r.EncodeNil() } } else { - if yyq1851[2] { + if yyq1870[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1861 := &x.ListMeta - yym1862 := z.EncBinary() - _ = yym1862 + yy1880 := &x.ListMeta + yym1881 := z.EncBinary() + _ = yym1881 if false { - } else if z.HasExtensions() && z.EncExt(yy1861) { + } else if z.HasExtensions() && z.EncExt(yy1880) { } else { - z.EncFallback(yy1861) + z.EncFallback(yy1880) } } } - if yyr1851 || yy2arr1851 { + if yyr1870 || yy2arr1870 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1883 := z.EncBinary() + _ = yym1883 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -24415,15 +24681,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1865 := z.EncBinary() - _ = yym1865 + yym1884 := z.EncBinary() + _ = yym1884 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1851 || yy2arr1851 { + if yyr1870 || yy2arr1870 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24436,25 +24702,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1866 := z.DecBinary() - _ = yym1866 + yym1885 := z.DecBinary() + _ = yym1885 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1867 := r.ContainerType() - if yyct1867 == codecSelferValueTypeMap1234 { - yyl1867 := r.ReadMapStart() - if yyl1867 == 0 { + yyct1886 := r.ContainerType() + if yyct1886 == codecSelferValueTypeMap1234 { + yyl1886 := r.ReadMapStart() + if yyl1886 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1867, d) + x.codecDecodeSelfFromMap(yyl1886, d) } - } else if yyct1867 == codecSelferValueTypeArray1234 { - yyl1867 := r.ReadArrayStart() - if yyl1867 == 0 { + } else if yyct1886 == codecSelferValueTypeArray1234 { + yyl1886 := r.ReadArrayStart() + if yyl1886 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1867, d) + x.codecDecodeSelfFromArray(yyl1886, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24466,12 +24732,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1868Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1868Slc - var yyhl1868 bool = l >= 0 - for yyj1868 := 0; ; yyj1868++ { - if yyhl1868 { - if yyj1868 >= l { + var yys1887Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1887Slc + var yyhl1887 bool = l >= 0 + for yyj1887 := 0; ; yyj1887++ { + if yyhl1887 { + if yyj1887 >= l { break } } else { @@ -24480,10 +24746,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1868Slc = r.DecodeBytes(yys1868Slc, true, true) - yys1868 := string(yys1868Slc) + yys1887Slc = r.DecodeBytes(yys1887Slc, true, true) + yys1887 := string(yys1887Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1868 { + switch yys1887 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24500,31 +24766,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1871 := &x.ListMeta - yym1872 := z.DecBinary() - _ = yym1872 + yyv1890 := &x.ListMeta + yym1891 := z.DecBinary() + _ = yym1891 if false { - } else if z.HasExtensions() && z.DecExt(yyv1871) { + } else if z.HasExtensions() && z.DecExt(yyv1890) { } else { - z.DecFallback(yyv1871, false) + z.DecFallback(yyv1890, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1873 := &x.Items - yym1874 := z.DecBinary() - _ = yym1874 + yyv1892 := &x.Items + yym1893 := z.DecBinary() + _ = yym1893 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1873), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1892), d) } } default: - z.DecStructFieldNotFound(-1, yys1868) - } // end switch yys1868 - } // end for yyj1868 + z.DecStructFieldNotFound(-1, yys1887) + } // end switch yys1887 + } // end for yyj1887 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24532,16 +24798,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1875 int - var yyb1875 bool - var yyhl1875 bool = l >= 0 - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + var yyj1894 int + var yyb1894 bool + var yyhl1894 bool = l >= 0 + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24551,13 +24817,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24567,13 +24833,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24581,22 +24847,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1878 := &x.ListMeta - yym1879 := z.DecBinary() - _ = yym1879 + yyv1897 := &x.ListMeta + yym1898 := z.DecBinary() + _ = yym1898 if false { - } else if z.HasExtensions() && z.DecExt(yyv1878) { + } else if z.HasExtensions() && z.DecExt(yyv1897) { } else { - z.DecFallback(yyv1878, false) + z.DecFallback(yyv1897, false) } } - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24604,26 +24870,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1880 := &x.Items - yym1881 := z.DecBinary() - _ = yym1881 + yyv1899 := &x.Items + yym1900 := z.DecBinary() + _ = yym1900 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1880), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1899), d) } } for { - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1875-1, "") + z.DecStructFieldNotFound(yyj1894-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24635,37 +24901,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1882 := z.EncBinary() - _ = yym1882 + yym1901 := z.EncBinary() + _ = yym1901 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1883 := !z.EncBinary() - yy2arr1883 := z.EncBasicHandle().StructToArray - var yyq1883 [4]bool - _, _, _ = yysep1883, yyq1883, yy2arr1883 - const yyr1883 bool = false - yyq1883[0] = x.Kind != "" - yyq1883[1] = x.APIVersion != "" - yyq1883[2] = true - var yynn1883 int - if yyr1883 || yy2arr1883 { + yysep1902 := !z.EncBinary() + yy2arr1902 := z.EncBasicHandle().StructToArray + var yyq1902 [4]bool + _, _, _ = yysep1902, yyq1902, yy2arr1902 + const yyr1902 bool = false + yyq1902[0] = x.Kind != "" + yyq1902[1] = x.APIVersion != "" + yyq1902[2] = true + var yynn1902 int + if yyr1902 || yy2arr1902 { r.EncodeArrayStart(4) } else { - yynn1883 = 1 - for _, b := range yyq1883 { + yynn1902 = 1 + for _, b := range yyq1902 { if b { - yynn1883++ + yynn1902++ } } - r.EncodeMapStart(yynn1883) - yynn1883 = 0 + r.EncodeMapStart(yynn1902) + yynn1902 = 0 } - if yyr1883 || yy2arr1883 { + if yyr1902 || yy2arr1902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1883[0] { - yym1885 := z.EncBinary() - _ = yym1885 + if yyq1902[0] { + yym1904 := z.EncBinary() + _ = yym1904 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24674,23 +24940,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1883[0] { + if yyq1902[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1886 := z.EncBinary() - _ = yym1886 + yym1905 := z.EncBinary() + _ = yym1905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1883 || yy2arr1883 { + if yyr1902 || yy2arr1902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1883[1] { - yym1888 := z.EncBinary() - _ = yym1888 + if yyq1902[1] { + yym1907 := z.EncBinary() + _ = yym1907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24699,54 +24965,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1883[1] { + if yyq1902[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1889 := z.EncBinary() - _ = yym1889 + yym1908 := z.EncBinary() + _ = yym1908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1883 || yy2arr1883 { + if yyr1902 || yy2arr1902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1883[2] { - yy1891 := &x.ListMeta - yym1892 := z.EncBinary() - _ = yym1892 + if yyq1902[2] { + yy1910 := &x.ListMeta + yym1911 := z.EncBinary() + _ = yym1911 if false { - } else if z.HasExtensions() && z.EncExt(yy1891) { + } else if z.HasExtensions() && z.EncExt(yy1910) { } else { - z.EncFallback(yy1891) + z.EncFallback(yy1910) } } else { r.EncodeNil() } } else { - if yyq1883[2] { + if yyq1902[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1893 := &x.ListMeta - yym1894 := z.EncBinary() - _ = yym1894 + yy1912 := &x.ListMeta + yym1913 := z.EncBinary() + _ = yym1913 if false { - } else if z.HasExtensions() && z.EncExt(yy1893) { + } else if z.HasExtensions() && z.EncExt(yy1912) { } else { - z.EncFallback(yy1893) + z.EncFallback(yy1912) } } } - if yyr1883 || yy2arr1883 { + if yyr1902 || yy2arr1902 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1896 := z.EncBinary() - _ = yym1896 + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -24759,15 +25025,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1897 := z.EncBinary() - _ = yym1897 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr1883 || yy2arr1883 { + if yyr1902 || yy2arr1902 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24780,25 +25046,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1898 := z.DecBinary() - _ = yym1898 + yym1917 := z.DecBinary() + _ = yym1917 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1899 := r.ContainerType() - if yyct1899 == codecSelferValueTypeMap1234 { - yyl1899 := r.ReadMapStart() - if yyl1899 == 0 { + yyct1918 := r.ContainerType() + if yyct1918 == codecSelferValueTypeMap1234 { + yyl1918 := r.ReadMapStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1899, d) + x.codecDecodeSelfFromMap(yyl1918, d) } - } else if yyct1899 == codecSelferValueTypeArray1234 { - yyl1899 := r.ReadArrayStart() - if yyl1899 == 0 { + } else if yyct1918 == codecSelferValueTypeArray1234 { + yyl1918 := r.ReadArrayStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1899, d) + x.codecDecodeSelfFromArray(yyl1918, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24810,12 +25076,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1900Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1900Slc - var yyhl1900 bool = l >= 0 - for yyj1900 := 0; ; yyj1900++ { - if yyhl1900 { - if yyj1900 >= l { + var yys1919Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1919Slc + var yyhl1919 bool = l >= 0 + for yyj1919 := 0; ; yyj1919++ { + if yyhl1919 { + if yyj1919 >= l { break } } else { @@ -24824,10 +25090,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1900Slc = r.DecodeBytes(yys1900Slc, true, true) - yys1900 := string(yys1900Slc) + yys1919Slc = r.DecodeBytes(yys1919Slc, true, true) + yys1919 := string(yys1919Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1900 { + switch yys1919 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24844,31 +25110,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1903 := &x.ListMeta - yym1904 := z.DecBinary() - _ = yym1904 + yyv1922 := &x.ListMeta + yym1923 := z.DecBinary() + _ = yym1923 if false { - } else if z.HasExtensions() && z.DecExt(yyv1903) { + } else if z.HasExtensions() && z.DecExt(yyv1922) { } else { - z.DecFallback(yyv1903, false) + z.DecFallback(yyv1922, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1905 := &x.Items - yym1906 := z.DecBinary() - _ = yym1906 + yyv1924 := &x.Items + yym1925 := z.DecBinary() + _ = yym1925 if false { } else { - h.decSliceService((*[]Service)(yyv1905), d) + h.decSliceService((*[]Service)(yyv1924), d) } } default: - z.DecStructFieldNotFound(-1, yys1900) - } // end switch yys1900 - } // end for yyj1900 + z.DecStructFieldNotFound(-1, yys1919) + } // end switch yys1919 + } // end for yyj1919 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24876,16 +25142,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1907 int - var yyb1907 bool - var yyhl1907 bool = l >= 0 - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + var yyj1926 int + var yyb1926 bool + var yyhl1926 bool = l >= 0 + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1907 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1907 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24895,13 +25161,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1907 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1907 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24911,13 +25177,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1907 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1907 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24925,22 +25191,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1910 := &x.ListMeta - yym1911 := z.DecBinary() - _ = yym1911 + yyv1929 := &x.ListMeta + yym1930 := z.DecBinary() + _ = yym1930 if false { - } else if z.HasExtensions() && z.DecExt(yyv1910) { + } else if z.HasExtensions() && z.DecExt(yyv1929) { } else { - z.DecFallback(yyv1910, false) + z.DecFallback(yyv1929, false) } } - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1907 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1907 { + if yyb1926 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24948,26 +25214,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1912 := &x.Items - yym1913 := z.DecBinary() - _ = yym1913 + yyv1931 := &x.Items + yym1932 := z.DecBinary() + _ = yym1932 if false { } else { - h.decSliceService((*[]Service)(yyv1912), d) + h.decSliceService((*[]Service)(yyv1931), d) } } for { - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1926++ + if yyhl1926 { + yyb1926 = yyj1926 > l } else { - yyb1907 = r.CheckBreak() + yyb1926 = r.CheckBreak() } - if yyb1907 { + if yyb1926 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1907-1, "") + z.DecStructFieldNotFound(yyj1926-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24976,8 +25242,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1914 := z.EncBinary() - _ = yym1914 + yym1933 := z.EncBinary() + _ = yym1933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24989,8 +25255,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1915 := z.DecBinary() - _ = yym1915 + yym1934 := z.DecBinary() + _ = yym1934 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25002,8 +25268,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1916 := z.EncBinary() - _ = yym1916 + yym1935 := z.EncBinary() + _ = yym1935 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -25015,8 +25281,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1917 := z.DecBinary() - _ = yym1917 + yym1936 := z.DecBinary() + _ = yym1936 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -25031,48 +25297,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1918 := z.EncBinary() - _ = yym1918 + yym1937 := z.EncBinary() + _ = yym1937 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1919 := !z.EncBinary() - yy2arr1919 := z.EncBasicHandle().StructToArray - var yyq1919 [1]bool - _, _, _ = yysep1919, yyq1919, yy2arr1919 - const yyr1919 bool = false - yyq1919[0] = true - var yynn1919 int - if yyr1919 || yy2arr1919 { + yysep1938 := !z.EncBinary() + yy2arr1938 := z.EncBasicHandle().StructToArray + var yyq1938 [1]bool + _, _, _ = yysep1938, yyq1938, yy2arr1938 + const yyr1938 bool = false + yyq1938[0] = true + var yynn1938 int + if yyr1938 || yy2arr1938 { r.EncodeArrayStart(1) } else { - yynn1919 = 0 - for _, b := range yyq1919 { + yynn1938 = 0 + for _, b := range yyq1938 { if b { - yynn1919++ + yynn1938++ } } - r.EncodeMapStart(yynn1919) - yynn1919 = 0 + r.EncodeMapStart(yynn1938) + yynn1938 = 0 } - if yyr1919 || yy2arr1919 { + if yyr1938 || yy2arr1938 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1919[0] { - yy1921 := &x.LoadBalancer - yy1921.CodecEncodeSelf(e) + if yyq1938[0] { + yy1940 := &x.LoadBalancer + yy1940.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1919[0] { + if yyq1938[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1922 := &x.LoadBalancer - yy1922.CodecEncodeSelf(e) + yy1941 := &x.LoadBalancer + yy1941.CodecEncodeSelf(e) } } - if yyr1919 || yy2arr1919 { + if yyr1938 || yy2arr1938 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25085,25 +25351,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1923 := z.DecBinary() - _ = yym1923 + yym1942 := z.DecBinary() + _ = yym1942 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1924 := r.ContainerType() - if yyct1924 == codecSelferValueTypeMap1234 { - yyl1924 := r.ReadMapStart() - if yyl1924 == 0 { + yyct1943 := r.ContainerType() + if yyct1943 == codecSelferValueTypeMap1234 { + yyl1943 := r.ReadMapStart() + if yyl1943 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1924, d) + x.codecDecodeSelfFromMap(yyl1943, d) } - } else if yyct1924 == codecSelferValueTypeArray1234 { - yyl1924 := r.ReadArrayStart() - if yyl1924 == 0 { + } else if yyct1943 == codecSelferValueTypeArray1234 { + yyl1943 := r.ReadArrayStart() + if yyl1943 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1924, d) + x.codecDecodeSelfFromArray(yyl1943, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25115,12 +25381,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1925Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1925Slc - var yyhl1925 bool = l >= 0 - for yyj1925 := 0; ; yyj1925++ { - if yyhl1925 { - if yyj1925 >= l { + var yys1944Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1944Slc + var yyhl1944 bool = l >= 0 + for yyj1944 := 0; ; yyj1944++ { + if yyhl1944 { + if yyj1944 >= l { break } } else { @@ -25129,21 +25395,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1925Slc = r.DecodeBytes(yys1925Slc, true, true) - yys1925 := string(yys1925Slc) + yys1944Slc = r.DecodeBytes(yys1944Slc, true, true) + yys1944 := string(yys1944Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1925 { + switch yys1944 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1926 := &x.LoadBalancer - yyv1926.CodecDecodeSelf(d) + yyv1945 := &x.LoadBalancer + yyv1945.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1925) - } // end switch yys1925 - } // end for yyj1925 + z.DecStructFieldNotFound(-1, yys1944) + } // end switch yys1944 + } // end for yyj1944 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25151,16 +25417,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1927 int - var yyb1927 bool - var yyhl1927 bool = l >= 0 - yyj1927++ - if yyhl1927 { - yyb1927 = yyj1927 > l + var yyj1946 int + var yyb1946 bool + var yyhl1946 bool = l >= 0 + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1927 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1927 { + if yyb1946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25168,21 +25434,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1928 := &x.LoadBalancer - yyv1928.CodecDecodeSelf(d) + yyv1947 := &x.LoadBalancer + yyv1947.CodecDecodeSelf(d) } for { - yyj1927++ - if yyhl1927 { - yyb1927 = yyj1927 > l + yyj1946++ + if yyhl1946 { + yyb1946 = yyj1946 > l } else { - yyb1927 = r.CheckBreak() + yyb1946 = r.CheckBreak() } - if yyb1927 { + if yyb1946 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1927-1, "") + z.DecStructFieldNotFound(yyj1946-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25194,38 +25460,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1929 := z.EncBinary() - _ = yym1929 + yym1948 := z.EncBinary() + _ = yym1948 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1930 := !z.EncBinary() - yy2arr1930 := z.EncBasicHandle().StructToArray - var yyq1930 [1]bool - _, _, _ = yysep1930, yyq1930, yy2arr1930 - const yyr1930 bool = false - yyq1930[0] = len(x.Ingress) != 0 - var yynn1930 int - if yyr1930 || yy2arr1930 { + yysep1949 := !z.EncBinary() + yy2arr1949 := z.EncBasicHandle().StructToArray + var yyq1949 [1]bool + _, _, _ = yysep1949, yyq1949, yy2arr1949 + const yyr1949 bool = false + yyq1949[0] = len(x.Ingress) != 0 + var yynn1949 int + if yyr1949 || yy2arr1949 { r.EncodeArrayStart(1) } else { - yynn1930 = 0 - for _, b := range yyq1930 { + yynn1949 = 0 + for _, b := range yyq1949 { if b { - yynn1930++ + yynn1949++ } } - r.EncodeMapStart(yynn1930) - yynn1930 = 0 + r.EncodeMapStart(yynn1949) + yynn1949 = 0 } - if yyr1930 || yy2arr1930 { + if yyr1949 || yy2arr1949 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1930[0] { + if yyq1949[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym1932 := z.EncBinary() - _ = yym1932 + yym1951 := z.EncBinary() + _ = yym1951 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -25235,15 +25501,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1930[0] { + if yyq1949[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1933 := z.EncBinary() - _ = yym1933 + yym1952 := z.EncBinary() + _ = yym1952 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -25251,7 +25517,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1930 || yy2arr1930 { + if yyr1949 || yy2arr1949 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25264,25 +25530,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1934 := z.DecBinary() - _ = yym1934 + yym1953 := z.DecBinary() + _ = yym1953 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1935 := r.ContainerType() - if yyct1935 == codecSelferValueTypeMap1234 { - yyl1935 := r.ReadMapStart() - if yyl1935 == 0 { + yyct1954 := r.ContainerType() + if yyct1954 == codecSelferValueTypeMap1234 { + yyl1954 := r.ReadMapStart() + if yyl1954 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1935, d) + x.codecDecodeSelfFromMap(yyl1954, d) } - } else if yyct1935 == codecSelferValueTypeArray1234 { - yyl1935 := r.ReadArrayStart() - if yyl1935 == 0 { + } else if yyct1954 == codecSelferValueTypeArray1234 { + yyl1954 := r.ReadArrayStart() + if yyl1954 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1935, d) + x.codecDecodeSelfFromArray(yyl1954, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25294,12 +25560,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1936Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1936Slc - var yyhl1936 bool = l >= 0 - for yyj1936 := 0; ; yyj1936++ { - if yyhl1936 { - if yyj1936 >= l { + var yys1955Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1955Slc + var yyhl1955 bool = l >= 0 + for yyj1955 := 0; ; yyj1955++ { + if yyhl1955 { + if yyj1955 >= l { break } } else { @@ -25308,26 +25574,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1936Slc = r.DecodeBytes(yys1936Slc, true, true) - yys1936 := string(yys1936Slc) + yys1955Slc = r.DecodeBytes(yys1955Slc, true, true) + yys1955 := string(yys1955Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1936 { + switch yys1955 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1937 := &x.Ingress - yym1938 := z.DecBinary() - _ = yym1938 + yyv1956 := &x.Ingress + yym1957 := z.DecBinary() + _ = yym1957 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1937), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1956), d) } } default: - z.DecStructFieldNotFound(-1, yys1936) - } // end switch yys1936 - } // end for yyj1936 + z.DecStructFieldNotFound(-1, yys1955) + } // end switch yys1955 + } // end for yyj1955 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25335,16 +25601,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1939 int - var yyb1939 bool - var yyhl1939 bool = l >= 0 - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + var yyj1958 int + var yyb1958 bool + var yyhl1958 bool = l >= 0 + yyj1958++ + if yyhl1958 { + yyb1958 = yyj1958 > l } else { - yyb1939 = r.CheckBreak() + yyb1958 = r.CheckBreak() } - if yyb1939 { + if yyb1958 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25352,26 +25618,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1940 := &x.Ingress - yym1941 := z.DecBinary() - _ = yym1941 + yyv1959 := &x.Ingress + yym1960 := z.DecBinary() + _ = yym1960 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1940), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1959), d) } } for { - yyj1939++ - if yyhl1939 { - yyb1939 = yyj1939 > l + yyj1958++ + if yyhl1958 { + yyb1958 = yyj1958 > l } else { - yyb1939 = r.CheckBreak() + yyb1958 = r.CheckBreak() } - if yyb1939 { + if yyb1958 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1939-1, "") + z.DecStructFieldNotFound(yyj1958-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25383,36 +25649,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1942 := z.EncBinary() - _ = yym1942 + yym1961 := z.EncBinary() + _ = yym1961 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1943 := !z.EncBinary() - yy2arr1943 := z.EncBasicHandle().StructToArray - var yyq1943 [2]bool - _, _, _ = yysep1943, yyq1943, yy2arr1943 - const yyr1943 bool = false - yyq1943[0] = x.IP != "" - yyq1943[1] = x.Hostname != "" - var yynn1943 int - if yyr1943 || yy2arr1943 { + yysep1962 := !z.EncBinary() + yy2arr1962 := z.EncBasicHandle().StructToArray + var yyq1962 [2]bool + _, _, _ = yysep1962, yyq1962, yy2arr1962 + const yyr1962 bool = false + yyq1962[0] = x.IP != "" + yyq1962[1] = x.Hostname != "" + var yynn1962 int + if yyr1962 || yy2arr1962 { r.EncodeArrayStart(2) } else { - yynn1943 = 0 - for _, b := range yyq1943 { + yynn1962 = 0 + for _, b := range yyq1962 { if b { - yynn1943++ + yynn1962++ } } - r.EncodeMapStart(yynn1943) - yynn1943 = 0 + r.EncodeMapStart(yynn1962) + yynn1962 = 0 } - if yyr1943 || yy2arr1943 { + if yyr1962 || yy2arr1962 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1943[0] { - yym1945 := z.EncBinary() - _ = yym1945 + if yyq1962[0] { + yym1964 := z.EncBinary() + _ = yym1964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -25421,23 +25687,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1943[0] { + if yyq1962[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1946 := z.EncBinary() - _ = yym1946 + yym1965 := z.EncBinary() + _ = yym1965 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr1943 || yy2arr1943 { + if yyr1962 || yy2arr1962 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1943[1] { - yym1948 := z.EncBinary() - _ = yym1948 + if yyq1962[1] { + yym1967 := z.EncBinary() + _ = yym1967 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -25446,19 +25712,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1943[1] { + if yyq1962[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1949 := z.EncBinary() - _ = yym1949 + yym1968 := z.EncBinary() + _ = yym1968 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1943 || yy2arr1943 { + if yyr1962 || yy2arr1962 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25471,25 +25737,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1950 := z.DecBinary() - _ = yym1950 + yym1969 := z.DecBinary() + _ = yym1969 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1951 := r.ContainerType() - if yyct1951 == codecSelferValueTypeMap1234 { - yyl1951 := r.ReadMapStart() - if yyl1951 == 0 { + yyct1970 := r.ContainerType() + if yyct1970 == codecSelferValueTypeMap1234 { + yyl1970 := r.ReadMapStart() + if yyl1970 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1951, d) + x.codecDecodeSelfFromMap(yyl1970, d) } - } else if yyct1951 == codecSelferValueTypeArray1234 { - yyl1951 := r.ReadArrayStart() - if yyl1951 == 0 { + } else if yyct1970 == codecSelferValueTypeArray1234 { + yyl1970 := r.ReadArrayStart() + if yyl1970 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1951, d) + x.codecDecodeSelfFromArray(yyl1970, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25501,12 +25767,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1952Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1952Slc - var yyhl1952 bool = l >= 0 - for yyj1952 := 0; ; yyj1952++ { - if yyhl1952 { - if yyj1952 >= l { + var yys1971Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1971Slc + var yyhl1971 bool = l >= 0 + for yyj1971 := 0; ; yyj1971++ { + if yyhl1971 { + if yyj1971 >= l { break } } else { @@ -25515,10 +25781,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1952Slc = r.DecodeBytes(yys1952Slc, true, true) - yys1952 := string(yys1952Slc) + yys1971Slc = r.DecodeBytes(yys1971Slc, true, true) + yys1971 := string(yys1971Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1952 { + switch yys1971 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -25532,9 +25798,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1952) - } // end switch yys1952 - } // end for yyj1952 + z.DecStructFieldNotFound(-1, yys1971) + } // end switch yys1971 + } // end for yyj1971 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25542,16 +25808,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1955 int - var yyb1955 bool - var yyhl1955 bool = l >= 0 - yyj1955++ - if yyhl1955 { - yyb1955 = yyj1955 > l + var yyj1974 int + var yyb1974 bool + var yyhl1974 bool = l >= 0 + yyj1974++ + if yyhl1974 { + yyb1974 = yyj1974 > l } else { - yyb1955 = r.CheckBreak() + yyb1974 = r.CheckBreak() } - if yyb1955 { + if yyb1974 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25561,13 +25827,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj1955++ - if yyhl1955 { - yyb1955 = yyj1955 > l + yyj1974++ + if yyhl1974 { + yyb1974 = yyj1974 > l } else { - yyb1955 = r.CheckBreak() + yyb1974 = r.CheckBreak() } - if yyb1955 { + if yyb1974 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25578,17 +25844,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj1955++ - if yyhl1955 { - yyb1955 = yyj1955 > l + yyj1974++ + if yyhl1974 { + yyb1974 = yyj1974 > l } else { - yyb1955 = r.CheckBreak() + yyb1974 = r.CheckBreak() } - if yyb1955 { + if yyb1974 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1955-1, "") + z.DecStructFieldNotFound(yyj1974-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25600,56 +25866,56 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1958 := z.EncBinary() - _ = yym1958 + yym1977 := z.EncBinary() + _ = yym1977 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1959 := !z.EncBinary() - yy2arr1959 := z.EncBasicHandle().StructToArray - var yyq1959 [7]bool - _, _, _ = yysep1959, yyq1959, yy2arr1959 - const yyr1959 bool = false - yyq1959[0] = x.Type != "" - yyq1959[3] = x.ClusterIP != "" - yyq1959[4] = len(x.ExternalIPs) != 0 - yyq1959[5] = x.LoadBalancerIP != "" - yyq1959[6] = x.SessionAffinity != "" - var yynn1959 int - if yyr1959 || yy2arr1959 { + yysep1978 := !z.EncBinary() + yy2arr1978 := z.EncBasicHandle().StructToArray + var yyq1978 [7]bool + _, _, _ = yysep1978, yyq1978, yy2arr1978 + const yyr1978 bool = false + yyq1978[0] = x.Type != "" + yyq1978[3] = x.ClusterIP != "" + yyq1978[4] = len(x.ExternalIPs) != 0 + yyq1978[5] = x.LoadBalancerIP != "" + yyq1978[6] = x.SessionAffinity != "" + var yynn1978 int + if yyr1978 || yy2arr1978 { r.EncodeArrayStart(7) } else { - yynn1959 = 2 - for _, b := range yyq1959 { + yynn1978 = 2 + for _, b := range yyq1978 { if b { - yynn1959++ + yynn1978++ } } - r.EncodeMapStart(yynn1959) - yynn1959 = 0 + r.EncodeMapStart(yynn1978) + yynn1978 = 0 } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1959[0] { + if yyq1978[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1959[0] { + if yyq1978[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym1962 := z.EncBinary() - _ = yym1962 + yym1981 := z.EncBinary() + _ = yym1981 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -25662,21 +25928,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym1963 := z.EncBinary() - _ = yym1963 + yym1982 := z.EncBinary() + _ = yym1982 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym1965 := z.EncBinary() - _ = yym1965 + yym1984 := z.EncBinary() + _ = yym1984 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -25689,19 +25955,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym1966 := z.EncBinary() - _ = yym1966 + yym1985 := z.EncBinary() + _ = yym1985 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1959[3] { - yym1968 := z.EncBinary() - _ = yym1968 + if yyq1978[3] { + yym1987 := z.EncBinary() + _ = yym1987 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -25710,26 +25976,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1959[3] { + if yyq1978[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1969 := z.EncBinary() - _ = yym1969 + yym1988 := z.EncBinary() + _ = yym1988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1959[4] { + if yyq1978[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1971 := z.EncBinary() - _ = yym1971 + yym1990 := z.EncBinary() + _ = yym1990 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25739,15 +26005,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1959[4] { + if yyq1978[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1972 := z.EncBinary() - _ = yym1972 + yym1991 := z.EncBinary() + _ = yym1991 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25755,11 +26021,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1959[5] { - yym1974 := z.EncBinary() - _ = yym1974 + if yyq1978[5] { + yym1993 := z.EncBinary() + _ = yym1993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -25768,34 +26034,34 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1959[5] { + if yyq1978[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1975 := z.EncBinary() - _ = yym1975 + yym1994 := z.EncBinary() + _ = yym1994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1959[6] { + if yyq1978[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1959[6] { + if yyq1978[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr1959 || yy2arr1959 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25808,25 +26074,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1977 := z.DecBinary() - _ = yym1977 + yym1996 := z.DecBinary() + _ = yym1996 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1978 := r.ContainerType() - if yyct1978 == codecSelferValueTypeMap1234 { - yyl1978 := r.ReadMapStart() - if yyl1978 == 0 { + yyct1997 := r.ContainerType() + if yyct1997 == codecSelferValueTypeMap1234 { + yyl1997 := r.ReadMapStart() + if yyl1997 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1978, d) + x.codecDecodeSelfFromMap(yyl1997, d) } - } else if yyct1978 == codecSelferValueTypeArray1234 { - yyl1978 := r.ReadArrayStart() - if yyl1978 == 0 { + } else if yyct1997 == codecSelferValueTypeArray1234 { + yyl1997 := r.ReadArrayStart() + if yyl1997 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1978, d) + x.codecDecodeSelfFromArray(yyl1997, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25838,12 +26104,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1979Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1979Slc - var yyhl1979 bool = l >= 0 - for yyj1979 := 0; ; yyj1979++ { - if yyhl1979 { - if yyj1979 >= l { + var yys1998Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1998Slc + var yyhl1998 bool = l >= 0 + for yyj1998 := 0; ; yyj1998++ { + if yyhl1998 { + if yyj1998 >= l { break } } else { @@ -25852,10 +26118,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1979Slc = r.DecodeBytes(yys1979Slc, true, true) - yys1979 := string(yys1979Slc) + yys1998Slc = r.DecodeBytes(yys1998Slc, true, true) + yys1998 := string(yys1998Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1979 { + switch yys1998 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -25866,24 +26132,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1981 := &x.Ports - yym1982 := z.DecBinary() - _ = yym1982 + yyv2000 := &x.Ports + yym2001 := z.DecBinary() + _ = yym2001 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1981), d) + h.decSliceServicePort((*[]ServicePort)(yyv2000), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1983 := &x.Selector - yym1984 := z.DecBinary() - _ = yym1984 + yyv2002 := &x.Selector + yym2003 := z.DecBinary() + _ = yym2003 if false { } else { - z.F.DecMapStringStringX(yyv1983, false, d) + z.F.DecMapStringStringX(yyv2002, false, d) } } case "clusterIP": @@ -25896,12 +26162,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1986 := &x.ExternalIPs - yym1987 := z.DecBinary() - _ = yym1987 + yyv2005 := &x.ExternalIPs + yym2006 := z.DecBinary() + _ = yym2006 if false { } else { - z.F.DecSliceStringX(yyv1986, false, d) + z.F.DecSliceStringX(yyv2005, false, d) } } case "loadBalancerIP": @@ -25917,9 +26183,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1979) - } // end switch yys1979 - } // end for yyj1979 + z.DecStructFieldNotFound(-1, yys1998) + } // end switch yys1998 + } // end for yyj1998 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25927,16 +26193,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1990 int - var yyb1990 bool - var yyhl1990 bool = l >= 0 - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + var yyj2009 int + var yyb2009 bool + var yyhl2009 bool = l >= 0 + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25946,13 +26212,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25960,21 +26226,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1992 := &x.Ports - yym1993 := z.DecBinary() - _ = yym1993 + yyv2011 := &x.Ports + yym2012 := z.DecBinary() + _ = yym2012 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1992), d) + h.decSliceServicePort((*[]ServicePort)(yyv2011), d) } } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25982,21 +26248,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1994 := &x.Selector - yym1995 := z.DecBinary() - _ = yym1995 + yyv2013 := &x.Selector + yym2014 := z.DecBinary() + _ = yym2014 if false { } else { - z.F.DecMapStringStringX(yyv1994, false, d) + z.F.DecMapStringStringX(yyv2013, false, d) } } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26006,13 +26272,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26020,21 +26286,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1997 := &x.ExternalIPs - yym1998 := z.DecBinary() - _ = yym1998 + yyv2016 := &x.ExternalIPs + yym2017 := z.DecBinary() + _ = yym2017 if false { } else { - z.F.DecSliceStringX(yyv1997, false, d) + z.F.DecSliceStringX(yyv2016, false, d) } } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26044,13 +26310,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26061,17 +26327,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } for { - yyj1990++ - if yyhl1990 { - yyb1990 = yyj1990 > l + yyj2009++ + if yyhl2009 { + yyb2009 = yyj2009 > l } else { - yyb1990 = r.CheckBreak() + yyb2009 = r.CheckBreak() } - if yyb1990 { + if yyb2009 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1990-1, "") + z.DecStructFieldNotFound(yyj2009-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26083,33 +26349,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2001 := z.EncBinary() - _ = yym2001 + yym2020 := z.EncBinary() + _ = yym2020 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2002 := !z.EncBinary() - yy2arr2002 := z.EncBasicHandle().StructToArray - var yyq2002 [5]bool - _, _, _ = yysep2002, yyq2002, yy2arr2002 - const yyr2002 bool = false - var yynn2002 int - if yyr2002 || yy2arr2002 { + yysep2021 := !z.EncBinary() + yy2arr2021 := z.EncBasicHandle().StructToArray + var yyq2021 [5]bool + _, _, _ = yysep2021, yyq2021, yy2arr2021 + const yyr2021 bool = false + var yynn2021 int + if yyr2021 || yy2arr2021 { r.EncodeArrayStart(5) } else { - yynn2002 = 5 - for _, b := range yyq2002 { + yynn2021 = 5 + for _, b := range yyq2021 { if b { - yynn2002++ + yynn2021++ } } - r.EncodeMapStart(yynn2002) - yynn2002 = 0 + r.EncodeMapStart(yynn2021) + yynn2021 = 0 } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2004 := z.EncBinary() - _ = yym2004 + yym2023 := z.EncBinary() + _ = yym2023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -26118,14 +26384,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2005 := z.EncBinary() - _ = yym2005 + yym2024 := z.EncBinary() + _ = yym2024 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -26134,10 +26400,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2008 := z.EncBinary() - _ = yym2008 + yym2027 := z.EncBinary() + _ = yym2027 if false { } else { r.EncodeInt(int64(x.Port)) @@ -26146,44 +26412,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2009 := z.EncBinary() - _ = yym2009 + yym2028 := z.EncBinary() + _ = yym2028 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2011 := &x.TargetPort - yym2012 := z.EncBinary() - _ = yym2012 + yy2030 := &x.TargetPort + yym2031 := z.EncBinary() + _ = yym2031 if false { - } else if z.HasExtensions() && z.EncExt(yy2011) { - } else if !yym2012 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2011) + } else if z.HasExtensions() && z.EncExt(yy2030) { + } else if !yym2031 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2030) } else { - z.EncFallback(yy2011) + z.EncFallback(yy2030) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2013 := &x.TargetPort - yym2014 := z.EncBinary() - _ = yym2014 + yy2032 := &x.TargetPort + yym2033 := z.EncBinary() + _ = yym2033 if false { - } else if z.HasExtensions() && z.EncExt(yy2013) { - } else if !yym2014 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2013) + } else if z.HasExtensions() && z.EncExt(yy2032) { + } else if !yym2033 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2032) } else { - z.EncFallback(yy2013) + z.EncFallback(yy2032) } } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2016 := z.EncBinary() - _ = yym2016 + yym2035 := z.EncBinary() + _ = yym2035 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -26192,14 +26458,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2017 := z.EncBinary() - _ = yym2017 + yym2036 := z.EncBinary() + _ = yym2036 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr2002 || yy2arr2002 { + if yyr2021 || yy2arr2021 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26212,25 +26478,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2018 := z.DecBinary() - _ = yym2018 + yym2037 := z.DecBinary() + _ = yym2037 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2019 := r.ContainerType() - if yyct2019 == codecSelferValueTypeMap1234 { - yyl2019 := r.ReadMapStart() - if yyl2019 == 0 { + yyct2038 := r.ContainerType() + if yyct2038 == codecSelferValueTypeMap1234 { + yyl2038 := r.ReadMapStart() + if yyl2038 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2019, d) + x.codecDecodeSelfFromMap(yyl2038, d) } - } else if yyct2019 == codecSelferValueTypeArray1234 { - yyl2019 := r.ReadArrayStart() - if yyl2019 == 0 { + } else if yyct2038 == codecSelferValueTypeArray1234 { + yyl2038 := r.ReadArrayStart() + if yyl2038 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2019, d) + x.codecDecodeSelfFromArray(yyl2038, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26242,12 +26508,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2020Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2020Slc - var yyhl2020 bool = l >= 0 - for yyj2020 := 0; ; yyj2020++ { - if yyhl2020 { - if yyj2020 >= l { + var yys2039Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2039Slc + var yyhl2039 bool = l >= 0 + for yyj2039 := 0; ; yyj2039++ { + if yyhl2039 { + if yyj2039 >= l { break } } else { @@ -26256,10 +26522,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2020Slc = r.DecodeBytes(yys2020Slc, true, true) - yys2020 := string(yys2020Slc) + yys2039Slc = r.DecodeBytes(yys2039Slc, true, true) + yys2039 := string(yys2039Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2020 { + switch yys2039 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -26282,15 +26548,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2024 := &x.TargetPort - yym2025 := z.DecBinary() - _ = yym2025 + yyv2043 := &x.TargetPort + yym2044 := z.DecBinary() + _ = yym2044 if false { - } else if z.HasExtensions() && z.DecExt(yyv2024) { - } else if !yym2025 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2024) + } else if z.HasExtensions() && z.DecExt(yyv2043) { + } else if !yym2044 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2043) } else { - z.DecFallback(yyv2024, false) + z.DecFallback(yyv2043, false) } } case "nodePort": @@ -26300,9 +26566,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys2020) - } // end switch yys2020 - } // end for yyj2020 + z.DecStructFieldNotFound(-1, yys2039) + } // end switch yys2039 + } // end for yyj2039 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26310,16 +26576,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2027 int - var yyb2027 bool - var yyhl2027 bool = l >= 0 - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + var yyj2046 int + var yyb2046 bool + var yyhl2046 bool = l >= 0 + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26329,13 +26595,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26345,13 +26611,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26361,13 +26627,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26375,24 +26641,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv2031 := &x.TargetPort - yym2032 := z.DecBinary() - _ = yym2032 + yyv2050 := &x.TargetPort + yym2051 := z.DecBinary() + _ = yym2051 if false { - } else if z.HasExtensions() && z.DecExt(yyv2031) { - } else if !yym2032 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2031) + } else if z.HasExtensions() && z.DecExt(yyv2050) { + } else if !yym2051 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2050) } else { - z.DecFallback(yyv2031, false) + z.DecFallback(yyv2050, false) } } - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26403,17 +26669,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj2027++ - if yyhl2027 { - yyb2027 = yyj2027 > l + yyj2046++ + if yyhl2046 { + yyb2046 = yyj2046 > l } else { - yyb2027 = r.CheckBreak() + yyb2046 = r.CheckBreak() } - if yyb2027 { + if yyb2046 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2027-1, "") + z.DecStructFieldNotFound(yyj2046-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26425,39 +26691,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2034 := z.EncBinary() - _ = yym2034 + yym2053 := z.EncBinary() + _ = yym2053 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2035 := !z.EncBinary() - yy2arr2035 := z.EncBasicHandle().StructToArray - var yyq2035 [5]bool - _, _, _ = yysep2035, yyq2035, yy2arr2035 - const yyr2035 bool = false - yyq2035[0] = x.Kind != "" - yyq2035[1] = x.APIVersion != "" - yyq2035[2] = true - yyq2035[3] = true - yyq2035[4] = true - var yynn2035 int - if yyr2035 || yy2arr2035 { + yysep2054 := !z.EncBinary() + yy2arr2054 := z.EncBasicHandle().StructToArray + var yyq2054 [5]bool + _, _, _ = yysep2054, yyq2054, yy2arr2054 + const yyr2054 bool = false + yyq2054[0] = x.Kind != "" + yyq2054[1] = x.APIVersion != "" + yyq2054[2] = true + yyq2054[3] = true + yyq2054[4] = true + var yynn2054 int + if yyr2054 || yy2arr2054 { r.EncodeArrayStart(5) } else { - yynn2035 = 0 - for _, b := range yyq2035 { + yynn2054 = 0 + for _, b := range yyq2054 { if b { - yynn2035++ + yynn2054++ } } - r.EncodeMapStart(yynn2035) - yynn2035 = 0 + r.EncodeMapStart(yynn2054) + yynn2054 = 0 } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2035[0] { - yym2037 := z.EncBinary() - _ = yym2037 + if yyq2054[0] { + yym2056 := z.EncBinary() + _ = yym2056 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26466,23 +26732,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2035[0] { + if yyq2054[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2038 := z.EncBinary() - _ = yym2038 + yym2057 := z.EncBinary() + _ = yym2057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2035[1] { - yym2040 := z.EncBinary() - _ = yym2040 + if yyq2054[1] { + yym2059 := z.EncBinary() + _ = yym2059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26491,70 +26757,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2035[1] { + if yyq2054[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2041 := z.EncBinary() - _ = yym2041 + yym2060 := z.EncBinary() + _ = yym2060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2035[2] { - yy2043 := &x.ObjectMeta - yy2043.CodecEncodeSelf(e) + if yyq2054[2] { + yy2062 := &x.ObjectMeta + yy2062.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2035[2] { + if yyq2054[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2044 := &x.ObjectMeta - yy2044.CodecEncodeSelf(e) + yy2063 := &x.ObjectMeta + yy2063.CodecEncodeSelf(e) } } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2035[3] { - yy2046 := &x.Spec - yy2046.CodecEncodeSelf(e) + if yyq2054[3] { + yy2065 := &x.Spec + yy2065.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2035[3] { + if yyq2054[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2047 := &x.Spec - yy2047.CodecEncodeSelf(e) + yy2066 := &x.Spec + yy2066.CodecEncodeSelf(e) } } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2035[4] { - yy2049 := &x.Status - yy2049.CodecEncodeSelf(e) + if yyq2054[4] { + yy2068 := &x.Status + yy2068.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2035[4] { + if yyq2054[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2050 := &x.Status - yy2050.CodecEncodeSelf(e) + yy2069 := &x.Status + yy2069.CodecEncodeSelf(e) } } - if yyr2035 || yy2arr2035 { + if yyr2054 || yy2arr2054 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26567,25 +26833,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2051 := z.DecBinary() - _ = yym2051 + yym2070 := z.DecBinary() + _ = yym2070 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2052 := r.ContainerType() - if yyct2052 == codecSelferValueTypeMap1234 { - yyl2052 := r.ReadMapStart() - if yyl2052 == 0 { + yyct2071 := r.ContainerType() + if yyct2071 == codecSelferValueTypeMap1234 { + yyl2071 := r.ReadMapStart() + if yyl2071 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2052, d) + x.codecDecodeSelfFromMap(yyl2071, d) } - } else if yyct2052 == codecSelferValueTypeArray1234 { - yyl2052 := r.ReadArrayStart() - if yyl2052 == 0 { + } else if yyct2071 == codecSelferValueTypeArray1234 { + yyl2071 := r.ReadArrayStart() + if yyl2071 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2052, d) + x.codecDecodeSelfFromArray(yyl2071, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26597,12 +26863,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2053Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2053Slc - var yyhl2053 bool = l >= 0 - for yyj2053 := 0; ; yyj2053++ { - if yyhl2053 { - if yyj2053 >= l { + var yys2072Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2072Slc + var yyhl2072 bool = l >= 0 + for yyj2072 := 0; ; yyj2072++ { + if yyhl2072 { + if yyj2072 >= l { break } } else { @@ -26611,10 +26877,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2053Slc = r.DecodeBytes(yys2053Slc, true, true) - yys2053 := string(yys2053Slc) + yys2072Slc = r.DecodeBytes(yys2072Slc, true, true) + yys2072 := string(yys2072Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2053 { + switch yys2072 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26631,27 +26897,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2056 := &x.ObjectMeta - yyv2056.CodecDecodeSelf(d) + yyv2075 := &x.ObjectMeta + yyv2075.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2057 := &x.Spec - yyv2057.CodecDecodeSelf(d) + yyv2076 := &x.Spec + yyv2076.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2058 := &x.Status - yyv2058.CodecDecodeSelf(d) + yyv2077 := &x.Status + yyv2077.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2053) - } // end switch yys2053 - } // end for yyj2053 + z.DecStructFieldNotFound(-1, yys2072) + } // end switch yys2072 + } // end for yyj2072 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26659,16 +26925,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2059 int - var yyb2059 bool - var yyhl2059 bool = l >= 0 - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + var yyj2078 int + var yyb2078 bool + var yyhl2078 bool = l >= 0 + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26678,13 +26944,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26694,13 +26960,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26708,16 +26974,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2062 := &x.ObjectMeta - yyv2062.CodecDecodeSelf(d) + yyv2081 := &x.ObjectMeta + yyv2081.CodecDecodeSelf(d) } - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26725,16 +26991,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2063 := &x.Spec - yyv2063.CodecDecodeSelf(d) + yyv2082 := &x.Spec + yyv2082.CodecDecodeSelf(d) } - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26742,21 +27008,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2064 := &x.Status - yyv2064.CodecDecodeSelf(d) + yyv2083 := &x.Status + yyv2083.CodecDecodeSelf(d) } for { - yyj2059++ - if yyhl2059 { - yyb2059 = yyj2059 > l + yyj2078++ + if yyhl2078 { + yyb2078 = yyj2078 > l } else { - yyb2059 = r.CheckBreak() + yyb2078 = r.CheckBreak() } - if yyb2059 { + if yyb2078 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2059-1, "") + z.DecStructFieldNotFound(yyj2078-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26768,38 +27034,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2065 := z.EncBinary() - _ = yym2065 + yym2084 := z.EncBinary() + _ = yym2084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2066 := !z.EncBinary() - yy2arr2066 := z.EncBasicHandle().StructToArray - var yyq2066 [5]bool - _, _, _ = yysep2066, yyq2066, yy2arr2066 - const yyr2066 bool = false - yyq2066[0] = x.Kind != "" - yyq2066[1] = x.APIVersion != "" - yyq2066[2] = true - yyq2066[4] = len(x.ImagePullSecrets) != 0 - var yynn2066 int - if yyr2066 || yy2arr2066 { + yysep2085 := !z.EncBinary() + yy2arr2085 := z.EncBasicHandle().StructToArray + var yyq2085 [5]bool + _, _, _ = yysep2085, yyq2085, yy2arr2085 + const yyr2085 bool = false + yyq2085[0] = x.Kind != "" + yyq2085[1] = x.APIVersion != "" + yyq2085[2] = true + yyq2085[4] = len(x.ImagePullSecrets) != 0 + var yynn2085 int + if yyr2085 || yy2arr2085 { r.EncodeArrayStart(5) } else { - yynn2066 = 1 - for _, b := range yyq2066 { + yynn2085 = 1 + for _, b := range yyq2085 { if b { - yynn2066++ + yynn2085++ } } - r.EncodeMapStart(yynn2066) - yynn2066 = 0 + r.EncodeMapStart(yynn2085) + yynn2085 = 0 } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2066[0] { - yym2068 := z.EncBinary() - _ = yym2068 + if yyq2085[0] { + yym2087 := z.EncBinary() + _ = yym2087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26808,23 +27074,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2066[0] { + if yyq2085[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2069 := z.EncBinary() - _ = yym2069 + yym2088 := z.EncBinary() + _ = yym2088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2066[1] { - yym2071 := z.EncBinary() - _ = yym2071 + if yyq2085[1] { + yym2090 := z.EncBinary() + _ = yym2090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26833,42 +27099,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2066[1] { + if yyq2085[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2072 := z.EncBinary() - _ = yym2072 + yym2091 := z.EncBinary() + _ = yym2091 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2066[2] { - yy2074 := &x.ObjectMeta - yy2074.CodecEncodeSelf(e) + if yyq2085[2] { + yy2093 := &x.ObjectMeta + yy2093.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2066[2] { + if yyq2085[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2075 := &x.ObjectMeta - yy2075.CodecEncodeSelf(e) + yy2094 := &x.ObjectMeta + yy2094.CodecEncodeSelf(e) } } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2077 := z.EncBinary() - _ = yym2077 + yym2096 := z.EncBinary() + _ = yym2096 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -26881,22 +27147,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2078 := z.EncBinary() - _ = yym2078 + yym2097 := z.EncBinary() + _ = yym2097 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2066[4] { + if yyq2085[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2080 := z.EncBinary() - _ = yym2080 + yym2099 := z.EncBinary() + _ = yym2099 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26906,15 +27172,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2066[4] { + if yyq2085[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2081 := z.EncBinary() - _ = yym2081 + yym2100 := z.EncBinary() + _ = yym2100 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26922,7 +27188,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2066 || yy2arr2066 { + if yyr2085 || yy2arr2085 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26935,25 +27201,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2082 := z.DecBinary() - _ = yym2082 + yym2101 := z.DecBinary() + _ = yym2101 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2083 := r.ContainerType() - if yyct2083 == codecSelferValueTypeMap1234 { - yyl2083 := r.ReadMapStart() - if yyl2083 == 0 { + yyct2102 := r.ContainerType() + if yyct2102 == codecSelferValueTypeMap1234 { + yyl2102 := r.ReadMapStart() + if yyl2102 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2083, d) + x.codecDecodeSelfFromMap(yyl2102, d) } - } else if yyct2083 == codecSelferValueTypeArray1234 { - yyl2083 := r.ReadArrayStart() - if yyl2083 == 0 { + } else if yyct2102 == codecSelferValueTypeArray1234 { + yyl2102 := r.ReadArrayStart() + if yyl2102 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2083, d) + x.codecDecodeSelfFromArray(yyl2102, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26965,12 +27231,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2084Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2084Slc - var yyhl2084 bool = l >= 0 - for yyj2084 := 0; ; yyj2084++ { - if yyhl2084 { - if yyj2084 >= l { + var yys2103Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2103Slc + var yyhl2103 bool = l >= 0 + for yyj2103 := 0; ; yyj2103++ { + if yyhl2103 { + if yyj2103 >= l { break } } else { @@ -26979,10 +27245,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2084Slc = r.DecodeBytes(yys2084Slc, true, true) - yys2084 := string(yys2084Slc) + yys2103Slc = r.DecodeBytes(yys2103Slc, true, true) + yys2103 := string(yys2103Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2084 { + switch yys2103 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26999,37 +27265,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2087 := &x.ObjectMeta - yyv2087.CodecDecodeSelf(d) + yyv2106 := &x.ObjectMeta + yyv2106.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2088 := &x.Secrets - yym2089 := z.DecBinary() - _ = yym2089 + yyv2107 := &x.Secrets + yym2108 := z.DecBinary() + _ = yym2108 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2088), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2107), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2090 := &x.ImagePullSecrets - yym2091 := z.DecBinary() - _ = yym2091 + yyv2109 := &x.ImagePullSecrets + yym2110 := z.DecBinary() + _ = yym2110 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2090), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2109), d) } } default: - z.DecStructFieldNotFound(-1, yys2084) - } // end switch yys2084 - } // end for yyj2084 + z.DecStructFieldNotFound(-1, yys2103) + } // end switch yys2103 + } // end for yyj2103 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27037,16 +27303,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2092 int - var yyb2092 bool - var yyhl2092 bool = l >= 0 - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + var yyj2111 int + var yyb2111 bool + var yyhl2111 bool = l >= 0 + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27056,13 +27322,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27072,13 +27338,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27086,16 +27352,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2095 := &x.ObjectMeta - yyv2095.CodecDecodeSelf(d) + yyv2114 := &x.ObjectMeta + yyv2114.CodecDecodeSelf(d) } - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27103,21 +27369,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2096 := &x.Secrets - yym2097 := z.DecBinary() - _ = yym2097 + yyv2115 := &x.Secrets + yym2116 := z.DecBinary() + _ = yym2116 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2096), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2115), d) } } - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27125,26 +27391,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2098 := &x.ImagePullSecrets - yym2099 := z.DecBinary() - _ = yym2099 + yyv2117 := &x.ImagePullSecrets + yym2118 := z.DecBinary() + _ = yym2118 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2098), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2117), d) } } for { - yyj2092++ - if yyhl2092 { - yyb2092 = yyj2092 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2092 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2092 { + if yyb2111 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2092-1, "") + z.DecStructFieldNotFound(yyj2111-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27156,37 +27422,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2100 := z.EncBinary() - _ = yym2100 + yym2119 := z.EncBinary() + _ = yym2119 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2101 := !z.EncBinary() - yy2arr2101 := z.EncBasicHandle().StructToArray - var yyq2101 [4]bool - _, _, _ = yysep2101, yyq2101, yy2arr2101 - const yyr2101 bool = false - yyq2101[0] = x.Kind != "" - yyq2101[1] = x.APIVersion != "" - yyq2101[2] = true - var yynn2101 int - if yyr2101 || yy2arr2101 { + yysep2120 := !z.EncBinary() + yy2arr2120 := z.EncBasicHandle().StructToArray + var yyq2120 [4]bool + _, _, _ = yysep2120, yyq2120, yy2arr2120 + const yyr2120 bool = false + yyq2120[0] = x.Kind != "" + yyq2120[1] = x.APIVersion != "" + yyq2120[2] = true + var yynn2120 int + if yyr2120 || yy2arr2120 { r.EncodeArrayStart(4) } else { - yynn2101 = 1 - for _, b := range yyq2101 { + yynn2120 = 1 + for _, b := range yyq2120 { if b { - yynn2101++ + yynn2120++ } } - r.EncodeMapStart(yynn2101) - yynn2101 = 0 + r.EncodeMapStart(yynn2120) + yynn2120 = 0 } - if yyr2101 || yy2arr2101 { + if yyr2120 || yy2arr2120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2101[0] { - yym2103 := z.EncBinary() - _ = yym2103 + if yyq2120[0] { + yym2122 := z.EncBinary() + _ = yym2122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27195,23 +27461,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2101[0] { + if yyq2120[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2104 := z.EncBinary() - _ = yym2104 + yym2123 := z.EncBinary() + _ = yym2123 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2101 || yy2arr2101 { + if yyr2120 || yy2arr2120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2101[1] { - yym2106 := z.EncBinary() - _ = yym2106 + if yyq2120[1] { + yym2125 := z.EncBinary() + _ = yym2125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27220,54 +27486,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2101[1] { + if yyq2120[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2107 := z.EncBinary() - _ = yym2107 + yym2126 := z.EncBinary() + _ = yym2126 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2101 || yy2arr2101 { + if yyr2120 || yy2arr2120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2101[2] { - yy2109 := &x.ListMeta - yym2110 := z.EncBinary() - _ = yym2110 + if yyq2120[2] { + yy2128 := &x.ListMeta + yym2129 := z.EncBinary() + _ = yym2129 if false { - } else if z.HasExtensions() && z.EncExt(yy2109) { + } else if z.HasExtensions() && z.EncExt(yy2128) { } else { - z.EncFallback(yy2109) + z.EncFallback(yy2128) } } else { r.EncodeNil() } } else { - if yyq2101[2] { + if yyq2120[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2111 := &x.ListMeta - yym2112 := z.EncBinary() - _ = yym2112 + yy2130 := &x.ListMeta + yym2131 := z.EncBinary() + _ = yym2131 if false { - } else if z.HasExtensions() && z.EncExt(yy2111) { + } else if z.HasExtensions() && z.EncExt(yy2130) { } else { - z.EncFallback(yy2111) + z.EncFallback(yy2130) } } } - if yyr2101 || yy2arr2101 { + if yyr2120 || yy2arr2120 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2114 := z.EncBinary() - _ = yym2114 + yym2133 := z.EncBinary() + _ = yym2133 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -27280,15 +27546,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2115 := z.EncBinary() - _ = yym2115 + yym2134 := z.EncBinary() + _ = yym2134 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2101 || yy2arr2101 { + if yyr2120 || yy2arr2120 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27301,25 +27567,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2116 := z.DecBinary() - _ = yym2116 + yym2135 := z.DecBinary() + _ = yym2135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2117 := r.ContainerType() - if yyct2117 == codecSelferValueTypeMap1234 { - yyl2117 := r.ReadMapStart() - if yyl2117 == 0 { + yyct2136 := r.ContainerType() + if yyct2136 == codecSelferValueTypeMap1234 { + yyl2136 := r.ReadMapStart() + if yyl2136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2117, d) + x.codecDecodeSelfFromMap(yyl2136, d) } - } else if yyct2117 == codecSelferValueTypeArray1234 { - yyl2117 := r.ReadArrayStart() - if yyl2117 == 0 { + } else if yyct2136 == codecSelferValueTypeArray1234 { + yyl2136 := r.ReadArrayStart() + if yyl2136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2117, d) + x.codecDecodeSelfFromArray(yyl2136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27331,12 +27597,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2118Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2118Slc - var yyhl2118 bool = l >= 0 - for yyj2118 := 0; ; yyj2118++ { - if yyhl2118 { - if yyj2118 >= l { + var yys2137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2137Slc + var yyhl2137 bool = l >= 0 + for yyj2137 := 0; ; yyj2137++ { + if yyhl2137 { + if yyj2137 >= l { break } } else { @@ -27345,10 +27611,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2118Slc = r.DecodeBytes(yys2118Slc, true, true) - yys2118 := string(yys2118Slc) + yys2137Slc = r.DecodeBytes(yys2137Slc, true, true) + yys2137 := string(yys2137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2118 { + switch yys2137 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27365,31 +27631,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2121 := &x.ListMeta - yym2122 := z.DecBinary() - _ = yym2122 + yyv2140 := &x.ListMeta + yym2141 := z.DecBinary() + _ = yym2141 if false { - } else if z.HasExtensions() && z.DecExt(yyv2121) { + } else if z.HasExtensions() && z.DecExt(yyv2140) { } else { - z.DecFallback(yyv2121, false) + z.DecFallback(yyv2140, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2123 := &x.Items - yym2124 := z.DecBinary() - _ = yym2124 + yyv2142 := &x.Items + yym2143 := z.DecBinary() + _ = yym2143 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2123), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2142), d) } } default: - z.DecStructFieldNotFound(-1, yys2118) - } // end switch yys2118 - } // end for yyj2118 + z.DecStructFieldNotFound(-1, yys2137) + } // end switch yys2137 + } // end for yyj2137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27397,16 +27663,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2125 int - var yyb2125 bool - var yyhl2125 bool = l >= 0 - yyj2125++ - if yyhl2125 { - yyb2125 = yyj2125 > l + var yyj2144 int + var yyb2144 bool + var yyhl2144 bool = l >= 0 + yyj2144++ + if yyhl2144 { + yyb2144 = yyj2144 > l } else { - yyb2125 = r.CheckBreak() + yyb2144 = r.CheckBreak() } - if yyb2125 { + if yyb2144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27416,13 +27682,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2125++ - if yyhl2125 { - yyb2125 = yyj2125 > l + yyj2144++ + if yyhl2144 { + yyb2144 = yyj2144 > l } else { - yyb2125 = r.CheckBreak() + yyb2144 = r.CheckBreak() } - if yyb2125 { + if yyb2144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27432,13 +27698,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2125++ - if yyhl2125 { - yyb2125 = yyj2125 > l + yyj2144++ + if yyhl2144 { + yyb2144 = yyj2144 > l } else { - yyb2125 = r.CheckBreak() + yyb2144 = r.CheckBreak() } - if yyb2125 { + if yyb2144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27446,22 +27712,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2128 := &x.ListMeta - yym2129 := z.DecBinary() - _ = yym2129 + yyv2147 := &x.ListMeta + yym2148 := z.DecBinary() + _ = yym2148 if false { - } else if z.HasExtensions() && z.DecExt(yyv2128) { + } else if z.HasExtensions() && z.DecExt(yyv2147) { } else { - z.DecFallback(yyv2128, false) + z.DecFallback(yyv2147, false) } } - yyj2125++ - if yyhl2125 { - yyb2125 = yyj2125 > l + yyj2144++ + if yyhl2144 { + yyb2144 = yyj2144 > l } else { - yyb2125 = r.CheckBreak() + yyb2144 = r.CheckBreak() } - if yyb2125 { + if yyb2144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27469,26 +27735,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2130 := &x.Items - yym2131 := z.DecBinary() - _ = yym2131 + yyv2149 := &x.Items + yym2150 := z.DecBinary() + _ = yym2150 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2130), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2149), d) } } for { - yyj2125++ - if yyhl2125 { - yyb2125 = yyj2125 > l + yyj2144++ + if yyhl2144 { + yyb2144 = yyj2144 > l } else { - yyb2125 = r.CheckBreak() + yyb2144 = r.CheckBreak() } - if yyb2125 { + if yyb2144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2125-1, "") + z.DecStructFieldNotFound(yyj2144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27500,37 +27766,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2132 := z.EncBinary() - _ = yym2132 + yym2151 := z.EncBinary() + _ = yym2151 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2133 := !z.EncBinary() - yy2arr2133 := z.EncBasicHandle().StructToArray - var yyq2133 [4]bool - _, _, _ = yysep2133, yyq2133, yy2arr2133 - const yyr2133 bool = false - yyq2133[0] = x.Kind != "" - yyq2133[1] = x.APIVersion != "" - yyq2133[2] = true - var yynn2133 int - if yyr2133 || yy2arr2133 { + yysep2152 := !z.EncBinary() + yy2arr2152 := z.EncBasicHandle().StructToArray + var yyq2152 [4]bool + _, _, _ = yysep2152, yyq2152, yy2arr2152 + const yyr2152 bool = false + yyq2152[0] = x.Kind != "" + yyq2152[1] = x.APIVersion != "" + yyq2152[2] = true + var yynn2152 int + if yyr2152 || yy2arr2152 { r.EncodeArrayStart(4) } else { - yynn2133 = 1 - for _, b := range yyq2133 { + yynn2152 = 1 + for _, b := range yyq2152 { if b { - yynn2133++ + yynn2152++ } } - r.EncodeMapStart(yynn2133) - yynn2133 = 0 + r.EncodeMapStart(yynn2152) + yynn2152 = 0 } - if yyr2133 || yy2arr2133 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2133[0] { - yym2135 := z.EncBinary() - _ = yym2135 + if yyq2152[0] { + yym2154 := z.EncBinary() + _ = yym2154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27539,23 +27805,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2133[0] { + if yyq2152[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2136 := z.EncBinary() - _ = yym2136 + yym2155 := z.EncBinary() + _ = yym2155 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2133 || yy2arr2133 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2133[1] { - yym2138 := z.EncBinary() - _ = yym2138 + if yyq2152[1] { + yym2157 := z.EncBinary() + _ = yym2157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27564,42 +27830,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2133[1] { + if yyq2152[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2139 := z.EncBinary() - _ = yym2139 + yym2158 := z.EncBinary() + _ = yym2158 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2133 || yy2arr2133 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2133[2] { - yy2141 := &x.ObjectMeta - yy2141.CodecEncodeSelf(e) + if yyq2152[2] { + yy2160 := &x.ObjectMeta + yy2160.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2133[2] { + if yyq2152[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2142 := &x.ObjectMeta - yy2142.CodecEncodeSelf(e) + yy2161 := &x.ObjectMeta + yy2161.CodecEncodeSelf(e) } } - if yyr2133 || yy2arr2133 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2144 := z.EncBinary() - _ = yym2144 + yym2163 := z.EncBinary() + _ = yym2163 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -27612,15 +27878,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2145 := z.EncBinary() - _ = yym2145 + yym2164 := z.EncBinary() + _ = yym2164 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2133 || yy2arr2133 { + if yyr2152 || yy2arr2152 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27633,25 +27899,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2146 := z.DecBinary() - _ = yym2146 + yym2165 := z.DecBinary() + _ = yym2165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2147 := r.ContainerType() - if yyct2147 == codecSelferValueTypeMap1234 { - yyl2147 := r.ReadMapStart() - if yyl2147 == 0 { + yyct2166 := r.ContainerType() + if yyct2166 == codecSelferValueTypeMap1234 { + yyl2166 := r.ReadMapStart() + if yyl2166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2147, d) + x.codecDecodeSelfFromMap(yyl2166, d) } - } else if yyct2147 == codecSelferValueTypeArray1234 { - yyl2147 := r.ReadArrayStart() - if yyl2147 == 0 { + } else if yyct2166 == codecSelferValueTypeArray1234 { + yyl2166 := r.ReadArrayStart() + if yyl2166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2147, d) + x.codecDecodeSelfFromArray(yyl2166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27663,12 +27929,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2148Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2148Slc - var yyhl2148 bool = l >= 0 - for yyj2148 := 0; ; yyj2148++ { - if yyhl2148 { - if yyj2148 >= l { + var yys2167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2167Slc + var yyhl2167 bool = l >= 0 + for yyj2167 := 0; ; yyj2167++ { + if yyhl2167 { + if yyj2167 >= l { break } } else { @@ -27677,10 +27943,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2148Slc = r.DecodeBytes(yys2148Slc, true, true) - yys2148 := string(yys2148Slc) + yys2167Slc = r.DecodeBytes(yys2167Slc, true, true) + yys2167 := string(yys2167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2148 { + switch yys2167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27697,25 +27963,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2151 := &x.ObjectMeta - yyv2151.CodecDecodeSelf(d) + yyv2170 := &x.ObjectMeta + yyv2170.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2152 := &x.Subsets - yym2153 := z.DecBinary() - _ = yym2153 + yyv2171 := &x.Subsets + yym2172 := z.DecBinary() + _ = yym2172 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2152), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2171), d) } } default: - z.DecStructFieldNotFound(-1, yys2148) - } // end switch yys2148 - } // end for yyj2148 + z.DecStructFieldNotFound(-1, yys2167) + } // end switch yys2167 + } // end for yyj2167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27723,16 +27989,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2154 int - var yyb2154 bool - var yyhl2154 bool = l >= 0 - yyj2154++ - if yyhl2154 { - yyb2154 = yyj2154 > l + var yyj2173 int + var yyb2173 bool + var yyhl2173 bool = l >= 0 + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2154 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2154 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27742,13 +28008,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2154++ - if yyhl2154 { - yyb2154 = yyj2154 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2154 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2154 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27758,13 +28024,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2154++ - if yyhl2154 { - yyb2154 = yyj2154 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2154 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2154 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27772,16 +28038,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2157 := &x.ObjectMeta - yyv2157.CodecDecodeSelf(d) + yyv2176 := &x.ObjectMeta + yyv2176.CodecDecodeSelf(d) } - yyj2154++ - if yyhl2154 { - yyb2154 = yyj2154 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2154 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2154 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27789,26 +28055,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2158 := &x.Subsets - yym2159 := z.DecBinary() - _ = yym2159 + yyv2177 := &x.Subsets + yym2178 := z.DecBinary() + _ = yym2178 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2158), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2177), d) } } for { - yyj2154++ - if yyhl2154 { - yyb2154 = yyj2154 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2154 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2154 { + if yyb2173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2154-1, "") + z.DecStructFieldNotFound(yyj2173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27820,36 +28086,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2160 := z.EncBinary() - _ = yym2160 + yym2179 := z.EncBinary() + _ = yym2179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2161 := !z.EncBinary() - yy2arr2161 := z.EncBasicHandle().StructToArray - var yyq2161 [3]bool - _, _, _ = yysep2161, yyq2161, yy2arr2161 - const yyr2161 bool = false - var yynn2161 int - if yyr2161 || yy2arr2161 { + yysep2180 := !z.EncBinary() + yy2arr2180 := z.EncBasicHandle().StructToArray + var yyq2180 [3]bool + _, _, _ = yysep2180, yyq2180, yy2arr2180 + const yyr2180 bool = false + var yynn2180 int + if yyr2180 || yy2arr2180 { r.EncodeArrayStart(3) } else { - yynn2161 = 3 - for _, b := range yyq2161 { + yynn2180 = 3 + for _, b := range yyq2180 { if b { - yynn2161++ + yynn2180++ } } - r.EncodeMapStart(yynn2161) - yynn2161 = 0 + r.EncodeMapStart(yynn2180) + yynn2180 = 0 } - if yyr2161 || yy2arr2161 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2163 := z.EncBinary() - _ = yym2163 + yym2182 := z.EncBinary() + _ = yym2182 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -27862,21 +28128,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2164 := z.EncBinary() - _ = yym2164 + yym2183 := z.EncBinary() + _ = yym2183 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2161 || yy2arr2161 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2166 := z.EncBinary() - _ = yym2166 + yym2185 := z.EncBinary() + _ = yym2185 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27889,21 +28155,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2167 := z.EncBinary() - _ = yym2167 + yym2186 := z.EncBinary() + _ = yym2186 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2161 || yy2arr2161 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2169 := z.EncBinary() - _ = yym2169 + yym2188 := z.EncBinary() + _ = yym2188 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27916,15 +28182,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2170 := z.EncBinary() - _ = yym2170 + yym2189 := z.EncBinary() + _ = yym2189 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2161 || yy2arr2161 { + if yyr2180 || yy2arr2180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27937,25 +28203,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2171 := z.DecBinary() - _ = yym2171 + yym2190 := z.DecBinary() + _ = yym2190 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2172 := r.ContainerType() - if yyct2172 == codecSelferValueTypeMap1234 { - yyl2172 := r.ReadMapStart() - if yyl2172 == 0 { + yyct2191 := r.ContainerType() + if yyct2191 == codecSelferValueTypeMap1234 { + yyl2191 := r.ReadMapStart() + if yyl2191 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2172, d) + x.codecDecodeSelfFromMap(yyl2191, d) } - } else if yyct2172 == codecSelferValueTypeArray1234 { - yyl2172 := r.ReadArrayStart() - if yyl2172 == 0 { + } else if yyct2191 == codecSelferValueTypeArray1234 { + yyl2191 := r.ReadArrayStart() + if yyl2191 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2172, d) + x.codecDecodeSelfFromArray(yyl2191, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27967,12 +28233,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2173Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2173Slc - var yyhl2173 bool = l >= 0 - for yyj2173 := 0; ; yyj2173++ { - if yyhl2173 { - if yyj2173 >= l { + var yys2192Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2192Slc + var yyhl2192 bool = l >= 0 + for yyj2192 := 0; ; yyj2192++ { + if yyhl2192 { + if yyj2192 >= l { break } } else { @@ -27981,50 +28247,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2173Slc = r.DecodeBytes(yys2173Slc, true, true) - yys2173 := string(yys2173Slc) + yys2192Slc = r.DecodeBytes(yys2192Slc, true, true) + yys2192 := string(yys2192Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2173 { + switch yys2192 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2174 := &x.Addresses - yym2175 := z.DecBinary() - _ = yym2175 + yyv2193 := &x.Addresses + yym2194 := z.DecBinary() + _ = yym2194 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2174), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2193), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2176 := &x.NotReadyAddresses - yym2177 := z.DecBinary() - _ = yym2177 + yyv2195 := &x.NotReadyAddresses + yym2196 := z.DecBinary() + _ = yym2196 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2176), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2195), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2178 := &x.Ports - yym2179 := z.DecBinary() - _ = yym2179 + yyv2197 := &x.Ports + yym2198 := z.DecBinary() + _ = yym2198 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2178), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2197), d) } } default: - z.DecStructFieldNotFound(-1, yys2173) - } // end switch yys2173 - } // end for yyj2173 + z.DecStructFieldNotFound(-1, yys2192) + } // end switch yys2192 + } // end for yyj2192 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28032,16 +28298,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2180 int - var yyb2180 bool - var yyhl2180 bool = l >= 0 - yyj2180++ - if yyhl2180 { - yyb2180 = yyj2180 > l + var yyj2199 int + var yyb2199 bool + var yyhl2199 bool = l >= 0 + yyj2199++ + if yyhl2199 { + yyb2199 = yyj2199 > l } else { - yyb2180 = r.CheckBreak() + yyb2199 = r.CheckBreak() } - if yyb2180 { + if yyb2199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28049,21 +28315,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2181 := &x.Addresses - yym2182 := z.DecBinary() - _ = yym2182 + yyv2200 := &x.Addresses + yym2201 := z.DecBinary() + _ = yym2201 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2181), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2200), d) } } - yyj2180++ - if yyhl2180 { - yyb2180 = yyj2180 > l + yyj2199++ + if yyhl2199 { + yyb2199 = yyj2199 > l } else { - yyb2180 = r.CheckBreak() + yyb2199 = r.CheckBreak() } - if yyb2180 { + if yyb2199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28071,21 +28337,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2183 := &x.NotReadyAddresses - yym2184 := z.DecBinary() - _ = yym2184 + yyv2202 := &x.NotReadyAddresses + yym2203 := z.DecBinary() + _ = yym2203 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2183), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2202), d) } } - yyj2180++ - if yyhl2180 { - yyb2180 = yyj2180 > l + yyj2199++ + if yyhl2199 { + yyb2199 = yyj2199 > l } else { - yyb2180 = r.CheckBreak() + yyb2199 = r.CheckBreak() } - if yyb2180 { + if yyb2199 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28093,26 +28359,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2185 := &x.Ports - yym2186 := z.DecBinary() - _ = yym2186 + yyv2204 := &x.Ports + yym2205 := z.DecBinary() + _ = yym2205 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2185), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2204), d) } } for { - yyj2180++ - if yyhl2180 { - yyb2180 = yyj2180 > l + yyj2199++ + if yyhl2199 { + yyb2199 = yyj2199 > l } else { - yyb2180 = r.CheckBreak() + yyb2199 = r.CheckBreak() } - if yyb2180 { + if yyb2199 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2180-1, "") + z.DecStructFieldNotFound(yyj2199-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28124,33 +28390,33 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2187 := z.EncBinary() - _ = yym2187 + yym2206 := z.EncBinary() + _ = yym2206 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2188 := !z.EncBinary() - yy2arr2188 := z.EncBasicHandle().StructToArray - var yyq2188 [2]bool - _, _, _ = yysep2188, yyq2188, yy2arr2188 - const yyr2188 bool = false - var yynn2188 int - if yyr2188 || yy2arr2188 { + yysep2207 := !z.EncBinary() + yy2arr2207 := z.EncBasicHandle().StructToArray + var yyq2207 [2]bool + _, _, _ = yysep2207, yyq2207, yy2arr2207 + const yyr2207 bool = false + var yynn2207 int + if yyr2207 || yy2arr2207 { r.EncodeArrayStart(2) } else { - yynn2188 = 2 - for _, b := range yyq2188 { + yynn2207 = 2 + for _, b := range yyq2207 { if b { - yynn2188++ + yynn2207++ } } - r.EncodeMapStart(yynn2188) - yynn2188 = 0 + r.EncodeMapStart(yynn2207) + yynn2207 = 0 } - if yyr2188 || yy2arr2188 { + if yyr2207 || yy2arr2207 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2190 := z.EncBinary() - _ = yym2190 + yym2209 := z.EncBinary() + _ = yym2209 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -28159,14 +28425,14 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2191 := z.EncBinary() - _ = yym2191 + yym2210 := z.EncBinary() + _ = yym2210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2188 || yy2arr2188 { + if yyr2207 || yy2arr2207 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -28183,7 +28449,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2188 || yy2arr2188 { + if yyr2207 || yy2arr2207 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28196,25 +28462,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2193 := z.DecBinary() - _ = yym2193 + yym2212 := z.DecBinary() + _ = yym2212 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2194 := r.ContainerType() - if yyct2194 == codecSelferValueTypeMap1234 { - yyl2194 := r.ReadMapStart() - if yyl2194 == 0 { + yyct2213 := r.ContainerType() + if yyct2213 == codecSelferValueTypeMap1234 { + yyl2213 := r.ReadMapStart() + if yyl2213 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2194, d) + x.codecDecodeSelfFromMap(yyl2213, d) } - } else if yyct2194 == codecSelferValueTypeArray1234 { - yyl2194 := r.ReadArrayStart() - if yyl2194 == 0 { + } else if yyct2213 == codecSelferValueTypeArray1234 { + yyl2213 := r.ReadArrayStart() + if yyl2213 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2194, d) + x.codecDecodeSelfFromArray(yyl2213, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28226,12 +28492,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2195Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2195Slc - var yyhl2195 bool = l >= 0 - for yyj2195 := 0; ; yyj2195++ { - if yyhl2195 { - if yyj2195 >= l { + var yys2214Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2214Slc + var yyhl2214 bool = l >= 0 + for yyj2214 := 0; ; yyj2214++ { + if yyhl2214 { + if yyj2214 >= l { break } } else { @@ -28240,10 +28506,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2195Slc = r.DecodeBytes(yys2195Slc, true, true) - yys2195 := string(yys2195Slc) + yys2214Slc = r.DecodeBytes(yys2214Slc, true, true) + yys2214 := string(yys2214Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2195 { + switch yys2214 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -28262,9 +28528,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2195) - } // end switch yys2195 - } // end for yyj2195 + z.DecStructFieldNotFound(-1, yys2214) + } // end switch yys2214 + } // end for yyj2214 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28272,16 +28538,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2198 int - var yyb2198 bool - var yyhl2198 bool = l >= 0 - yyj2198++ - if yyhl2198 { - yyb2198 = yyj2198 > l + var yyj2217 int + var yyb2217 bool + var yyhl2217 bool = l >= 0 + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2198 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2198 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28291,13 +28557,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2198++ - if yyhl2198 { - yyb2198 = yyj2198 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2198 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2198 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28313,17 +28579,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2198++ - if yyhl2198 { - yyb2198 = yyj2198 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2198 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2198 { + if yyb2217 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2198-1, "") + z.DecStructFieldNotFound(yyj2217-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28335,33 +28601,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2201 := z.EncBinary() - _ = yym2201 + yym2220 := z.EncBinary() + _ = yym2220 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2202 := !z.EncBinary() - yy2arr2202 := z.EncBasicHandle().StructToArray - var yyq2202 [3]bool - _, _, _ = yysep2202, yyq2202, yy2arr2202 - const yyr2202 bool = false - var yynn2202 int - if yyr2202 || yy2arr2202 { + yysep2221 := !z.EncBinary() + yy2arr2221 := z.EncBasicHandle().StructToArray + var yyq2221 [3]bool + _, _, _ = yysep2221, yyq2221, yy2arr2221 + const yyr2221 bool = false + var yynn2221 int + if yyr2221 || yy2arr2221 { r.EncodeArrayStart(3) } else { - yynn2202 = 3 - for _, b := range yyq2202 { + yynn2221 = 3 + for _, b := range yyq2221 { if b { - yynn2202++ + yynn2221++ } } - r.EncodeMapStart(yynn2202) - yynn2202 = 0 + r.EncodeMapStart(yynn2221) + yynn2221 = 0 } - if yyr2202 || yy2arr2202 { + if yyr2221 || yy2arr2221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2204 := z.EncBinary() - _ = yym2204 + yym2223 := z.EncBinary() + _ = yym2223 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -28370,17 +28636,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2205 := z.EncBinary() - _ = yym2205 + yym2224 := z.EncBinary() + _ = yym2224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2202 || yy2arr2202 { + if yyr2221 || yy2arr2221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2207 := z.EncBinary() - _ = yym2207 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else { r.EncodeInt(int64(x.Port)) @@ -28389,14 +28655,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2208 := z.EncBinary() - _ = yym2208 + yym2227 := z.EncBinary() + _ = yym2227 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2202 || yy2arr2202 { + if yyr2221 || yy2arr2221 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -28405,7 +28671,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2202 || yy2arr2202 { + if yyr2221 || yy2arr2221 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28418,25 +28684,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2210 := z.DecBinary() - _ = yym2210 + yym2229 := z.DecBinary() + _ = yym2229 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2211 := r.ContainerType() - if yyct2211 == codecSelferValueTypeMap1234 { - yyl2211 := r.ReadMapStart() - if yyl2211 == 0 { + yyct2230 := r.ContainerType() + if yyct2230 == codecSelferValueTypeMap1234 { + yyl2230 := r.ReadMapStart() + if yyl2230 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2211, d) + x.codecDecodeSelfFromMap(yyl2230, d) } - } else if yyct2211 == codecSelferValueTypeArray1234 { - yyl2211 := r.ReadArrayStart() - if yyl2211 == 0 { + } else if yyct2230 == codecSelferValueTypeArray1234 { + yyl2230 := r.ReadArrayStart() + if yyl2230 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2211, d) + x.codecDecodeSelfFromArray(yyl2230, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28448,12 +28714,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2212Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2212Slc - var yyhl2212 bool = l >= 0 - for yyj2212 := 0; ; yyj2212++ { - if yyhl2212 { - if yyj2212 >= l { + var yys2231Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2231Slc + var yyhl2231 bool = l >= 0 + for yyj2231 := 0; ; yyj2231++ { + if yyhl2231 { + if yyj2231 >= l { break } } else { @@ -28462,10 +28728,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2212Slc = r.DecodeBytes(yys2212Slc, true, true) - yys2212 := string(yys2212Slc) + yys2231Slc = r.DecodeBytes(yys2231Slc, true, true) + yys2231 := string(yys2231Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2212 { + switch yys2231 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -28485,9 +28751,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2212) - } // end switch yys2212 - } // end for yyj2212 + z.DecStructFieldNotFound(-1, yys2231) + } // end switch yys2231 + } // end for yyj2231 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28495,16 +28761,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2216 int - var yyb2216 bool - var yyhl2216 bool = l >= 0 - yyj2216++ - if yyhl2216 { - yyb2216 = yyj2216 > l + var yyj2235 int + var yyb2235 bool + var yyhl2235 bool = l >= 0 + yyj2235++ + if yyhl2235 { + yyb2235 = yyj2235 > l } else { - yyb2216 = r.CheckBreak() + yyb2235 = r.CheckBreak() } - if yyb2216 { + if yyb2235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28514,13 +28780,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2216++ - if yyhl2216 { - yyb2216 = yyj2216 > l + yyj2235++ + if yyhl2235 { + yyb2235 = yyj2235 > l } else { - yyb2216 = r.CheckBreak() + yyb2235 = r.CheckBreak() } - if yyb2216 { + if yyb2235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28530,13 +28796,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2216++ - if yyhl2216 { - yyb2216 = yyj2216 > l + yyj2235++ + if yyhl2235 { + yyb2235 = yyj2235 > l } else { - yyb2216 = r.CheckBreak() + yyb2235 = r.CheckBreak() } - if yyb2216 { + if yyb2235 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28547,17 +28813,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2216++ - if yyhl2216 { - yyb2216 = yyj2216 > l + yyj2235++ + if yyhl2235 { + yyb2235 = yyj2235 > l } else { - yyb2216 = r.CheckBreak() + yyb2235 = r.CheckBreak() } - if yyb2216 { + if yyb2235 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2216-1, "") + z.DecStructFieldNotFound(yyj2235-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28569,37 +28835,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2220 := z.EncBinary() - _ = yym2220 + yym2239 := z.EncBinary() + _ = yym2239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2221 := !z.EncBinary() - yy2arr2221 := z.EncBasicHandle().StructToArray - var yyq2221 [4]bool - _, _, _ = yysep2221, yyq2221, yy2arr2221 - const yyr2221 bool = false - yyq2221[0] = x.Kind != "" - yyq2221[1] = x.APIVersion != "" - yyq2221[2] = true - var yynn2221 int - if yyr2221 || yy2arr2221 { + yysep2240 := !z.EncBinary() + yy2arr2240 := z.EncBasicHandle().StructToArray + var yyq2240 [4]bool + _, _, _ = yysep2240, yyq2240, yy2arr2240 + const yyr2240 bool = false + yyq2240[0] = x.Kind != "" + yyq2240[1] = x.APIVersion != "" + yyq2240[2] = true + var yynn2240 int + if yyr2240 || yy2arr2240 { r.EncodeArrayStart(4) } else { - yynn2221 = 1 - for _, b := range yyq2221 { + yynn2240 = 1 + for _, b := range yyq2240 { if b { - yynn2221++ + yynn2240++ } } - r.EncodeMapStart(yynn2221) - yynn2221 = 0 + r.EncodeMapStart(yynn2240) + yynn2240 = 0 } - if yyr2221 || yy2arr2221 { + if yyr2240 || yy2arr2240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2221[0] { - yym2223 := z.EncBinary() - _ = yym2223 + if yyq2240[0] { + yym2242 := z.EncBinary() + _ = yym2242 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28608,23 +28874,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2221[0] { + if yyq2240[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2224 := z.EncBinary() - _ = yym2224 + yym2243 := z.EncBinary() + _ = yym2243 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2221 || yy2arr2221 { + if yyr2240 || yy2arr2240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2221[1] { - yym2226 := z.EncBinary() - _ = yym2226 + if yyq2240[1] { + yym2245 := z.EncBinary() + _ = yym2245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28633,54 +28899,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2221[1] { + if yyq2240[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2227 := z.EncBinary() - _ = yym2227 + yym2246 := z.EncBinary() + _ = yym2246 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2221 || yy2arr2221 { + if yyr2240 || yy2arr2240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2221[2] { - yy2229 := &x.ListMeta - yym2230 := z.EncBinary() - _ = yym2230 + if yyq2240[2] { + yy2248 := &x.ListMeta + yym2249 := z.EncBinary() + _ = yym2249 if false { - } else if z.HasExtensions() && z.EncExt(yy2229) { + } else if z.HasExtensions() && z.EncExt(yy2248) { } else { - z.EncFallback(yy2229) + z.EncFallback(yy2248) } } else { r.EncodeNil() } } else { - if yyq2221[2] { + if yyq2240[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2231 := &x.ListMeta - yym2232 := z.EncBinary() - _ = yym2232 + yy2250 := &x.ListMeta + yym2251 := z.EncBinary() + _ = yym2251 if false { - } else if z.HasExtensions() && z.EncExt(yy2231) { + } else if z.HasExtensions() && z.EncExt(yy2250) { } else { - z.EncFallback(yy2231) + z.EncFallback(yy2250) } } } - if yyr2221 || yy2arr2221 { + if yyr2240 || yy2arr2240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2234 := z.EncBinary() - _ = yym2234 + yym2253 := z.EncBinary() + _ = yym2253 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -28693,15 +28959,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2235 := z.EncBinary() - _ = yym2235 + yym2254 := z.EncBinary() + _ = yym2254 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2221 || yy2arr2221 { + if yyr2240 || yy2arr2240 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28714,25 +28980,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2236 := z.DecBinary() - _ = yym2236 + yym2255 := z.DecBinary() + _ = yym2255 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2237 := r.ContainerType() - if yyct2237 == codecSelferValueTypeMap1234 { - yyl2237 := r.ReadMapStart() - if yyl2237 == 0 { + yyct2256 := r.ContainerType() + if yyct2256 == codecSelferValueTypeMap1234 { + yyl2256 := r.ReadMapStart() + if yyl2256 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2237, d) + x.codecDecodeSelfFromMap(yyl2256, d) } - } else if yyct2237 == codecSelferValueTypeArray1234 { - yyl2237 := r.ReadArrayStart() - if yyl2237 == 0 { + } else if yyct2256 == codecSelferValueTypeArray1234 { + yyl2256 := r.ReadArrayStart() + if yyl2256 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2237, d) + x.codecDecodeSelfFromArray(yyl2256, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28744,12 +29010,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2238Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2238Slc - var yyhl2238 bool = l >= 0 - for yyj2238 := 0; ; yyj2238++ { - if yyhl2238 { - if yyj2238 >= l { + var yys2257Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2257Slc + var yyhl2257 bool = l >= 0 + for yyj2257 := 0; ; yyj2257++ { + if yyhl2257 { + if yyj2257 >= l { break } } else { @@ -28758,10 +29024,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2238Slc = r.DecodeBytes(yys2238Slc, true, true) - yys2238 := string(yys2238Slc) + yys2257Slc = r.DecodeBytes(yys2257Slc, true, true) + yys2257 := string(yys2257Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2238 { + switch yys2257 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28778,31 +29044,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2241 := &x.ListMeta - yym2242 := z.DecBinary() - _ = yym2242 + yyv2260 := &x.ListMeta + yym2261 := z.DecBinary() + _ = yym2261 if false { - } else if z.HasExtensions() && z.DecExt(yyv2241) { + } else if z.HasExtensions() && z.DecExt(yyv2260) { } else { - z.DecFallback(yyv2241, false) + z.DecFallback(yyv2260, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2243 := &x.Items - yym2244 := z.DecBinary() - _ = yym2244 + yyv2262 := &x.Items + yym2263 := z.DecBinary() + _ = yym2263 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2243), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2262), d) } } default: - z.DecStructFieldNotFound(-1, yys2238) - } // end switch yys2238 - } // end for yyj2238 + z.DecStructFieldNotFound(-1, yys2257) + } // end switch yys2257 + } // end for yyj2257 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28810,16 +29076,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2245 int - var yyb2245 bool - var yyhl2245 bool = l >= 0 - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + var yyj2264 int + var yyb2264 bool + var yyhl2264 bool = l >= 0 + yyj2264++ + if yyhl2264 { + yyb2264 = yyj2264 > l } else { - yyb2245 = r.CheckBreak() + yyb2264 = r.CheckBreak() } - if yyb2245 { + if yyb2264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28829,13 +29095,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2264++ + if yyhl2264 { + yyb2264 = yyj2264 > l } else { - yyb2245 = r.CheckBreak() + yyb2264 = r.CheckBreak() } - if yyb2245 { + if yyb2264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28845,13 +29111,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2264++ + if yyhl2264 { + yyb2264 = yyj2264 > l } else { - yyb2245 = r.CheckBreak() + yyb2264 = r.CheckBreak() } - if yyb2245 { + if yyb2264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28859,22 +29125,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2248 := &x.ListMeta - yym2249 := z.DecBinary() - _ = yym2249 + yyv2267 := &x.ListMeta + yym2268 := z.DecBinary() + _ = yym2268 if false { - } else if z.HasExtensions() && z.DecExt(yyv2248) { + } else if z.HasExtensions() && z.DecExt(yyv2267) { } else { - z.DecFallback(yyv2248, false) + z.DecFallback(yyv2267, false) } } - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2264++ + if yyhl2264 { + yyb2264 = yyj2264 > l } else { - yyb2245 = r.CheckBreak() + yyb2264 = r.CheckBreak() } - if yyb2245 { + if yyb2264 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28882,26 +29148,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2250 := &x.Items - yym2251 := z.DecBinary() - _ = yym2251 + yyv2269 := &x.Items + yym2270 := z.DecBinary() + _ = yym2270 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2250), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2269), d) } } for { - yyj2245++ - if yyhl2245 { - yyb2245 = yyj2245 > l + yyj2264++ + if yyhl2264 { + yyb2264 = yyj2264 > l } else { - yyb2245 = r.CheckBreak() + yyb2264 = r.CheckBreak() } - if yyb2245 { + if yyb2264 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2245-1, "") + z.DecStructFieldNotFound(yyj2264-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28913,38 +29179,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2252 := z.EncBinary() - _ = yym2252 + yym2271 := z.EncBinary() + _ = yym2271 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2253 := !z.EncBinary() - yy2arr2253 := z.EncBasicHandle().StructToArray - var yyq2253 [4]bool - _, _, _ = yysep2253, yyq2253, yy2arr2253 - const yyr2253 bool = false - yyq2253[0] = x.PodCIDR != "" - yyq2253[1] = x.ExternalID != "" - yyq2253[2] = x.ProviderID != "" - yyq2253[3] = x.Unschedulable != false - var yynn2253 int - if yyr2253 || yy2arr2253 { + yysep2272 := !z.EncBinary() + yy2arr2272 := z.EncBasicHandle().StructToArray + var yyq2272 [4]bool + _, _, _ = yysep2272, yyq2272, yy2arr2272 + const yyr2272 bool = false + yyq2272[0] = x.PodCIDR != "" + yyq2272[1] = x.ExternalID != "" + yyq2272[2] = x.ProviderID != "" + yyq2272[3] = x.Unschedulable != false + var yynn2272 int + if yyr2272 || yy2arr2272 { r.EncodeArrayStart(4) } else { - yynn2253 = 0 - for _, b := range yyq2253 { + yynn2272 = 0 + for _, b := range yyq2272 { if b { - yynn2253++ + yynn2272++ } } - r.EncodeMapStart(yynn2253) - yynn2253 = 0 + r.EncodeMapStart(yynn2272) + yynn2272 = 0 } - if yyr2253 || yy2arr2253 { + if yyr2272 || yy2arr2272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2253[0] { - yym2255 := z.EncBinary() - _ = yym2255 + if yyq2272[0] { + yym2274 := z.EncBinary() + _ = yym2274 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -28953,23 +29219,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2253[0] { + if yyq2272[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2256 := z.EncBinary() - _ = yym2256 + yym2275 := z.EncBinary() + _ = yym2275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2253 || yy2arr2253 { + if yyr2272 || yy2arr2272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2253[1] { - yym2258 := z.EncBinary() - _ = yym2258 + if yyq2272[1] { + yym2277 := z.EncBinary() + _ = yym2277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -28978,23 +29244,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2253[1] { + if yyq2272[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2259 := z.EncBinary() - _ = yym2259 + yym2278 := z.EncBinary() + _ = yym2278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2253 || yy2arr2253 { + if yyr2272 || yy2arr2272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2253[2] { - yym2261 := z.EncBinary() - _ = yym2261 + if yyq2272[2] { + yym2280 := z.EncBinary() + _ = yym2280 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -29003,23 +29269,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2253[2] { + if yyq2272[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2262 := z.EncBinary() - _ = yym2262 + yym2281 := z.EncBinary() + _ = yym2281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2253 || yy2arr2253 { + if yyr2272 || yy2arr2272 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2253[3] { - yym2264 := z.EncBinary() - _ = yym2264 + if yyq2272[3] { + yym2283 := z.EncBinary() + _ = yym2283 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -29028,19 +29294,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2253[3] { + if yyq2272[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2265 := z.EncBinary() - _ = yym2265 + yym2284 := z.EncBinary() + _ = yym2284 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2253 || yy2arr2253 { + if yyr2272 || yy2arr2272 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29053,25 +29319,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2266 := z.DecBinary() - _ = yym2266 + yym2285 := z.DecBinary() + _ = yym2285 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2267 := r.ContainerType() - if yyct2267 == codecSelferValueTypeMap1234 { - yyl2267 := r.ReadMapStart() - if yyl2267 == 0 { + yyct2286 := r.ContainerType() + if yyct2286 == codecSelferValueTypeMap1234 { + yyl2286 := r.ReadMapStart() + if yyl2286 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2267, d) + x.codecDecodeSelfFromMap(yyl2286, d) } - } else if yyct2267 == codecSelferValueTypeArray1234 { - yyl2267 := r.ReadArrayStart() - if yyl2267 == 0 { + } else if yyct2286 == codecSelferValueTypeArray1234 { + yyl2286 := r.ReadArrayStart() + if yyl2286 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2267, d) + x.codecDecodeSelfFromArray(yyl2286, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29083,12 +29349,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2268Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2268Slc - var yyhl2268 bool = l >= 0 - for yyj2268 := 0; ; yyj2268++ { - if yyhl2268 { - if yyj2268 >= l { + var yys2287Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2287Slc + var yyhl2287 bool = l >= 0 + for yyj2287 := 0; ; yyj2287++ { + if yyhl2287 { + if yyj2287 >= l { break } } else { @@ -29097,10 +29363,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2268Slc = r.DecodeBytes(yys2268Slc, true, true) - yys2268 := string(yys2268Slc) + yys2287Slc = r.DecodeBytes(yys2287Slc, true, true) + yys2287 := string(yys2287Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2268 { + switch yys2287 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -29126,9 +29392,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2268) - } // end switch yys2268 - } // end for yyj2268 + z.DecStructFieldNotFound(-1, yys2287) + } // end switch yys2287 + } // end for yyj2287 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29136,16 +29402,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2273 int - var yyb2273 bool - var yyhl2273 bool = l >= 0 - yyj2273++ - if yyhl2273 { - yyb2273 = yyj2273 > l + var yyj2292 int + var yyb2292 bool + var yyhl2292 bool = l >= 0 + yyj2292++ + if yyhl2292 { + yyb2292 = yyj2292 > l } else { - yyb2273 = r.CheckBreak() + yyb2292 = r.CheckBreak() } - if yyb2273 { + if yyb2292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29155,13 +29421,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2273++ - if yyhl2273 { - yyb2273 = yyj2273 > l + yyj2292++ + if yyhl2292 { + yyb2292 = yyj2292 > l } else { - yyb2273 = r.CheckBreak() + yyb2292 = r.CheckBreak() } - if yyb2273 { + if yyb2292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29171,13 +29437,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2273++ - if yyhl2273 { - yyb2273 = yyj2273 > l + yyj2292++ + if yyhl2292 { + yyb2292 = yyj2292 > l } else { - yyb2273 = r.CheckBreak() + yyb2292 = r.CheckBreak() } - if yyb2273 { + if yyb2292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29187,13 +29453,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2273++ - if yyhl2273 { - yyb2273 = yyj2273 > l + yyj2292++ + if yyhl2292 { + yyb2292 = yyj2292 > l } else { - yyb2273 = r.CheckBreak() + yyb2292 = r.CheckBreak() } - if yyb2273 { + if yyb2292 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29204,17 +29470,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2273++ - if yyhl2273 { - yyb2273 = yyj2273 > l + yyj2292++ + if yyhl2292 { + yyb2292 = yyj2292 > l } else { - yyb2273 = r.CheckBreak() + yyb2292 = r.CheckBreak() } - if yyb2273 { + if yyb2292 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2273-1, "") + z.DecStructFieldNotFound(yyj2292-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29226,33 +29492,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2278 := z.EncBinary() - _ = yym2278 + yym2297 := z.EncBinary() + _ = yym2297 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2279 := !z.EncBinary() - yy2arr2279 := z.EncBasicHandle().StructToArray - var yyq2279 [1]bool - _, _, _ = yysep2279, yyq2279, yy2arr2279 - const yyr2279 bool = false - var yynn2279 int - if yyr2279 || yy2arr2279 { + yysep2298 := !z.EncBinary() + yy2arr2298 := z.EncBasicHandle().StructToArray + var yyq2298 [1]bool + _, _, _ = yysep2298, yyq2298, yy2arr2298 + const yyr2298 bool = false + var yynn2298 int + if yyr2298 || yy2arr2298 { r.EncodeArrayStart(1) } else { - yynn2279 = 1 - for _, b := range yyq2279 { + yynn2298 = 1 + for _, b := range yyq2298 { if b { - yynn2279++ + yynn2298++ } } - r.EncodeMapStart(yynn2279) - yynn2279 = 0 + r.EncodeMapStart(yynn2298) + yynn2298 = 0 } - if yyr2279 || yy2arr2279 { + if yyr2298 || yy2arr2298 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2281 := z.EncBinary() - _ = yym2281 + yym2300 := z.EncBinary() + _ = yym2300 if false { } else { r.EncodeInt(int64(x.Port)) @@ -29261,14 +29527,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2282 := z.EncBinary() - _ = yym2282 + yym2301 := z.EncBinary() + _ = yym2301 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2279 || yy2arr2279 { + if yyr2298 || yy2arr2298 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29281,25 +29547,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2283 := z.DecBinary() - _ = yym2283 + yym2302 := z.DecBinary() + _ = yym2302 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2284 := r.ContainerType() - if yyct2284 == codecSelferValueTypeMap1234 { - yyl2284 := r.ReadMapStart() - if yyl2284 == 0 { + yyct2303 := r.ContainerType() + if yyct2303 == codecSelferValueTypeMap1234 { + yyl2303 := r.ReadMapStart() + if yyl2303 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2284, d) + x.codecDecodeSelfFromMap(yyl2303, d) } - } else if yyct2284 == codecSelferValueTypeArray1234 { - yyl2284 := r.ReadArrayStart() - if yyl2284 == 0 { + } else if yyct2303 == codecSelferValueTypeArray1234 { + yyl2303 := r.ReadArrayStart() + if yyl2303 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2284, d) + x.codecDecodeSelfFromArray(yyl2303, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29311,12 +29577,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2285Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2285Slc - var yyhl2285 bool = l >= 0 - for yyj2285 := 0; ; yyj2285++ { - if yyhl2285 { - if yyj2285 >= l { + var yys2304Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2304Slc + var yyhl2304 bool = l >= 0 + for yyj2304 := 0; ; yyj2304++ { + if yyhl2304 { + if yyj2304 >= l { break } } else { @@ -29325,10 +29591,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2285Slc = r.DecodeBytes(yys2285Slc, true, true) - yys2285 := string(yys2285Slc) + yys2304Slc = r.DecodeBytes(yys2304Slc, true, true) + yys2304 := string(yys2304Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2285 { + switch yys2304 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -29336,9 +29602,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys2285) - } // end switch yys2285 - } // end for yyj2285 + z.DecStructFieldNotFound(-1, yys2304) + } // end switch yys2304 + } // end for yyj2304 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29346,16 +29612,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2287 int - var yyb2287 bool - var yyhl2287 bool = l >= 0 - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + var yyj2306 int + var yyb2306 bool + var yyhl2306 bool = l >= 0 + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2287 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2287 { + if yyb2306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29366,17 +29632,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj2287++ - if yyhl2287 { - yyb2287 = yyj2287 > l + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2287 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2287 { + if yyb2306 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2287-1, "") + z.DecStructFieldNotFound(yyj2306-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29388,48 +29654,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2289 := z.EncBinary() - _ = yym2289 + yym2308 := z.EncBinary() + _ = yym2308 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2290 := !z.EncBinary() - yy2arr2290 := z.EncBasicHandle().StructToArray - var yyq2290 [1]bool - _, _, _ = yysep2290, yyq2290, yy2arr2290 - const yyr2290 bool = false - yyq2290[0] = true - var yynn2290 int - if yyr2290 || yy2arr2290 { + yysep2309 := !z.EncBinary() + yy2arr2309 := z.EncBasicHandle().StructToArray + var yyq2309 [1]bool + _, _, _ = yysep2309, yyq2309, yy2arr2309 + const yyr2309 bool = false + yyq2309[0] = true + var yynn2309 int + if yyr2309 || yy2arr2309 { r.EncodeArrayStart(1) } else { - yynn2290 = 0 - for _, b := range yyq2290 { + yynn2309 = 0 + for _, b := range yyq2309 { if b { - yynn2290++ + yynn2309++ } } - r.EncodeMapStart(yynn2290) - yynn2290 = 0 + r.EncodeMapStart(yynn2309) + yynn2309 = 0 } - if yyr2290 || yy2arr2290 { + if yyr2309 || yy2arr2309 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2290[0] { - yy2292 := &x.KubeletEndpoint - yy2292.CodecEncodeSelf(e) + if yyq2309[0] { + yy2311 := &x.KubeletEndpoint + yy2311.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2290[0] { + if yyq2309[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2293 := &x.KubeletEndpoint - yy2293.CodecEncodeSelf(e) + yy2312 := &x.KubeletEndpoint + yy2312.CodecEncodeSelf(e) } } - if yyr2290 || yy2arr2290 { + if yyr2309 || yy2arr2309 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29442,25 +29708,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2294 := z.DecBinary() - _ = yym2294 + yym2313 := z.DecBinary() + _ = yym2313 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2295 := r.ContainerType() - if yyct2295 == codecSelferValueTypeMap1234 { - yyl2295 := r.ReadMapStart() - if yyl2295 == 0 { + yyct2314 := r.ContainerType() + if yyct2314 == codecSelferValueTypeMap1234 { + yyl2314 := r.ReadMapStart() + if yyl2314 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2295, d) + x.codecDecodeSelfFromMap(yyl2314, d) } - } else if yyct2295 == codecSelferValueTypeArray1234 { - yyl2295 := r.ReadArrayStart() - if yyl2295 == 0 { + } else if yyct2314 == codecSelferValueTypeArray1234 { + yyl2314 := r.ReadArrayStart() + if yyl2314 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2295, d) + x.codecDecodeSelfFromArray(yyl2314, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29472,12 +29738,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2296Slc - var yyhl2296 bool = l >= 0 - for yyj2296 := 0; ; yyj2296++ { - if yyhl2296 { - if yyj2296 >= l { + var yys2315Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2315Slc + var yyhl2315 bool = l >= 0 + for yyj2315 := 0; ; yyj2315++ { + if yyhl2315 { + if yyj2315 >= l { break } } else { @@ -29486,21 +29752,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2296Slc = r.DecodeBytes(yys2296Slc, true, true) - yys2296 := string(yys2296Slc) + yys2315Slc = r.DecodeBytes(yys2315Slc, true, true) + yys2315 := string(yys2315Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2296 { + switch yys2315 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2297 := &x.KubeletEndpoint - yyv2297.CodecDecodeSelf(d) + yyv2316 := &x.KubeletEndpoint + yyv2316.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2296) - } // end switch yys2296 - } // end for yyj2296 + z.DecStructFieldNotFound(-1, yys2315) + } // end switch yys2315 + } // end for yyj2315 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29508,16 +29774,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2298 int - var yyb2298 bool - var yyhl2298 bool = l >= 0 - yyj2298++ - if yyhl2298 { - yyb2298 = yyj2298 > l + var yyj2317 int + var yyb2317 bool + var yyhl2317 bool = l >= 0 + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2298 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2298 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29525,21 +29791,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2299 := &x.KubeletEndpoint - yyv2299.CodecDecodeSelf(d) + yyv2318 := &x.KubeletEndpoint + yyv2318.CodecDecodeSelf(d) } for { - yyj2298++ - if yyhl2298 { - yyb2298 = yyj2298 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2298 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2298 { + if yyb2317 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2298-1, "") + z.DecStructFieldNotFound(yyj2317-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29551,33 +29817,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2300 := z.EncBinary() - _ = yym2300 + yym2319 := z.EncBinary() + _ = yym2319 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2301 := !z.EncBinary() - yy2arr2301 := z.EncBasicHandle().StructToArray - var yyq2301 [8]bool - _, _, _ = yysep2301, yyq2301, yy2arr2301 - const yyr2301 bool = false - var yynn2301 int - if yyr2301 || yy2arr2301 { + yysep2320 := !z.EncBinary() + yy2arr2320 := z.EncBasicHandle().StructToArray + var yyq2320 [8]bool + _, _, _ = yysep2320, yyq2320, yy2arr2320 + const yyr2320 bool = false + var yynn2320 int + if yyr2320 || yy2arr2320 { r.EncodeArrayStart(8) } else { - yynn2301 = 8 - for _, b := range yyq2301 { + yynn2320 = 8 + for _, b := range yyq2320 { if b { - yynn2301++ + yynn2320++ } } - r.EncodeMapStart(yynn2301) - yynn2301 = 0 + r.EncodeMapStart(yynn2320) + yynn2320 = 0 } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2303 := z.EncBinary() - _ = yym2303 + yym2322 := z.EncBinary() + _ = yym2322 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -29586,17 +29852,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2304 := z.EncBinary() - _ = yym2304 + yym2323 := z.EncBinary() + _ = yym2323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2306 := z.EncBinary() - _ = yym2306 + yym2325 := z.EncBinary() + _ = yym2325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -29605,17 +29871,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2307 := z.EncBinary() - _ = yym2307 + yym2326 := z.EncBinary() + _ = yym2326 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2309 := z.EncBinary() - _ = yym2309 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -29624,17 +29890,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2310 := z.EncBinary() - _ = yym2310 + yym2329 := z.EncBinary() + _ = yym2329 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2312 := z.EncBinary() - _ = yym2312 + yym2331 := z.EncBinary() + _ = yym2331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -29643,17 +29909,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2313 := z.EncBinary() - _ = yym2313 + yym2332 := z.EncBinary() + _ = yym2332 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2315 := z.EncBinary() - _ = yym2315 + yym2334 := z.EncBinary() + _ = yym2334 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -29662,17 +29928,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2316 := z.EncBinary() - _ = yym2316 + yym2335 := z.EncBinary() + _ = yym2335 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2318 := z.EncBinary() - _ = yym2318 + yym2337 := z.EncBinary() + _ = yym2337 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -29681,17 +29947,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2319 := z.EncBinary() - _ = yym2319 + yym2338 := z.EncBinary() + _ = yym2338 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2321 := z.EncBinary() - _ = yym2321 + yym2340 := z.EncBinary() + _ = yym2340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -29700,17 +29966,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2322 := z.EncBinary() - _ = yym2322 + yym2341 := z.EncBinary() + _ = yym2341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2324 := z.EncBinary() - _ = yym2324 + yym2343 := z.EncBinary() + _ = yym2343 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -29719,14 +29985,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2325 := z.EncBinary() - _ = yym2325 + yym2344 := z.EncBinary() + _ = yym2344 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2301 || yy2arr2301 { + if yyr2320 || yy2arr2320 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29739,25 +30005,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2326 := z.DecBinary() - _ = yym2326 + yym2345 := z.DecBinary() + _ = yym2345 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2327 := r.ContainerType() - if yyct2327 == codecSelferValueTypeMap1234 { - yyl2327 := r.ReadMapStart() - if yyl2327 == 0 { + yyct2346 := r.ContainerType() + if yyct2346 == codecSelferValueTypeMap1234 { + yyl2346 := r.ReadMapStart() + if yyl2346 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2327, d) + x.codecDecodeSelfFromMap(yyl2346, d) } - } else if yyct2327 == codecSelferValueTypeArray1234 { - yyl2327 := r.ReadArrayStart() - if yyl2327 == 0 { + } else if yyct2346 == codecSelferValueTypeArray1234 { + yyl2346 := r.ReadArrayStart() + if yyl2346 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2327, d) + x.codecDecodeSelfFromArray(yyl2346, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29769,12 +30035,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2328Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2328Slc - var yyhl2328 bool = l >= 0 - for yyj2328 := 0; ; yyj2328++ { - if yyhl2328 { - if yyj2328 >= l { + var yys2347Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2347Slc + var yyhl2347 bool = l >= 0 + for yyj2347 := 0; ; yyj2347++ { + if yyhl2347 { + if yyj2347 >= l { break } } else { @@ -29783,10 +30049,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2328Slc = r.DecodeBytes(yys2328Slc, true, true) - yys2328 := string(yys2328Slc) + yys2347Slc = r.DecodeBytes(yys2347Slc, true, true) + yys2347 := string(yys2347Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2328 { + switch yys2347 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -29836,9 +30102,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2328) - } // end switch yys2328 - } // end for yyj2328 + z.DecStructFieldNotFound(-1, yys2347) + } // end switch yys2347 + } // end for yyj2347 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29846,16 +30112,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2337 int - var yyb2337 bool - var yyhl2337 bool = l >= 0 - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + var yyj2356 int + var yyb2356 bool + var yyhl2356 bool = l >= 0 + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29865,13 +30131,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29881,13 +30147,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29897,13 +30163,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29913,13 +30179,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29929,13 +30195,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29945,13 +30211,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29961,13 +30227,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29978,17 +30244,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2337++ - if yyhl2337 { - yyb2337 = yyj2337 > l + yyj2356++ + if yyhl2356 { + yyb2356 = yyj2356 > l } else { - yyb2337 = r.CheckBreak() + yyb2356 = r.CheckBreak() } - if yyb2337 { + if yyb2356 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2337-1, "") + z.DecStructFieldNotFound(yyj2356-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30000,39 +30266,39 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2346 := z.EncBinary() - _ = yym2346 + yym2365 := z.EncBinary() + _ = yym2365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2347 := !z.EncBinary() - yy2arr2347 := z.EncBasicHandle().StructToArray - var yyq2347 [8]bool - _, _, _ = yysep2347, yyq2347, yy2arr2347 - const yyr2347 bool = false - yyq2347[0] = len(x.Capacity) != 0 - yyq2347[1] = len(x.Allocatable) != 0 - yyq2347[2] = x.Phase != "" - yyq2347[3] = len(x.Conditions) != 0 - yyq2347[4] = len(x.Addresses) != 0 - yyq2347[5] = true - yyq2347[6] = true - var yynn2347 int - if yyr2347 || yy2arr2347 { + yysep2366 := !z.EncBinary() + yy2arr2366 := z.EncBasicHandle().StructToArray + var yyq2366 [8]bool + _, _, _ = yysep2366, yyq2366, yy2arr2366 + const yyr2366 bool = false + yyq2366[0] = len(x.Capacity) != 0 + yyq2366[1] = len(x.Allocatable) != 0 + yyq2366[2] = x.Phase != "" + yyq2366[3] = len(x.Conditions) != 0 + yyq2366[4] = len(x.Addresses) != 0 + yyq2366[5] = true + yyq2366[6] = true + var yynn2366 int + if yyr2366 || yy2arr2366 { r.EncodeArrayStart(8) } else { - yynn2347 = 1 - for _, b := range yyq2347 { + yynn2366 = 1 + for _, b := range yyq2366 { if b { - yynn2347++ + yynn2366++ } } - r.EncodeMapStart(yynn2347) - yynn2347 = 0 + r.EncodeMapStart(yynn2366) + yynn2366 = 0 } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[0] { + if yyq2366[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -30042,7 +30308,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2347[0] { + if yyq2366[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -30053,9 +30319,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[1] { + if yyq2366[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -30065,7 +30331,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2347[1] { + if yyq2366[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -30076,29 +30342,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[2] { + if yyq2366[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2347[2] { + if yyq2366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[3] { + if yyq2366[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2352 := z.EncBinary() - _ = yym2352 + yym2371 := z.EncBinary() + _ = yym2371 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -30108,15 +30374,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2347[3] { + if yyq2366[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2353 := z.EncBinary() - _ = yym2353 + yym2372 := z.EncBinary() + _ = yym2372 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -30124,14 +30390,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[4] { + if yyq2366[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2355 := z.EncBinary() - _ = yym2355 + yym2374 := z.EncBinary() + _ = yym2374 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -30141,15 +30407,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2347[4] { + if yyq2366[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2356 := z.EncBinary() - _ = yym2356 + yym2375 := z.EncBinary() + _ = yym2375 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -30157,47 +30423,47 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[5] { - yy2358 := &x.DaemonEndpoints - yy2358.CodecEncodeSelf(e) + if yyq2366[5] { + yy2377 := &x.DaemonEndpoints + yy2377.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2347[5] { + if yyq2366[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2359 := &x.DaemonEndpoints - yy2359.CodecEncodeSelf(e) + yy2378 := &x.DaemonEndpoints + yy2378.CodecEncodeSelf(e) } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2347[6] { - yy2361 := &x.NodeInfo - yy2361.CodecEncodeSelf(e) + if yyq2366[6] { + yy2380 := &x.NodeInfo + yy2380.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2347[6] { + if yyq2366[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2362 := &x.NodeInfo - yy2362.CodecEncodeSelf(e) + yy2381 := &x.NodeInfo + yy2381.CodecEncodeSelf(e) } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Images == nil { r.EncodeNil() } else { - yym2364 := z.EncBinary() - _ = yym2364 + yym2383 := z.EncBinary() + _ = yym2383 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -30210,15 +30476,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x.Images == nil { r.EncodeNil() } else { - yym2365 := z.EncBinary() - _ = yym2365 + yym2384 := z.EncBinary() + _ = yym2384 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) } } } - if yyr2347 || yy2arr2347 { + if yyr2366 || yy2arr2366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30231,25 +30497,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2366 := z.DecBinary() - _ = yym2366 + yym2385 := z.DecBinary() + _ = yym2385 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2367 := r.ContainerType() - if yyct2367 == codecSelferValueTypeMap1234 { - yyl2367 := r.ReadMapStart() - if yyl2367 == 0 { + yyct2386 := r.ContainerType() + if yyct2386 == codecSelferValueTypeMap1234 { + yyl2386 := r.ReadMapStart() + if yyl2386 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2367, d) + x.codecDecodeSelfFromMap(yyl2386, d) } - } else if yyct2367 == codecSelferValueTypeArray1234 { - yyl2367 := r.ReadArrayStart() - if yyl2367 == 0 { + } else if yyct2386 == codecSelferValueTypeArray1234 { + yyl2386 := r.ReadArrayStart() + if yyl2386 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2367, d) + x.codecDecodeSelfFromArray(yyl2386, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30261,12 +30527,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2368Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2368Slc - var yyhl2368 bool = l >= 0 - for yyj2368 := 0; ; yyj2368++ { - if yyhl2368 { - if yyj2368 >= l { + var yys2387Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2387Slc + var yyhl2387 bool = l >= 0 + for yyj2387 := 0; ; yyj2387++ { + if yyhl2387 { + if yyj2387 >= l { break } } else { @@ -30275,23 +30541,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2368Slc = r.DecodeBytes(yys2368Slc, true, true) - yys2368 := string(yys2368Slc) + yys2387Slc = r.DecodeBytes(yys2387Slc, true, true) + yys2387 := string(yys2387Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2368 { + switch yys2387 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2369 := &x.Capacity - yyv2369.CodecDecodeSelf(d) + yyv2388 := &x.Capacity + yyv2388.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2370 := &x.Allocatable - yyv2370.CodecDecodeSelf(d) + yyv2389 := &x.Allocatable + yyv2389.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -30303,56 +30569,56 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2372 := &x.Conditions - yym2373 := z.DecBinary() - _ = yym2373 + yyv2391 := &x.Conditions + yym2392 := z.DecBinary() + _ = yym2392 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2372), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2391), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2374 := &x.Addresses - yym2375 := z.DecBinary() - _ = yym2375 + yyv2393 := &x.Addresses + yym2394 := z.DecBinary() + _ = yym2394 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2374), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2393), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2376 := &x.DaemonEndpoints - yyv2376.CodecDecodeSelf(d) + yyv2395 := &x.DaemonEndpoints + yyv2395.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2377 := &x.NodeInfo - yyv2377.CodecDecodeSelf(d) + yyv2396 := &x.NodeInfo + yyv2396.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2378 := &x.Images - yym2379 := z.DecBinary() - _ = yym2379 + yyv2397 := &x.Images + yym2398 := z.DecBinary() + _ = yym2398 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2378), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2397), d) } } default: - z.DecStructFieldNotFound(-1, yys2368) - } // end switch yys2368 - } // end for yyj2368 + z.DecStructFieldNotFound(-1, yys2387) + } // end switch yys2387 + } // end for yyj2387 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30360,16 +30626,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2380 int - var yyb2380 bool - var yyhl2380 bool = l >= 0 - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + var yyj2399 int + var yyb2399 bool + var yyhl2399 bool = l >= 0 + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30377,16 +30643,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2381 := &x.Capacity - yyv2381.CodecDecodeSelf(d) + yyv2400 := &x.Capacity + yyv2400.CodecDecodeSelf(d) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30394,16 +30660,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2382 := &x.Allocatable - yyv2382.CodecDecodeSelf(d) + yyv2401 := &x.Allocatable + yyv2401.CodecDecodeSelf(d) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30413,13 +30679,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30427,21 +30693,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2384 := &x.Conditions - yym2385 := z.DecBinary() - _ = yym2385 + yyv2403 := &x.Conditions + yym2404 := z.DecBinary() + _ = yym2404 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2384), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2403), d) } } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30449,21 +30715,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2386 := &x.Addresses - yym2387 := z.DecBinary() - _ = yym2387 + yyv2405 := &x.Addresses + yym2406 := z.DecBinary() + _ = yym2406 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2386), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2405), d) } } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30471,16 +30737,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2388 := &x.DaemonEndpoints - yyv2388.CodecDecodeSelf(d) + yyv2407 := &x.DaemonEndpoints + yyv2407.CodecDecodeSelf(d) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30488,16 +30754,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2389 := &x.NodeInfo - yyv2389.CodecDecodeSelf(d) + yyv2408 := &x.NodeInfo + yyv2408.CodecDecodeSelf(d) } - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30505,26 +30771,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2390 := &x.Images - yym2391 := z.DecBinary() - _ = yym2391 + yyv2409 := &x.Images + yym2410 := z.DecBinary() + _ = yym2410 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2390), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2409), d) } } for { - yyj2380++ - if yyhl2380 { - yyb2380 = yyj2380 > l + yyj2399++ + if yyhl2399 { + yyb2399 = yyj2399 > l } else { - yyb2380 = r.CheckBreak() + yyb2399 = r.CheckBreak() } - if yyb2380 { + if yyb2399 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2380-1, "") + z.DecStructFieldNotFound(yyj2399-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30536,37 +30802,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2392 := z.EncBinary() - _ = yym2392 + yym2411 := z.EncBinary() + _ = yym2411 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2393 := !z.EncBinary() - yy2arr2393 := z.EncBasicHandle().StructToArray - var yyq2393 [2]bool - _, _, _ = yysep2393, yyq2393, yy2arr2393 - const yyr2393 bool = false - yyq2393[1] = x.Size != 0 - var yynn2393 int - if yyr2393 || yy2arr2393 { + yysep2412 := !z.EncBinary() + yy2arr2412 := z.EncBasicHandle().StructToArray + var yyq2412 [2]bool + _, _, _ = yysep2412, yyq2412, yy2arr2412 + const yyr2412 bool = false + yyq2412[1] = x.Size != 0 + var yynn2412 int + if yyr2412 || yy2arr2412 { r.EncodeArrayStart(2) } else { - yynn2393 = 1 - for _, b := range yyq2393 { + yynn2412 = 1 + for _, b := range yyq2412 { if b { - yynn2393++ + yynn2412++ } } - r.EncodeMapStart(yynn2393) - yynn2393 = 0 + r.EncodeMapStart(yynn2412) + yynn2412 = 0 } - if yyr2393 || yy2arr2393 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.RepoTags == nil { r.EncodeNil() } else { - yym2395 := z.EncBinary() - _ = yym2395 + yym2414 := z.EncBinary() + _ = yym2414 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) @@ -30579,19 +30845,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.RepoTags == nil { r.EncodeNil() } else { - yym2396 := z.EncBinary() - _ = yym2396 + yym2415 := z.EncBinary() + _ = yym2415 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) } } } - if yyr2393 || yy2arr2393 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2393[1] { - yym2398 := z.EncBinary() - _ = yym2398 + if yyq2412[1] { + yym2417 := z.EncBinary() + _ = yym2417 if false { } else { r.EncodeInt(int64(x.Size)) @@ -30600,19 +30866,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2393[1] { + if yyq2412[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("size")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2399 := z.EncBinary() - _ = yym2399 + yym2418 := z.EncBinary() + _ = yym2418 if false { } else { r.EncodeInt(int64(x.Size)) } } } - if yyr2393 || yy2arr2393 { + if yyr2412 || yy2arr2412 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30625,25 +30891,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2400 := z.DecBinary() - _ = yym2400 + yym2419 := z.DecBinary() + _ = yym2419 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2401 := r.ContainerType() - if yyct2401 == codecSelferValueTypeMap1234 { - yyl2401 := r.ReadMapStart() - if yyl2401 == 0 { + yyct2420 := r.ContainerType() + if yyct2420 == codecSelferValueTypeMap1234 { + yyl2420 := r.ReadMapStart() + if yyl2420 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2401, d) + x.codecDecodeSelfFromMap(yyl2420, d) } - } else if yyct2401 == codecSelferValueTypeArray1234 { - yyl2401 := r.ReadArrayStart() - if yyl2401 == 0 { + } else if yyct2420 == codecSelferValueTypeArray1234 { + yyl2420 := r.ReadArrayStart() + if yyl2420 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2401, d) + x.codecDecodeSelfFromArray(yyl2420, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30655,12 +30921,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2402Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2402Slc - var yyhl2402 bool = l >= 0 - for yyj2402 := 0; ; yyj2402++ { - if yyhl2402 { - if yyj2402 >= l { + var yys2421Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2421Slc + var yyhl2421 bool = l >= 0 + for yyj2421 := 0; ; yyj2421++ { + if yyhl2421 { + if yyj2421 >= l { break } } else { @@ -30669,20 +30935,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2402Slc = r.DecodeBytes(yys2402Slc, true, true) - yys2402 := string(yys2402Slc) + yys2421Slc = r.DecodeBytes(yys2421Slc, true, true) + yys2421 := string(yys2421Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2402 { + switch yys2421 { case "repoTags": if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2403 := &x.RepoTags - yym2404 := z.DecBinary() - _ = yym2404 + yyv2422 := &x.RepoTags + yym2423 := z.DecBinary() + _ = yym2423 if false { } else { - z.F.DecSliceStringX(yyv2403, false, d) + z.F.DecSliceStringX(yyv2422, false, d) } } case "size": @@ -30692,9 +30958,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2402) - } // end switch yys2402 - } // end for yyj2402 + z.DecStructFieldNotFound(-1, yys2421) + } // end switch yys2421 + } // end for yyj2421 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30702,16 +30968,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2406 int - var yyb2406 bool - var yyhl2406 bool = l >= 0 - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + var yyj2425 int + var yyb2425 bool + var yyhl2425 bool = l >= 0 + yyj2425++ + if yyhl2425 { + yyb2425 = yyj2425 > l } else { - yyb2406 = r.CheckBreak() + yyb2425 = r.CheckBreak() } - if yyb2406 { + if yyb2425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30719,21 +30985,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2407 := &x.RepoTags - yym2408 := z.DecBinary() - _ = yym2408 + yyv2426 := &x.RepoTags + yym2427 := z.DecBinary() + _ = yym2427 if false { } else { - z.F.DecSliceStringX(yyv2407, false, d) + z.F.DecSliceStringX(yyv2426, false, d) } } - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2425++ + if yyhl2425 { + yyb2425 = yyj2425 > l } else { - yyb2406 = r.CheckBreak() + yyb2425 = r.CheckBreak() } - if yyb2406 { + if yyb2425 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30744,17 +31010,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } for { - yyj2406++ - if yyhl2406 { - yyb2406 = yyj2406 > l + yyj2425++ + if yyhl2425 { + yyb2425 = yyj2425 > l } else { - yyb2406 = r.CheckBreak() + yyb2425 = r.CheckBreak() } - if yyb2406 { + if yyb2425 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2406-1, "") + z.DecStructFieldNotFound(yyj2425-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30763,8 +31029,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2410 := z.EncBinary() - _ = yym2410 + yym2429 := z.EncBinary() + _ = yym2429 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30776,8 +31042,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2411 := z.DecBinary() - _ = yym2411 + yym2430 := z.DecBinary() + _ = yym2430 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30789,8 +31055,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2412 := z.EncBinary() - _ = yym2412 + yym2431 := z.EncBinary() + _ = yym2431 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30802,8 +31068,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2413 := z.DecBinary() - _ = yym2413 + yym2432 := z.DecBinary() + _ = yym2432 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30818,34 +31084,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2414 := z.EncBinary() - _ = yym2414 + yym2433 := z.EncBinary() + _ = yym2433 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2415 := !z.EncBinary() - yy2arr2415 := z.EncBasicHandle().StructToArray - var yyq2415 [6]bool - _, _, _ = yysep2415, yyq2415, yy2arr2415 - const yyr2415 bool = false - yyq2415[2] = true - yyq2415[3] = true - yyq2415[4] = x.Reason != "" - yyq2415[5] = x.Message != "" - var yynn2415 int - if yyr2415 || yy2arr2415 { + yysep2434 := !z.EncBinary() + yy2arr2434 := z.EncBasicHandle().StructToArray + var yyq2434 [6]bool + _, _, _ = yysep2434, yyq2434, yy2arr2434 + const yyr2434 bool = false + yyq2434[2] = true + yyq2434[3] = true + yyq2434[4] = x.Reason != "" + yyq2434[5] = x.Message != "" + var yynn2434 int + if yyr2434 || yy2arr2434 { r.EncodeArrayStart(6) } else { - yynn2415 = 2 - for _, b := range yyq2415 { + yynn2434 = 2 + for _, b := range yyq2434 { if b { - yynn2415++ + yynn2434++ } } - r.EncodeMapStart(yynn2415) - yynn2415 = 0 + r.EncodeMapStart(yynn2434) + yynn2434 = 0 } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -30854,7 +31120,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -30863,85 +31129,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[2] { - yy2419 := &x.LastHeartbeatTime - yym2420 := z.EncBinary() - _ = yym2420 + if yyq2434[2] { + yy2438 := &x.LastHeartbeatTime + yym2439 := z.EncBinary() + _ = yym2439 if false { - } else if z.HasExtensions() && z.EncExt(yy2419) { - } else if yym2420 { - z.EncBinaryMarshal(yy2419) - } else if !yym2420 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2419) + } else if z.HasExtensions() && z.EncExt(yy2438) { + } else if yym2439 { + z.EncBinaryMarshal(yy2438) + } else if !yym2439 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2438) } else { - z.EncFallback(yy2419) + z.EncFallback(yy2438) } } else { r.EncodeNil() } } else { - if yyq2415[2] { + if yyq2434[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2421 := &x.LastHeartbeatTime - yym2422 := z.EncBinary() - _ = yym2422 + yy2440 := &x.LastHeartbeatTime + yym2441 := z.EncBinary() + _ = yym2441 if false { - } else if z.HasExtensions() && z.EncExt(yy2421) { - } else if yym2422 { - z.EncBinaryMarshal(yy2421) - } else if !yym2422 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2421) + } else if z.HasExtensions() && z.EncExt(yy2440) { + } else if yym2441 { + z.EncBinaryMarshal(yy2440) + } else if !yym2441 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2440) } else { - z.EncFallback(yy2421) + z.EncFallback(yy2440) } } } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[3] { - yy2424 := &x.LastTransitionTime - yym2425 := z.EncBinary() - _ = yym2425 + if yyq2434[3] { + yy2443 := &x.LastTransitionTime + yym2444 := z.EncBinary() + _ = yym2444 if false { - } else if z.HasExtensions() && z.EncExt(yy2424) { - } else if yym2425 { - z.EncBinaryMarshal(yy2424) - } else if !yym2425 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2424) + } else if z.HasExtensions() && z.EncExt(yy2443) { + } else if yym2444 { + z.EncBinaryMarshal(yy2443) + } else if !yym2444 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2443) } else { - z.EncFallback(yy2424) + z.EncFallback(yy2443) } } else { r.EncodeNil() } } else { - if yyq2415[3] { + if yyq2434[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2426 := &x.LastTransitionTime - yym2427 := z.EncBinary() - _ = yym2427 + yy2445 := &x.LastTransitionTime + yym2446 := z.EncBinary() + _ = yym2446 if false { - } else if z.HasExtensions() && z.EncExt(yy2426) { - } else if yym2427 { - z.EncBinaryMarshal(yy2426) - } else if !yym2427 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2426) + } else if z.HasExtensions() && z.EncExt(yy2445) { + } else if yym2446 { + z.EncBinaryMarshal(yy2445) + } else if !yym2446 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2445) } else { - z.EncFallback(yy2426) + z.EncFallback(yy2445) } } } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[4] { - yym2429 := z.EncBinary() - _ = yym2429 + if yyq2434[4] { + yym2448 := z.EncBinary() + _ = yym2448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -30950,23 +31216,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2415[4] { + if yyq2434[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2430 := z.EncBinary() - _ = yym2430 + yym2449 := z.EncBinary() + _ = yym2449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[5] { - yym2432 := z.EncBinary() - _ = yym2432 + if yyq2434[5] { + yym2451 := z.EncBinary() + _ = yym2451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -30975,19 +31241,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2415[5] { + if yyq2434[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2433 := z.EncBinary() - _ = yym2433 + yym2452 := z.EncBinary() + _ = yym2452 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2415 || yy2arr2415 { + if yyr2434 || yy2arr2434 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31000,25 +31266,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2434 := z.DecBinary() - _ = yym2434 + yym2453 := z.DecBinary() + _ = yym2453 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2435 := r.ContainerType() - if yyct2435 == codecSelferValueTypeMap1234 { - yyl2435 := r.ReadMapStart() - if yyl2435 == 0 { + yyct2454 := r.ContainerType() + if yyct2454 == codecSelferValueTypeMap1234 { + yyl2454 := r.ReadMapStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2435, d) + x.codecDecodeSelfFromMap(yyl2454, d) } - } else if yyct2435 == codecSelferValueTypeArray1234 { - yyl2435 := r.ReadArrayStart() - if yyl2435 == 0 { + } else if yyct2454 == codecSelferValueTypeArray1234 { + yyl2454 := r.ReadArrayStart() + if yyl2454 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2435, d) + x.codecDecodeSelfFromArray(yyl2454, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31030,12 +31296,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2436Slc - var yyhl2436 bool = l >= 0 - for yyj2436 := 0; ; yyj2436++ { - if yyhl2436 { - if yyj2436 >= l { + var yys2455Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2455Slc + var yyhl2455 bool = l >= 0 + for yyj2455 := 0; ; yyj2455++ { + if yyhl2455 { + if yyj2455 >= l { break } } else { @@ -31044,10 +31310,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2436Slc = r.DecodeBytes(yys2436Slc, true, true) - yys2436 := string(yys2436Slc) + yys2455Slc = r.DecodeBytes(yys2455Slc, true, true) + yys2455 := string(yys2455Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2436 { + switch yys2455 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -31064,34 +31330,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2439 := &x.LastHeartbeatTime - yym2440 := z.DecBinary() - _ = yym2440 + yyv2458 := &x.LastHeartbeatTime + yym2459 := z.DecBinary() + _ = yym2459 if false { - } else if z.HasExtensions() && z.DecExt(yyv2439) { - } else if yym2440 { - z.DecBinaryUnmarshal(yyv2439) - } else if !yym2440 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2439) + } else if z.HasExtensions() && z.DecExt(yyv2458) { + } else if yym2459 { + z.DecBinaryUnmarshal(yyv2458) + } else if !yym2459 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2458) } else { - z.DecFallback(yyv2439, false) + z.DecFallback(yyv2458, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2441 := &x.LastTransitionTime - yym2442 := z.DecBinary() - _ = yym2442 + yyv2460 := &x.LastTransitionTime + yym2461 := z.DecBinary() + _ = yym2461 if false { - } else if z.HasExtensions() && z.DecExt(yyv2441) { - } else if yym2442 { - z.DecBinaryUnmarshal(yyv2441) - } else if !yym2442 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2441) + } else if z.HasExtensions() && z.DecExt(yyv2460) { + } else if yym2461 { + z.DecBinaryUnmarshal(yyv2460) + } else if !yym2461 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2460) } else { - z.DecFallback(yyv2441, false) + z.DecFallback(yyv2460, false) } } case "reason": @@ -31107,9 +31373,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2436) - } // end switch yys2436 - } // end for yyj2436 + z.DecStructFieldNotFound(-1, yys2455) + } // end switch yys2455 + } // end for yyj2455 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31117,16 +31383,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2445 int - var yyb2445 bool - var yyhl2445 bool = l >= 0 - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + var yyj2464 int + var yyb2464 bool + var yyhl2464 bool = l >= 0 + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31136,13 +31402,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31152,13 +31418,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31166,26 +31432,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2448 := &x.LastHeartbeatTime - yym2449 := z.DecBinary() - _ = yym2449 + yyv2467 := &x.LastHeartbeatTime + yym2468 := z.DecBinary() + _ = yym2468 if false { - } else if z.HasExtensions() && z.DecExt(yyv2448) { - } else if yym2449 { - z.DecBinaryUnmarshal(yyv2448) - } else if !yym2449 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2448) + } else if z.HasExtensions() && z.DecExt(yyv2467) { + } else if yym2468 { + z.DecBinaryUnmarshal(yyv2467) + } else if !yym2468 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2467) } else { - z.DecFallback(yyv2448, false) + z.DecFallback(yyv2467, false) } } - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31193,26 +31459,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2450 := &x.LastTransitionTime - yym2451 := z.DecBinary() - _ = yym2451 + yyv2469 := &x.LastTransitionTime + yym2470 := z.DecBinary() + _ = yym2470 if false { - } else if z.HasExtensions() && z.DecExt(yyv2450) { - } else if yym2451 { - z.DecBinaryUnmarshal(yyv2450) - } else if !yym2451 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2450) + } else if z.HasExtensions() && z.DecExt(yyv2469) { + } else if yym2470 { + z.DecBinaryUnmarshal(yyv2469) + } else if !yym2470 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2469) } else { - z.DecFallback(yyv2450, false) + z.DecFallback(yyv2469, false) } } - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31222,13 +31488,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31239,17 +31505,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2445++ - if yyhl2445 { - yyb2445 = yyj2445 > l + yyj2464++ + if yyhl2464 { + yyb2464 = yyj2464 > l } else { - yyb2445 = r.CheckBreak() + yyb2464 = r.CheckBreak() } - if yyb2445 { + if yyb2464 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2445-1, "") + z.DecStructFieldNotFound(yyj2464-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31258,8 +31524,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2454 := z.EncBinary() - _ = yym2454 + yym2473 := z.EncBinary() + _ = yym2473 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31271,8 +31537,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2455 := z.DecBinary() - _ = yym2455 + yym2474 := z.DecBinary() + _ = yym2474 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31287,30 +31553,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2456 := z.EncBinary() - _ = yym2456 + yym2475 := z.EncBinary() + _ = yym2475 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2457 := !z.EncBinary() - yy2arr2457 := z.EncBasicHandle().StructToArray - var yyq2457 [2]bool - _, _, _ = yysep2457, yyq2457, yy2arr2457 - const yyr2457 bool = false - var yynn2457 int - if yyr2457 || yy2arr2457 { + yysep2476 := !z.EncBinary() + yy2arr2476 := z.EncBasicHandle().StructToArray + var yyq2476 [2]bool + _, _, _ = yysep2476, yyq2476, yy2arr2476 + const yyr2476 bool = false + var yynn2476 int + if yyr2476 || yy2arr2476 { r.EncodeArrayStart(2) } else { - yynn2457 = 2 - for _, b := range yyq2457 { + yynn2476 = 2 + for _, b := range yyq2476 { if b { - yynn2457++ + yynn2476++ } } - r.EncodeMapStart(yynn2457) - yynn2457 = 0 + r.EncodeMapStart(yynn2476) + yynn2476 = 0 } - if yyr2457 || yy2arr2457 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -31319,10 +31585,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2457 || yy2arr2457 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2460 := z.EncBinary() - _ = yym2460 + yym2479 := z.EncBinary() + _ = yym2479 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -31331,14 +31597,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2461 := z.EncBinary() - _ = yym2461 + yym2480 := z.EncBinary() + _ = yym2480 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2457 || yy2arr2457 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31351,25 +31617,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2462 := z.DecBinary() - _ = yym2462 + yym2481 := z.DecBinary() + _ = yym2481 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2463 := r.ContainerType() - if yyct2463 == codecSelferValueTypeMap1234 { - yyl2463 := r.ReadMapStart() - if yyl2463 == 0 { + yyct2482 := r.ContainerType() + if yyct2482 == codecSelferValueTypeMap1234 { + yyl2482 := r.ReadMapStart() + if yyl2482 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2463, d) + x.codecDecodeSelfFromMap(yyl2482, d) } - } else if yyct2463 == codecSelferValueTypeArray1234 { - yyl2463 := r.ReadArrayStart() - if yyl2463 == 0 { + } else if yyct2482 == codecSelferValueTypeArray1234 { + yyl2482 := r.ReadArrayStart() + if yyl2482 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2463, d) + x.codecDecodeSelfFromArray(yyl2482, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31381,12 +31647,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2464Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2464Slc - var yyhl2464 bool = l >= 0 - for yyj2464 := 0; ; yyj2464++ { - if yyhl2464 { - if yyj2464 >= l { + var yys2483Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2483Slc + var yyhl2483 bool = l >= 0 + for yyj2483 := 0; ; yyj2483++ { + if yyhl2483 { + if yyj2483 >= l { break } } else { @@ -31395,10 +31661,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2464Slc = r.DecodeBytes(yys2464Slc, true, true) - yys2464 := string(yys2464Slc) + yys2483Slc = r.DecodeBytes(yys2483Slc, true, true) + yys2483 := string(yys2483Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2464 { + switch yys2483 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -31412,9 +31678,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2464) - } // end switch yys2464 - } // end for yyj2464 + z.DecStructFieldNotFound(-1, yys2483) + } // end switch yys2483 + } // end for yyj2483 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31422,16 +31688,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2467 int - var yyb2467 bool - var yyhl2467 bool = l >= 0 - yyj2467++ - if yyhl2467 { - yyb2467 = yyj2467 > l + var yyj2486 int + var yyb2486 bool + var yyhl2486 bool = l >= 0 + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l } else { - yyb2467 = r.CheckBreak() + yyb2486 = r.CheckBreak() } - if yyb2467 { + if yyb2486 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31441,13 +31707,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2467++ - if yyhl2467 { - yyb2467 = yyj2467 > l + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l } else { - yyb2467 = r.CheckBreak() + yyb2486 = r.CheckBreak() } - if yyb2467 { + if yyb2486 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31458,17 +31724,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2467++ - if yyhl2467 { - yyb2467 = yyj2467 > l + yyj2486++ + if yyhl2486 { + yyb2486 = yyj2486 > l } else { - yyb2467 = r.CheckBreak() + yyb2486 = r.CheckBreak() } - if yyb2467 { + if yyb2486 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2467-1, "") + z.DecStructFieldNotFound(yyj2486-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31480,33 +31746,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2470 := z.EncBinary() - _ = yym2470 + yym2489 := z.EncBinary() + _ = yym2489 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2471 := !z.EncBinary() - yy2arr2471 := z.EncBasicHandle().StructToArray - var yyq2471 [1]bool - _, _, _ = yysep2471, yyq2471, yy2arr2471 - const yyr2471 bool = false - yyq2471[0] = len(x.Capacity) != 0 - var yynn2471 int - if yyr2471 || yy2arr2471 { + yysep2490 := !z.EncBinary() + yy2arr2490 := z.EncBasicHandle().StructToArray + var yyq2490 [1]bool + _, _, _ = yysep2490, yyq2490, yy2arr2490 + const yyr2490 bool = false + yyq2490[0] = len(x.Capacity) != 0 + var yynn2490 int + if yyr2490 || yy2arr2490 { r.EncodeArrayStart(1) } else { - yynn2471 = 0 - for _, b := range yyq2471 { + yynn2490 = 0 + for _, b := range yyq2490 { if b { - yynn2471++ + yynn2490++ } } - r.EncodeMapStart(yynn2471) - yynn2471 = 0 + r.EncodeMapStart(yynn2490) + yynn2490 = 0 } - if yyr2471 || yy2arr2471 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2471[0] { + if yyq2490[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -31516,7 +31782,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2471[0] { + if yyq2490[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31527,7 +31793,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2471 || yy2arr2471 { + if yyr2490 || yy2arr2490 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31540,25 +31806,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2473 := z.DecBinary() - _ = yym2473 + yym2492 := z.DecBinary() + _ = yym2492 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2474 := r.ContainerType() - if yyct2474 == codecSelferValueTypeMap1234 { - yyl2474 := r.ReadMapStart() - if yyl2474 == 0 { + yyct2493 := r.ContainerType() + if yyct2493 == codecSelferValueTypeMap1234 { + yyl2493 := r.ReadMapStart() + if yyl2493 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2474, d) + x.codecDecodeSelfFromMap(yyl2493, d) } - } else if yyct2474 == codecSelferValueTypeArray1234 { - yyl2474 := r.ReadArrayStart() - if yyl2474 == 0 { + } else if yyct2493 == codecSelferValueTypeArray1234 { + yyl2493 := r.ReadArrayStart() + if yyl2493 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2474, d) + x.codecDecodeSelfFromArray(yyl2493, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31570,12 +31836,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2475Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2475Slc - var yyhl2475 bool = l >= 0 - for yyj2475 := 0; ; yyj2475++ { - if yyhl2475 { - if yyj2475 >= l { + var yys2494Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2494Slc + var yyhl2494 bool = l >= 0 + for yyj2494 := 0; ; yyj2494++ { + if yyhl2494 { + if yyj2494 >= l { break } } else { @@ -31584,21 +31850,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2475Slc = r.DecodeBytes(yys2475Slc, true, true) - yys2475 := string(yys2475Slc) + yys2494Slc = r.DecodeBytes(yys2494Slc, true, true) + yys2494 := string(yys2494Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2475 { + switch yys2494 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2476 := &x.Capacity - yyv2476.CodecDecodeSelf(d) + yyv2495 := &x.Capacity + yyv2495.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2475) - } // end switch yys2475 - } // end for yyj2475 + z.DecStructFieldNotFound(-1, yys2494) + } // end switch yys2494 + } // end for yyj2494 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31606,16 +31872,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2477 int - var yyb2477 bool - var yyhl2477 bool = l >= 0 - yyj2477++ - if yyhl2477 { - yyb2477 = yyj2477 > l + var yyj2496 int + var yyb2496 bool + var yyhl2496 bool = l >= 0 + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2477 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2477 { + if yyb2496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31623,21 +31889,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2478 := &x.Capacity - yyv2478.CodecDecodeSelf(d) + yyv2497 := &x.Capacity + yyv2497.CodecDecodeSelf(d) } for { - yyj2477++ - if yyhl2477 { - yyb2477 = yyj2477 > l + yyj2496++ + if yyhl2496 { + yyb2496 = yyj2496 > l } else { - yyb2477 = r.CheckBreak() + yyb2496 = r.CheckBreak() } - if yyb2477 { + if yyb2496 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2477-1, "") + z.DecStructFieldNotFound(yyj2496-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31646,8 +31912,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2479 := z.EncBinary() - _ = yym2479 + yym2498 := z.EncBinary() + _ = yym2498 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31659,8 +31925,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2480 := z.DecBinary() - _ = yym2480 + yym2499 := z.DecBinary() + _ = yym2499 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31675,8 +31941,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2481 := z.EncBinary() - _ = yym2481 + yym2500 := z.EncBinary() + _ = yym2500 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31689,8 +31955,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2482 := z.DecBinary() - _ = yym2482 + yym2501 := z.DecBinary() + _ = yym2501 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31705,39 +31971,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2483 := z.EncBinary() - _ = yym2483 + yym2502 := z.EncBinary() + _ = yym2502 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2484 := !z.EncBinary() - yy2arr2484 := z.EncBasicHandle().StructToArray - var yyq2484 [5]bool - _, _, _ = yysep2484, yyq2484, yy2arr2484 - const yyr2484 bool = false - yyq2484[0] = x.Kind != "" - yyq2484[1] = x.APIVersion != "" - yyq2484[2] = true - yyq2484[3] = true - yyq2484[4] = true - var yynn2484 int - if yyr2484 || yy2arr2484 { + yysep2503 := !z.EncBinary() + yy2arr2503 := z.EncBasicHandle().StructToArray + var yyq2503 [5]bool + _, _, _ = yysep2503, yyq2503, yy2arr2503 + const yyr2503 bool = false + yyq2503[0] = x.Kind != "" + yyq2503[1] = x.APIVersion != "" + yyq2503[2] = true + yyq2503[3] = true + yyq2503[4] = true + var yynn2503 int + if yyr2503 || yy2arr2503 { r.EncodeArrayStart(5) } else { - yynn2484 = 0 - for _, b := range yyq2484 { + yynn2503 = 0 + for _, b := range yyq2503 { if b { - yynn2484++ + yynn2503++ } } - r.EncodeMapStart(yynn2484) - yynn2484 = 0 + r.EncodeMapStart(yynn2503) + yynn2503 = 0 } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2484[0] { - yym2486 := z.EncBinary() - _ = yym2486 + if yyq2503[0] { + yym2505 := z.EncBinary() + _ = yym2505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31746,23 +32012,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2484[0] { + if yyq2503[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2487 := z.EncBinary() - _ = yym2487 + yym2506 := z.EncBinary() + _ = yym2506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2484[1] { - yym2489 := z.EncBinary() - _ = yym2489 + if yyq2503[1] { + yym2508 := z.EncBinary() + _ = yym2508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31771,70 +32037,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2484[1] { + if yyq2503[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2490 := z.EncBinary() - _ = yym2490 + yym2509 := z.EncBinary() + _ = yym2509 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2484[2] { - yy2492 := &x.ObjectMeta - yy2492.CodecEncodeSelf(e) + if yyq2503[2] { + yy2511 := &x.ObjectMeta + yy2511.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2484[2] { + if yyq2503[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2493 := &x.ObjectMeta - yy2493.CodecEncodeSelf(e) + yy2512 := &x.ObjectMeta + yy2512.CodecEncodeSelf(e) } } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2484[3] { - yy2495 := &x.Spec - yy2495.CodecEncodeSelf(e) + if yyq2503[3] { + yy2514 := &x.Spec + yy2514.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2484[3] { + if yyq2503[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2496 := &x.Spec - yy2496.CodecEncodeSelf(e) + yy2515 := &x.Spec + yy2515.CodecEncodeSelf(e) } } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2484[4] { - yy2498 := &x.Status - yy2498.CodecEncodeSelf(e) + if yyq2503[4] { + yy2517 := &x.Status + yy2517.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2484[4] { + if yyq2503[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2499 := &x.Status - yy2499.CodecEncodeSelf(e) + yy2518 := &x.Status + yy2518.CodecEncodeSelf(e) } } - if yyr2484 || yy2arr2484 { + if yyr2503 || yy2arr2503 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31847,25 +32113,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2500 := z.DecBinary() - _ = yym2500 + yym2519 := z.DecBinary() + _ = yym2519 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2501 := r.ContainerType() - if yyct2501 == codecSelferValueTypeMap1234 { - yyl2501 := r.ReadMapStart() - if yyl2501 == 0 { + yyct2520 := r.ContainerType() + if yyct2520 == codecSelferValueTypeMap1234 { + yyl2520 := r.ReadMapStart() + if yyl2520 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2501, d) + x.codecDecodeSelfFromMap(yyl2520, d) } - } else if yyct2501 == codecSelferValueTypeArray1234 { - yyl2501 := r.ReadArrayStart() - if yyl2501 == 0 { + } else if yyct2520 == codecSelferValueTypeArray1234 { + yyl2520 := r.ReadArrayStart() + if yyl2520 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2501, d) + x.codecDecodeSelfFromArray(yyl2520, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31877,12 +32143,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2502Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2502Slc - var yyhl2502 bool = l >= 0 - for yyj2502 := 0; ; yyj2502++ { - if yyhl2502 { - if yyj2502 >= l { + var yys2521Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2521Slc + var yyhl2521 bool = l >= 0 + for yyj2521 := 0; ; yyj2521++ { + if yyhl2521 { + if yyj2521 >= l { break } } else { @@ -31891,10 +32157,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2502Slc = r.DecodeBytes(yys2502Slc, true, true) - yys2502 := string(yys2502Slc) + yys2521Slc = r.DecodeBytes(yys2521Slc, true, true) + yys2521 := string(yys2521Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2502 { + switch yys2521 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31911,27 +32177,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2505 := &x.ObjectMeta - yyv2505.CodecDecodeSelf(d) + yyv2524 := &x.ObjectMeta + yyv2524.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2506 := &x.Spec - yyv2506.CodecDecodeSelf(d) + yyv2525 := &x.Spec + yyv2525.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2507 := &x.Status - yyv2507.CodecDecodeSelf(d) + yyv2526 := &x.Status + yyv2526.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2502) - } // end switch yys2502 - } // end for yyj2502 + z.DecStructFieldNotFound(-1, yys2521) + } // end switch yys2521 + } // end for yyj2521 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31939,16 +32205,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2508 int - var yyb2508 bool - var yyhl2508 bool = l >= 0 - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + var yyj2527 int + var yyb2527 bool + var yyhl2527 bool = l >= 0 + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31958,13 +32224,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31974,13 +32240,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31988,16 +32254,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2511 := &x.ObjectMeta - yyv2511.CodecDecodeSelf(d) + yyv2530 := &x.ObjectMeta + yyv2530.CodecDecodeSelf(d) } - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32005,16 +32271,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2512 := &x.Spec - yyv2512.CodecDecodeSelf(d) + yyv2531 := &x.Spec + yyv2531.CodecDecodeSelf(d) } - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32022,21 +32288,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2513 := &x.Status - yyv2513.CodecDecodeSelf(d) + yyv2532 := &x.Status + yyv2532.CodecDecodeSelf(d) } for { - yyj2508++ - if yyhl2508 { - yyb2508 = yyj2508 > l + yyj2527++ + if yyhl2527 { + yyb2527 = yyj2527 > l } else { - yyb2508 = r.CheckBreak() + yyb2527 = r.CheckBreak() } - if yyb2508 { + if yyb2527 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2508-1, "") + z.DecStructFieldNotFound(yyj2527-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32048,37 +32314,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2514 := z.EncBinary() - _ = yym2514 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2515 := !z.EncBinary() - yy2arr2515 := z.EncBasicHandle().StructToArray - var yyq2515 [4]bool - _, _, _ = yysep2515, yyq2515, yy2arr2515 - const yyr2515 bool = false - yyq2515[0] = x.Kind != "" - yyq2515[1] = x.APIVersion != "" - yyq2515[2] = true - var yynn2515 int - if yyr2515 || yy2arr2515 { + yysep2534 := !z.EncBinary() + yy2arr2534 := z.EncBasicHandle().StructToArray + var yyq2534 [4]bool + _, _, _ = yysep2534, yyq2534, yy2arr2534 + const yyr2534 bool = false + yyq2534[0] = x.Kind != "" + yyq2534[1] = x.APIVersion != "" + yyq2534[2] = true + var yynn2534 int + if yyr2534 || yy2arr2534 { r.EncodeArrayStart(4) } else { - yynn2515 = 1 - for _, b := range yyq2515 { + yynn2534 = 1 + for _, b := range yyq2534 { if b { - yynn2515++ + yynn2534++ } } - r.EncodeMapStart(yynn2515) - yynn2515 = 0 + r.EncodeMapStart(yynn2534) + yynn2534 = 0 } - if yyr2515 || yy2arr2515 { + if yyr2534 || yy2arr2534 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2515[0] { - yym2517 := z.EncBinary() - _ = yym2517 + if yyq2534[0] { + yym2536 := z.EncBinary() + _ = yym2536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32087,23 +32353,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2515[0] { + if yyq2534[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2518 := z.EncBinary() - _ = yym2518 + yym2537 := z.EncBinary() + _ = yym2537 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2515 || yy2arr2515 { + if yyr2534 || yy2arr2534 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2515[1] { - yym2520 := z.EncBinary() - _ = yym2520 + if yyq2534[1] { + yym2539 := z.EncBinary() + _ = yym2539 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32112,54 +32378,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2515[1] { + if yyq2534[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2521 := z.EncBinary() - _ = yym2521 + yym2540 := z.EncBinary() + _ = yym2540 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2515 || yy2arr2515 { + if yyr2534 || yy2arr2534 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2515[2] { - yy2523 := &x.ListMeta - yym2524 := z.EncBinary() - _ = yym2524 + if yyq2534[2] { + yy2542 := &x.ListMeta + yym2543 := z.EncBinary() + _ = yym2543 if false { - } else if z.HasExtensions() && z.EncExt(yy2523) { + } else if z.HasExtensions() && z.EncExt(yy2542) { } else { - z.EncFallback(yy2523) + z.EncFallback(yy2542) } } else { r.EncodeNil() } } else { - if yyq2515[2] { + if yyq2534[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2525 := &x.ListMeta - yym2526 := z.EncBinary() - _ = yym2526 + yy2544 := &x.ListMeta + yym2545 := z.EncBinary() + _ = yym2545 if false { - } else if z.HasExtensions() && z.EncExt(yy2525) { + } else if z.HasExtensions() && z.EncExt(yy2544) { } else { - z.EncFallback(yy2525) + z.EncFallback(yy2544) } } } - if yyr2515 || yy2arr2515 { + if yyr2534 || yy2arr2534 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2528 := z.EncBinary() - _ = yym2528 + yym2547 := z.EncBinary() + _ = yym2547 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -32172,15 +32438,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2529 := z.EncBinary() - _ = yym2529 + yym2548 := z.EncBinary() + _ = yym2548 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2515 || yy2arr2515 { + if yyr2534 || yy2arr2534 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32193,25 +32459,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2530 := z.DecBinary() - _ = yym2530 + yym2549 := z.DecBinary() + _ = yym2549 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2531 := r.ContainerType() - if yyct2531 == codecSelferValueTypeMap1234 { - yyl2531 := r.ReadMapStart() - if yyl2531 == 0 { + yyct2550 := r.ContainerType() + if yyct2550 == codecSelferValueTypeMap1234 { + yyl2550 := r.ReadMapStart() + if yyl2550 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2531, d) + x.codecDecodeSelfFromMap(yyl2550, d) } - } else if yyct2531 == codecSelferValueTypeArray1234 { - yyl2531 := r.ReadArrayStart() - if yyl2531 == 0 { + } else if yyct2550 == codecSelferValueTypeArray1234 { + yyl2550 := r.ReadArrayStart() + if yyl2550 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2531, d) + x.codecDecodeSelfFromArray(yyl2550, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32223,12 +32489,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2532Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2532Slc - var yyhl2532 bool = l >= 0 - for yyj2532 := 0; ; yyj2532++ { - if yyhl2532 { - if yyj2532 >= l { + var yys2551Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2551Slc + var yyhl2551 bool = l >= 0 + for yyj2551 := 0; ; yyj2551++ { + if yyhl2551 { + if yyj2551 >= l { break } } else { @@ -32237,10 +32503,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2532Slc = r.DecodeBytes(yys2532Slc, true, true) - yys2532 := string(yys2532Slc) + yys2551Slc = r.DecodeBytes(yys2551Slc, true, true) + yys2551 := string(yys2551Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2532 { + switch yys2551 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32257,31 +32523,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2535 := &x.ListMeta - yym2536 := z.DecBinary() - _ = yym2536 + yyv2554 := &x.ListMeta + yym2555 := z.DecBinary() + _ = yym2555 if false { - } else if z.HasExtensions() && z.DecExt(yyv2535) { + } else if z.HasExtensions() && z.DecExt(yyv2554) { } else { - z.DecFallback(yyv2535, false) + z.DecFallback(yyv2554, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2537 := &x.Items - yym2538 := z.DecBinary() - _ = yym2538 + yyv2556 := &x.Items + yym2557 := z.DecBinary() + _ = yym2557 if false { } else { - h.decSliceNode((*[]Node)(yyv2537), d) + h.decSliceNode((*[]Node)(yyv2556), d) } } default: - z.DecStructFieldNotFound(-1, yys2532) - } // end switch yys2532 - } // end for yyj2532 + z.DecStructFieldNotFound(-1, yys2551) + } // end switch yys2551 + } // end for yyj2551 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32289,16 +32555,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2539 int - var yyb2539 bool - var yyhl2539 bool = l >= 0 - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + var yyj2558 int + var yyb2558 bool + var yyhl2558 bool = l >= 0 + yyj2558++ + if yyhl2558 { + yyb2558 = yyj2558 > l } else { - yyb2539 = r.CheckBreak() + yyb2558 = r.CheckBreak() } - if yyb2539 { + if yyb2558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32308,13 +32574,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2558++ + if yyhl2558 { + yyb2558 = yyj2558 > l } else { - yyb2539 = r.CheckBreak() + yyb2558 = r.CheckBreak() } - if yyb2539 { + if yyb2558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32324,13 +32590,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2558++ + if yyhl2558 { + yyb2558 = yyj2558 > l } else { - yyb2539 = r.CheckBreak() + yyb2558 = r.CheckBreak() } - if yyb2539 { + if yyb2558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32338,22 +32604,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2542 := &x.ListMeta - yym2543 := z.DecBinary() - _ = yym2543 + yyv2561 := &x.ListMeta + yym2562 := z.DecBinary() + _ = yym2562 if false { - } else if z.HasExtensions() && z.DecExt(yyv2542) { + } else if z.HasExtensions() && z.DecExt(yyv2561) { } else { - z.DecFallback(yyv2542, false) + z.DecFallback(yyv2561, false) } } - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2558++ + if yyhl2558 { + yyb2558 = yyj2558 > l } else { - yyb2539 = r.CheckBreak() + yyb2558 = r.CheckBreak() } - if yyb2539 { + if yyb2558 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32361,26 +32627,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2544 := &x.Items - yym2545 := z.DecBinary() - _ = yym2545 + yyv2563 := &x.Items + yym2564 := z.DecBinary() + _ = yym2564 if false { } else { - h.decSliceNode((*[]Node)(yyv2544), d) + h.decSliceNode((*[]Node)(yyv2563), d) } } for { - yyj2539++ - if yyhl2539 { - yyb2539 = yyj2539 > l + yyj2558++ + if yyhl2558 { + yyb2558 = yyj2558 > l } else { - yyb2539 = r.CheckBreak() + yyb2558 = r.CheckBreak() } - if yyb2539 { + if yyb2558 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2539-1, "") + z.DecStructFieldNotFound(yyj2558-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32392,36 +32658,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2546 := z.EncBinary() - _ = yym2546 + yym2565 := z.EncBinary() + _ = yym2565 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2547 := !z.EncBinary() - yy2arr2547 := z.EncBasicHandle().StructToArray - var yyq2547 [1]bool - _, _, _ = yysep2547, yyq2547, yy2arr2547 - const yyr2547 bool = false - var yynn2547 int - if yyr2547 || yy2arr2547 { + yysep2566 := !z.EncBinary() + yy2arr2566 := z.EncBasicHandle().StructToArray + var yyq2566 [1]bool + _, _, _ = yysep2566, yyq2566, yy2arr2566 + const yyr2566 bool = false + var yynn2566 int + if yyr2566 || yy2arr2566 { r.EncodeArrayStart(1) } else { - yynn2547 = 1 - for _, b := range yyq2547 { + yynn2566 = 1 + for _, b := range yyq2566 { if b { - yynn2547++ + yynn2566++ } } - r.EncodeMapStart(yynn2547) - yynn2547 = 0 + r.EncodeMapStart(yynn2566) + yynn2566 = 0 } - if yyr2547 || yy2arr2547 { + if yyr2566 || yy2arr2566 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym2549 := z.EncBinary() - _ = yym2549 + yym2568 := z.EncBinary() + _ = yym2568 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -32434,15 +32700,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym2550 := z.EncBinary() - _ = yym2550 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr2547 || yy2arr2547 { + if yyr2566 || yy2arr2566 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32455,25 +32721,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2551 := z.DecBinary() - _ = yym2551 + yym2570 := z.DecBinary() + _ = yym2570 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2552 := r.ContainerType() - if yyct2552 == codecSelferValueTypeMap1234 { - yyl2552 := r.ReadMapStart() - if yyl2552 == 0 { + yyct2571 := r.ContainerType() + if yyct2571 == codecSelferValueTypeMap1234 { + yyl2571 := r.ReadMapStart() + if yyl2571 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2552, d) + x.codecDecodeSelfFromMap(yyl2571, d) } - } else if yyct2552 == codecSelferValueTypeArray1234 { - yyl2552 := r.ReadArrayStart() - if yyl2552 == 0 { + } else if yyct2571 == codecSelferValueTypeArray1234 { + yyl2571 := r.ReadArrayStart() + if yyl2571 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2552, d) + x.codecDecodeSelfFromArray(yyl2571, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32485,12 +32751,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2553Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2553Slc - var yyhl2553 bool = l >= 0 - for yyj2553 := 0; ; yyj2553++ { - if yyhl2553 { - if yyj2553 >= l { + var yys2572Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2572Slc + var yyhl2572 bool = l >= 0 + for yyj2572 := 0; ; yyj2572++ { + if yyhl2572 { + if yyj2572 >= l { break } } else { @@ -32499,26 +32765,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2553Slc = r.DecodeBytes(yys2553Slc, true, true) - yys2553 := string(yys2553Slc) + yys2572Slc = r.DecodeBytes(yys2572Slc, true, true) + yys2572 := string(yys2572Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2553 { + switch yys2572 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2554 := &x.Finalizers - yym2555 := z.DecBinary() - _ = yym2555 + yyv2573 := &x.Finalizers + yym2574 := z.DecBinary() + _ = yym2574 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2554), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2573), d) } } default: - z.DecStructFieldNotFound(-1, yys2553) - } // end switch yys2553 - } // end for yyj2553 + z.DecStructFieldNotFound(-1, yys2572) + } // end switch yys2572 + } // end for yyj2572 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32526,16 +32792,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2556 int - var yyb2556 bool - var yyhl2556 bool = l >= 0 - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + var yyj2575 int + var yyb2575 bool + var yyhl2575 bool = l >= 0 + yyj2575++ + if yyhl2575 { + yyb2575 = yyj2575 > l } else { - yyb2556 = r.CheckBreak() + yyb2575 = r.CheckBreak() } - if yyb2556 { + if yyb2575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32543,26 +32809,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2557 := &x.Finalizers - yym2558 := z.DecBinary() - _ = yym2558 + yyv2576 := &x.Finalizers + yym2577 := z.DecBinary() + _ = yym2577 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2557), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2576), d) } } for { - yyj2556++ - if yyhl2556 { - yyb2556 = yyj2556 > l + yyj2575++ + if yyhl2575 { + yyb2575 = yyj2575 > l } else { - yyb2556 = r.CheckBreak() + yyb2575 = r.CheckBreak() } - if yyb2556 { + if yyb2575 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2556-1, "") + z.DecStructFieldNotFound(yyj2575-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32571,8 +32837,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2559 := z.EncBinary() - _ = yym2559 + yym2578 := z.EncBinary() + _ = yym2578 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32584,8 +32850,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2560 := z.DecBinary() - _ = yym2560 + yym2579 := z.DecBinary() + _ = yym2579 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32600,46 +32866,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2561 := z.EncBinary() - _ = yym2561 + yym2580 := z.EncBinary() + _ = yym2580 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2562 := !z.EncBinary() - yy2arr2562 := z.EncBasicHandle().StructToArray - var yyq2562 [1]bool - _, _, _ = yysep2562, yyq2562, yy2arr2562 - const yyr2562 bool = false - yyq2562[0] = x.Phase != "" - var yynn2562 int - if yyr2562 || yy2arr2562 { + yysep2581 := !z.EncBinary() + yy2arr2581 := z.EncBasicHandle().StructToArray + var yyq2581 [1]bool + _, _, _ = yysep2581, yyq2581, yy2arr2581 + const yyr2581 bool = false + yyq2581[0] = x.Phase != "" + var yynn2581 int + if yyr2581 || yy2arr2581 { r.EncodeArrayStart(1) } else { - yynn2562 = 0 - for _, b := range yyq2562 { + yynn2581 = 0 + for _, b := range yyq2581 { if b { - yynn2562++ + yynn2581++ } } - r.EncodeMapStart(yynn2562) - yynn2562 = 0 + r.EncodeMapStart(yynn2581) + yynn2581 = 0 } - if yyr2562 || yy2arr2562 { + if yyr2581 || yy2arr2581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2562[0] { + if yyq2581[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2562[0] { + if yyq2581[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2562 || yy2arr2562 { + if yyr2581 || yy2arr2581 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32652,25 +32918,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2564 := z.DecBinary() - _ = yym2564 + yym2583 := z.DecBinary() + _ = yym2583 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2565 := r.ContainerType() - if yyct2565 == codecSelferValueTypeMap1234 { - yyl2565 := r.ReadMapStart() - if yyl2565 == 0 { + yyct2584 := r.ContainerType() + if yyct2584 == codecSelferValueTypeMap1234 { + yyl2584 := r.ReadMapStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2565, d) + x.codecDecodeSelfFromMap(yyl2584, d) } - } else if yyct2565 == codecSelferValueTypeArray1234 { - yyl2565 := r.ReadArrayStart() - if yyl2565 == 0 { + } else if yyct2584 == codecSelferValueTypeArray1234 { + yyl2584 := r.ReadArrayStart() + if yyl2584 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2565, d) + x.codecDecodeSelfFromArray(yyl2584, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32682,12 +32948,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2566Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2566Slc - var yyhl2566 bool = l >= 0 - for yyj2566 := 0; ; yyj2566++ { - if yyhl2566 { - if yyj2566 >= l { + var yys2585Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2585Slc + var yyhl2585 bool = l >= 0 + for yyj2585 := 0; ; yyj2585++ { + if yyhl2585 { + if yyj2585 >= l { break } } else { @@ -32696,10 +32962,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2566Slc = r.DecodeBytes(yys2566Slc, true, true) - yys2566 := string(yys2566Slc) + yys2585Slc = r.DecodeBytes(yys2585Slc, true, true) + yys2585 := string(yys2585Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2566 { + switch yys2585 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -32707,9 +32973,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2566) - } // end switch yys2566 - } // end for yyj2566 + z.DecStructFieldNotFound(-1, yys2585) + } // end switch yys2585 + } // end for yyj2585 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32717,16 +32983,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2568 int - var yyb2568 bool - var yyhl2568 bool = l >= 0 - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + var yyj2587 int + var yyb2587 bool + var yyhl2587 bool = l >= 0 + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2568 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2568 { + if yyb2587 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32737,17 +33003,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj2568++ - if yyhl2568 { - yyb2568 = yyj2568 > l + yyj2587++ + if yyhl2587 { + yyb2587 = yyj2587 > l } else { - yyb2568 = r.CheckBreak() + yyb2587 = r.CheckBreak() } - if yyb2568 { + if yyb2587 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2568-1, "") + z.DecStructFieldNotFound(yyj2587-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32756,8 +33022,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2570 := z.EncBinary() - _ = yym2570 + yym2589 := z.EncBinary() + _ = yym2589 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32769,8 +33035,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2571 := z.DecBinary() - _ = yym2571 + yym2590 := z.DecBinary() + _ = yym2590 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32785,39 +33051,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2572 := z.EncBinary() - _ = yym2572 + yym2591 := z.EncBinary() + _ = yym2591 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2573 := !z.EncBinary() - yy2arr2573 := z.EncBasicHandle().StructToArray - var yyq2573 [5]bool - _, _, _ = yysep2573, yyq2573, yy2arr2573 - const yyr2573 bool = false - yyq2573[0] = x.Kind != "" - yyq2573[1] = x.APIVersion != "" - yyq2573[2] = true - yyq2573[3] = true - yyq2573[4] = true - var yynn2573 int - if yyr2573 || yy2arr2573 { + yysep2592 := !z.EncBinary() + yy2arr2592 := z.EncBasicHandle().StructToArray + var yyq2592 [5]bool + _, _, _ = yysep2592, yyq2592, yy2arr2592 + const yyr2592 bool = false + yyq2592[0] = x.Kind != "" + yyq2592[1] = x.APIVersion != "" + yyq2592[2] = true + yyq2592[3] = true + yyq2592[4] = true + var yynn2592 int + if yyr2592 || yy2arr2592 { r.EncodeArrayStart(5) } else { - yynn2573 = 0 - for _, b := range yyq2573 { + yynn2592 = 0 + for _, b := range yyq2592 { if b { - yynn2573++ + yynn2592++ } } - r.EncodeMapStart(yynn2573) - yynn2573 = 0 + r.EncodeMapStart(yynn2592) + yynn2592 = 0 } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2573[0] { - yym2575 := z.EncBinary() - _ = yym2575 + if yyq2592[0] { + yym2594 := z.EncBinary() + _ = yym2594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32826,23 +33092,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2573[0] { + if yyq2592[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2576 := z.EncBinary() - _ = yym2576 + yym2595 := z.EncBinary() + _ = yym2595 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2573[1] { - yym2578 := z.EncBinary() - _ = yym2578 + if yyq2592[1] { + yym2597 := z.EncBinary() + _ = yym2597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32851,70 +33117,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2573[1] { + if yyq2592[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2579 := z.EncBinary() - _ = yym2579 + yym2598 := z.EncBinary() + _ = yym2598 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2573[2] { - yy2581 := &x.ObjectMeta - yy2581.CodecEncodeSelf(e) + if yyq2592[2] { + yy2600 := &x.ObjectMeta + yy2600.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2573[2] { + if yyq2592[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2582 := &x.ObjectMeta - yy2582.CodecEncodeSelf(e) + yy2601 := &x.ObjectMeta + yy2601.CodecEncodeSelf(e) } } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2573[3] { - yy2584 := &x.Spec - yy2584.CodecEncodeSelf(e) + if yyq2592[3] { + yy2603 := &x.Spec + yy2603.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2573[3] { + if yyq2592[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2585 := &x.Spec - yy2585.CodecEncodeSelf(e) + yy2604 := &x.Spec + yy2604.CodecEncodeSelf(e) } } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2573[4] { - yy2587 := &x.Status - yy2587.CodecEncodeSelf(e) + if yyq2592[4] { + yy2606 := &x.Status + yy2606.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2573[4] { + if yyq2592[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2588 := &x.Status - yy2588.CodecEncodeSelf(e) + yy2607 := &x.Status + yy2607.CodecEncodeSelf(e) } } - if yyr2573 || yy2arr2573 { + if yyr2592 || yy2arr2592 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32927,25 +33193,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2589 := z.DecBinary() - _ = yym2589 + yym2608 := z.DecBinary() + _ = yym2608 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2590 := r.ContainerType() - if yyct2590 == codecSelferValueTypeMap1234 { - yyl2590 := r.ReadMapStart() - if yyl2590 == 0 { + yyct2609 := r.ContainerType() + if yyct2609 == codecSelferValueTypeMap1234 { + yyl2609 := r.ReadMapStart() + if yyl2609 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2590, d) + x.codecDecodeSelfFromMap(yyl2609, d) } - } else if yyct2590 == codecSelferValueTypeArray1234 { - yyl2590 := r.ReadArrayStart() - if yyl2590 == 0 { + } else if yyct2609 == codecSelferValueTypeArray1234 { + yyl2609 := r.ReadArrayStart() + if yyl2609 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2590, d) + x.codecDecodeSelfFromArray(yyl2609, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32957,12 +33223,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2591Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2591Slc - var yyhl2591 bool = l >= 0 - for yyj2591 := 0; ; yyj2591++ { - if yyhl2591 { - if yyj2591 >= l { + var yys2610Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2610Slc + var yyhl2610 bool = l >= 0 + for yyj2610 := 0; ; yyj2610++ { + if yyhl2610 { + if yyj2610 >= l { break } } else { @@ -32971,10 +33237,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2591Slc = r.DecodeBytes(yys2591Slc, true, true) - yys2591 := string(yys2591Slc) + yys2610Slc = r.DecodeBytes(yys2610Slc, true, true) + yys2610 := string(yys2610Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2591 { + switch yys2610 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32991,27 +33257,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2594 := &x.ObjectMeta - yyv2594.CodecDecodeSelf(d) + yyv2613 := &x.ObjectMeta + yyv2613.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2595 := &x.Spec - yyv2595.CodecDecodeSelf(d) + yyv2614 := &x.Spec + yyv2614.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2596 := &x.Status - yyv2596.CodecDecodeSelf(d) + yyv2615 := &x.Status + yyv2615.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2591) - } // end switch yys2591 - } // end for yyj2591 + z.DecStructFieldNotFound(-1, yys2610) + } // end switch yys2610 + } // end for yyj2610 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33019,16 +33285,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2597 int - var yyb2597 bool - var yyhl2597 bool = l >= 0 - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + var yyj2616 int + var yyb2616 bool + var yyhl2616 bool = l >= 0 + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33038,13 +33304,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33054,13 +33320,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33068,16 +33334,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2600 := &x.ObjectMeta - yyv2600.CodecDecodeSelf(d) + yyv2619 := &x.ObjectMeta + yyv2619.CodecDecodeSelf(d) } - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33085,16 +33351,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2601 := &x.Spec - yyv2601.CodecDecodeSelf(d) + yyv2620 := &x.Spec + yyv2620.CodecDecodeSelf(d) } - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33102,21 +33368,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2602 := &x.Status - yyv2602.CodecDecodeSelf(d) + yyv2621 := &x.Status + yyv2621.CodecDecodeSelf(d) } for { - yyj2597++ - if yyhl2597 { - yyb2597 = yyj2597 > l + yyj2616++ + if yyhl2616 { + yyb2616 = yyj2616 > l } else { - yyb2597 = r.CheckBreak() + yyb2616 = r.CheckBreak() } - if yyb2597 { + if yyb2616 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2597-1, "") + z.DecStructFieldNotFound(yyj2616-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33128,37 +33394,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2603 := z.EncBinary() - _ = yym2603 + yym2622 := z.EncBinary() + _ = yym2622 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2604 := !z.EncBinary() - yy2arr2604 := z.EncBasicHandle().StructToArray - var yyq2604 [4]bool - _, _, _ = yysep2604, yyq2604, yy2arr2604 - const yyr2604 bool = false - yyq2604[0] = x.Kind != "" - yyq2604[1] = x.APIVersion != "" - yyq2604[2] = true - var yynn2604 int - if yyr2604 || yy2arr2604 { + yysep2623 := !z.EncBinary() + yy2arr2623 := z.EncBasicHandle().StructToArray + var yyq2623 [4]bool + _, _, _ = yysep2623, yyq2623, yy2arr2623 + const yyr2623 bool = false + yyq2623[0] = x.Kind != "" + yyq2623[1] = x.APIVersion != "" + yyq2623[2] = true + var yynn2623 int + if yyr2623 || yy2arr2623 { r.EncodeArrayStart(4) } else { - yynn2604 = 1 - for _, b := range yyq2604 { + yynn2623 = 1 + for _, b := range yyq2623 { if b { - yynn2604++ + yynn2623++ } } - r.EncodeMapStart(yynn2604) - yynn2604 = 0 + r.EncodeMapStart(yynn2623) + yynn2623 = 0 } - if yyr2604 || yy2arr2604 { + if yyr2623 || yy2arr2623 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2604[0] { - yym2606 := z.EncBinary() - _ = yym2606 + if yyq2623[0] { + yym2625 := z.EncBinary() + _ = yym2625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33167,23 +33433,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2604[0] { + if yyq2623[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2607 := z.EncBinary() - _ = yym2607 + yym2626 := z.EncBinary() + _ = yym2626 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2604 || yy2arr2604 { + if yyr2623 || yy2arr2623 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2604[1] { - yym2609 := z.EncBinary() - _ = yym2609 + if yyq2623[1] { + yym2628 := z.EncBinary() + _ = yym2628 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33192,54 +33458,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2604[1] { + if yyq2623[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2610 := z.EncBinary() - _ = yym2610 + yym2629 := z.EncBinary() + _ = yym2629 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2604 || yy2arr2604 { + if yyr2623 || yy2arr2623 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2604[2] { - yy2612 := &x.ListMeta - yym2613 := z.EncBinary() - _ = yym2613 + if yyq2623[2] { + yy2631 := &x.ListMeta + yym2632 := z.EncBinary() + _ = yym2632 if false { - } else if z.HasExtensions() && z.EncExt(yy2612) { + } else if z.HasExtensions() && z.EncExt(yy2631) { } else { - z.EncFallback(yy2612) + z.EncFallback(yy2631) } } else { r.EncodeNil() } } else { - if yyq2604[2] { + if yyq2623[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2614 := &x.ListMeta - yym2615 := z.EncBinary() - _ = yym2615 + yy2633 := &x.ListMeta + yym2634 := z.EncBinary() + _ = yym2634 if false { - } else if z.HasExtensions() && z.EncExt(yy2614) { + } else if z.HasExtensions() && z.EncExt(yy2633) { } else { - z.EncFallback(yy2614) + z.EncFallback(yy2633) } } } - if yyr2604 || yy2arr2604 { + if yyr2623 || yy2arr2623 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2617 := z.EncBinary() - _ = yym2617 + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -33252,15 +33518,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2618 := z.EncBinary() - _ = yym2618 + yym2637 := z.EncBinary() + _ = yym2637 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr2604 || yy2arr2604 { + if yyr2623 || yy2arr2623 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33273,25 +33539,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2619 := z.DecBinary() - _ = yym2619 + yym2638 := z.DecBinary() + _ = yym2638 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2620 := r.ContainerType() - if yyct2620 == codecSelferValueTypeMap1234 { - yyl2620 := r.ReadMapStart() - if yyl2620 == 0 { + yyct2639 := r.ContainerType() + if yyct2639 == codecSelferValueTypeMap1234 { + yyl2639 := r.ReadMapStart() + if yyl2639 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2620, d) + x.codecDecodeSelfFromMap(yyl2639, d) } - } else if yyct2620 == codecSelferValueTypeArray1234 { - yyl2620 := r.ReadArrayStart() - if yyl2620 == 0 { + } else if yyct2639 == codecSelferValueTypeArray1234 { + yyl2639 := r.ReadArrayStart() + if yyl2639 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2620, d) + x.codecDecodeSelfFromArray(yyl2639, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33303,12 +33569,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2621Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2621Slc - var yyhl2621 bool = l >= 0 - for yyj2621 := 0; ; yyj2621++ { - if yyhl2621 { - if yyj2621 >= l { + var yys2640Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2640Slc + var yyhl2640 bool = l >= 0 + for yyj2640 := 0; ; yyj2640++ { + if yyhl2640 { + if yyj2640 >= l { break } } else { @@ -33317,10 +33583,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2621Slc = r.DecodeBytes(yys2621Slc, true, true) - yys2621 := string(yys2621Slc) + yys2640Slc = r.DecodeBytes(yys2640Slc, true, true) + yys2640 := string(yys2640Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2621 { + switch yys2640 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33337,31 +33603,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2624 := &x.ListMeta - yym2625 := z.DecBinary() - _ = yym2625 + yyv2643 := &x.ListMeta + yym2644 := z.DecBinary() + _ = yym2644 if false { - } else if z.HasExtensions() && z.DecExt(yyv2624) { + } else if z.HasExtensions() && z.DecExt(yyv2643) { } else { - z.DecFallback(yyv2624, false) + z.DecFallback(yyv2643, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2626 := &x.Items - yym2627 := z.DecBinary() - _ = yym2627 + yyv2645 := &x.Items + yym2646 := z.DecBinary() + _ = yym2646 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2626), d) + h.decSliceNamespace((*[]Namespace)(yyv2645), d) } } default: - z.DecStructFieldNotFound(-1, yys2621) - } // end switch yys2621 - } // end for yyj2621 + z.DecStructFieldNotFound(-1, yys2640) + } // end switch yys2640 + } // end for yyj2640 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33369,16 +33635,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2628 int - var yyb2628 bool - var yyhl2628 bool = l >= 0 - yyj2628++ - if yyhl2628 { - yyb2628 = yyj2628 > l + var yyj2647 int + var yyb2647 bool + var yyhl2647 bool = l >= 0 + yyj2647++ + if yyhl2647 { + yyb2647 = yyj2647 > l } else { - yyb2628 = r.CheckBreak() + yyb2647 = r.CheckBreak() } - if yyb2628 { + if yyb2647 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33388,13 +33654,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2628++ - if yyhl2628 { - yyb2628 = yyj2628 > l + yyj2647++ + if yyhl2647 { + yyb2647 = yyj2647 > l } else { - yyb2628 = r.CheckBreak() + yyb2647 = r.CheckBreak() } - if yyb2628 { + if yyb2647 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33404,13 +33670,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2628++ - if yyhl2628 { - yyb2628 = yyj2628 > l + yyj2647++ + if yyhl2647 { + yyb2647 = yyj2647 > l } else { - yyb2628 = r.CheckBreak() + yyb2647 = r.CheckBreak() } - if yyb2628 { + if yyb2647 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33418,22 +33684,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2631 := &x.ListMeta - yym2632 := z.DecBinary() - _ = yym2632 + yyv2650 := &x.ListMeta + yym2651 := z.DecBinary() + _ = yym2651 if false { - } else if z.HasExtensions() && z.DecExt(yyv2631) { + } else if z.HasExtensions() && z.DecExt(yyv2650) { } else { - z.DecFallback(yyv2631, false) + z.DecFallback(yyv2650, false) } } - yyj2628++ - if yyhl2628 { - yyb2628 = yyj2628 > l + yyj2647++ + if yyhl2647 { + yyb2647 = yyj2647 > l } else { - yyb2628 = r.CheckBreak() + yyb2647 = r.CheckBreak() } - if yyb2628 { + if yyb2647 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33441,26 +33707,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2633 := &x.Items - yym2634 := z.DecBinary() - _ = yym2634 + yyv2652 := &x.Items + yym2653 := z.DecBinary() + _ = yym2653 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2633), d) + h.decSliceNamespace((*[]Namespace)(yyv2652), d) } } for { - yyj2628++ - if yyhl2628 { - yyb2628 = yyj2628 > l + yyj2647++ + if yyhl2647 { + yyb2647 = yyj2647 > l } else { - yyb2628 = r.CheckBreak() + yyb2647 = r.CheckBreak() } - if yyb2628 { + if yyb2647 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2628-1, "") + z.DecStructFieldNotFound(yyj2647-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33472,37 +33738,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2635 := z.EncBinary() - _ = yym2635 + yym2654 := z.EncBinary() + _ = yym2654 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2636 := !z.EncBinary() - yy2arr2636 := z.EncBasicHandle().StructToArray - var yyq2636 [4]bool - _, _, _ = yysep2636, yyq2636, yy2arr2636 - const yyr2636 bool = false - yyq2636[0] = x.Kind != "" - yyq2636[1] = x.APIVersion != "" - yyq2636[2] = true - var yynn2636 int - if yyr2636 || yy2arr2636 { + yysep2655 := !z.EncBinary() + yy2arr2655 := z.EncBasicHandle().StructToArray + var yyq2655 [4]bool + _, _, _ = yysep2655, yyq2655, yy2arr2655 + const yyr2655 bool = false + yyq2655[0] = x.Kind != "" + yyq2655[1] = x.APIVersion != "" + yyq2655[2] = true + var yynn2655 int + if yyr2655 || yy2arr2655 { r.EncodeArrayStart(4) } else { - yynn2636 = 1 - for _, b := range yyq2636 { + yynn2655 = 1 + for _, b := range yyq2655 { if b { - yynn2636++ + yynn2655++ } } - r.EncodeMapStart(yynn2636) - yynn2636 = 0 + r.EncodeMapStart(yynn2655) + yynn2655 = 0 } - if yyr2636 || yy2arr2636 { + if yyr2655 || yy2arr2655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2636[0] { - yym2638 := z.EncBinary() - _ = yym2638 + if yyq2655[0] { + yym2657 := z.EncBinary() + _ = yym2657 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33511,23 +33777,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2636[0] { + if yyq2655[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2639 := z.EncBinary() - _ = yym2639 + yym2658 := z.EncBinary() + _ = yym2658 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2636 || yy2arr2636 { + if yyr2655 || yy2arr2655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2636[1] { - yym2641 := z.EncBinary() - _ = yym2641 + if yyq2655[1] { + yym2660 := z.EncBinary() + _ = yym2660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33536,47 +33802,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2636[1] { + if yyq2655[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2642 := z.EncBinary() - _ = yym2642 + yym2661 := z.EncBinary() + _ = yym2661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2636 || yy2arr2636 { + if yyr2655 || yy2arr2655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2636[2] { - yy2644 := &x.ObjectMeta - yy2644.CodecEncodeSelf(e) + if yyq2655[2] { + yy2663 := &x.ObjectMeta + yy2663.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2636[2] { + if yyq2655[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2645 := &x.ObjectMeta - yy2645.CodecEncodeSelf(e) + yy2664 := &x.ObjectMeta + yy2664.CodecEncodeSelf(e) } } - if yyr2636 || yy2arr2636 { + if yyr2655 || yy2arr2655 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2647 := &x.Target - yy2647.CodecEncodeSelf(e) + yy2666 := &x.Target + yy2666.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2648 := &x.Target - yy2648.CodecEncodeSelf(e) + yy2667 := &x.Target + yy2667.CodecEncodeSelf(e) } - if yyr2636 || yy2arr2636 { + if yyr2655 || yy2arr2655 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33589,25 +33855,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2649 := z.DecBinary() - _ = yym2649 + yym2668 := z.DecBinary() + _ = yym2668 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2650 := r.ContainerType() - if yyct2650 == codecSelferValueTypeMap1234 { - yyl2650 := r.ReadMapStart() - if yyl2650 == 0 { + yyct2669 := r.ContainerType() + if yyct2669 == codecSelferValueTypeMap1234 { + yyl2669 := r.ReadMapStart() + if yyl2669 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2650, d) + x.codecDecodeSelfFromMap(yyl2669, d) } - } else if yyct2650 == codecSelferValueTypeArray1234 { - yyl2650 := r.ReadArrayStart() - if yyl2650 == 0 { + } else if yyct2669 == codecSelferValueTypeArray1234 { + yyl2669 := r.ReadArrayStart() + if yyl2669 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2650, d) + x.codecDecodeSelfFromArray(yyl2669, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33619,12 +33885,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2651Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2651Slc - var yyhl2651 bool = l >= 0 - for yyj2651 := 0; ; yyj2651++ { - if yyhl2651 { - if yyj2651 >= l { + var yys2670Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2670Slc + var yyhl2670 bool = l >= 0 + for yyj2670 := 0; ; yyj2670++ { + if yyhl2670 { + if yyj2670 >= l { break } } else { @@ -33633,10 +33899,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2651Slc = r.DecodeBytes(yys2651Slc, true, true) - yys2651 := string(yys2651Slc) + yys2670Slc = r.DecodeBytes(yys2670Slc, true, true) + yys2670 := string(yys2670Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2651 { + switch yys2670 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33653,20 +33919,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2654 := &x.ObjectMeta - yyv2654.CodecDecodeSelf(d) + yyv2673 := &x.ObjectMeta + yyv2673.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2655 := &x.Target - yyv2655.CodecDecodeSelf(d) + yyv2674 := &x.Target + yyv2674.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2651) - } // end switch yys2651 - } // end for yyj2651 + z.DecStructFieldNotFound(-1, yys2670) + } // end switch yys2670 + } // end for yyj2670 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33674,16 +33940,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2656 int - var yyb2656 bool - var yyhl2656 bool = l >= 0 - yyj2656++ - if yyhl2656 { - yyb2656 = yyj2656 > l + var yyj2675 int + var yyb2675 bool + var yyhl2675 bool = l >= 0 + yyj2675++ + if yyhl2675 { + yyb2675 = yyj2675 > l } else { - yyb2656 = r.CheckBreak() + yyb2675 = r.CheckBreak() } - if yyb2656 { + if yyb2675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33693,13 +33959,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2656++ - if yyhl2656 { - yyb2656 = yyj2656 > l + yyj2675++ + if yyhl2675 { + yyb2675 = yyj2675 > l } else { - yyb2656 = r.CheckBreak() + yyb2675 = r.CheckBreak() } - if yyb2656 { + if yyb2675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33709,13 +33975,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2656++ - if yyhl2656 { - yyb2656 = yyj2656 > l + yyj2675++ + if yyhl2675 { + yyb2675 = yyj2675 > l } else { - yyb2656 = r.CheckBreak() + yyb2675 = r.CheckBreak() } - if yyb2656 { + if yyb2675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33723,16 +33989,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2659 := &x.ObjectMeta - yyv2659.CodecDecodeSelf(d) + yyv2678 := &x.ObjectMeta + yyv2678.CodecDecodeSelf(d) } - yyj2656++ - if yyhl2656 { - yyb2656 = yyj2656 > l + yyj2675++ + if yyhl2675 { + yyb2675 = yyj2675 > l } else { - yyb2656 = r.CheckBreak() + yyb2675 = r.CheckBreak() } - if yyb2656 { + if yyb2675 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33740,21 +34006,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2660 := &x.Target - yyv2660.CodecDecodeSelf(d) + yyv2679 := &x.Target + yyv2679.CodecDecodeSelf(d) } for { - yyj2656++ - if yyhl2656 { - yyb2656 = yyj2656 > l + yyj2675++ + if yyhl2675 { + yyb2675 = yyj2675 > l } else { - yyb2656 = r.CheckBreak() + yyb2675 = r.CheckBreak() } - if yyb2656 { + if yyb2675 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2656-1, "") + z.DecStructFieldNotFound(yyj2675-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33766,36 +34032,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2661 := z.EncBinary() - _ = yym2661 + yym2680 := z.EncBinary() + _ = yym2680 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2662 := !z.EncBinary() - yy2arr2662 := z.EncBasicHandle().StructToArray - var yyq2662 [3]bool - _, _, _ = yysep2662, yyq2662, yy2arr2662 - const yyr2662 bool = false - yyq2662[0] = x.Kind != "" - yyq2662[1] = x.APIVersion != "" - var yynn2662 int - if yyr2662 || yy2arr2662 { + yysep2681 := !z.EncBinary() + yy2arr2681 := z.EncBasicHandle().StructToArray + var yyq2681 [3]bool + _, _, _ = yysep2681, yyq2681, yy2arr2681 + const yyr2681 bool = false + yyq2681[0] = x.Kind != "" + yyq2681[1] = x.APIVersion != "" + var yynn2681 int + if yyr2681 || yy2arr2681 { r.EncodeArrayStart(3) } else { - yynn2662 = 1 - for _, b := range yyq2662 { + yynn2681 = 1 + for _, b := range yyq2681 { if b { - yynn2662++ + yynn2681++ } } - r.EncodeMapStart(yynn2662) - yynn2662 = 0 + r.EncodeMapStart(yynn2681) + yynn2681 = 0 } - if yyr2662 || yy2arr2662 { + if yyr2681 || yy2arr2681 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[0] { - yym2664 := z.EncBinary() - _ = yym2664 + if yyq2681[0] { + yym2683 := z.EncBinary() + _ = yym2683 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33804,23 +34070,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[0] { + if yyq2681[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2665 := z.EncBinary() - _ = yym2665 + yym2684 := z.EncBinary() + _ = yym2684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2662 || yy2arr2662 { + if yyr2681 || yy2arr2681 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2662[1] { - yym2667 := z.EncBinary() - _ = yym2667 + if yyq2681[1] { + yym2686 := z.EncBinary() + _ = yym2686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33829,29 +34095,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2662[1] { + if yyq2681[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2668 := z.EncBinary() - _ = yym2668 + yym2687 := z.EncBinary() + _ = yym2687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2662 || yy2arr2662 { + if yyr2681 || yy2arr2681 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2670 := *x.GracePeriodSeconds - yym2671 := z.EncBinary() - _ = yym2671 + yy2689 := *x.GracePeriodSeconds + yym2690 := z.EncBinary() + _ = yym2690 if false { } else { - r.EncodeInt(int64(yy2670)) + r.EncodeInt(int64(yy2689)) } } } else { @@ -33861,16 +34127,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2672 := *x.GracePeriodSeconds - yym2673 := z.EncBinary() - _ = yym2673 + yy2691 := *x.GracePeriodSeconds + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { - r.EncodeInt(int64(yy2672)) + r.EncodeInt(int64(yy2691)) } } } - if yyr2662 || yy2arr2662 { + if yyr2681 || yy2arr2681 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33883,25 +34149,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2674 := z.DecBinary() - _ = yym2674 + yym2693 := z.DecBinary() + _ = yym2693 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2675 := r.ContainerType() - if yyct2675 == codecSelferValueTypeMap1234 { - yyl2675 := r.ReadMapStart() - if yyl2675 == 0 { + yyct2694 := r.ContainerType() + if yyct2694 == codecSelferValueTypeMap1234 { + yyl2694 := r.ReadMapStart() + if yyl2694 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2675, d) + x.codecDecodeSelfFromMap(yyl2694, d) } - } else if yyct2675 == codecSelferValueTypeArray1234 { - yyl2675 := r.ReadArrayStart() - if yyl2675 == 0 { + } else if yyct2694 == codecSelferValueTypeArray1234 { + yyl2694 := r.ReadArrayStart() + if yyl2694 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2675, d) + x.codecDecodeSelfFromArray(yyl2694, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33913,12 +34179,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2676Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2676Slc - var yyhl2676 bool = l >= 0 - for yyj2676 := 0; ; yyj2676++ { - if yyhl2676 { - if yyj2676 >= l { + var yys2695Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2695Slc + var yyhl2695 bool = l >= 0 + for yyj2695 := 0; ; yyj2695++ { + if yyhl2695 { + if yyj2695 >= l { break } } else { @@ -33927,10 +34193,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) - yys2676 := string(yys2676Slc) + yys2695Slc = r.DecodeBytes(yys2695Slc, true, true) + yys2695 := string(yys2695Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2676 { + switch yys2695 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33952,17 +34218,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2680 := z.DecBinary() - _ = yym2680 + yym2699 := z.DecBinary() + _ = yym2699 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2676) - } // end switch yys2676 - } // end for yyj2676 + z.DecStructFieldNotFound(-1, yys2695) + } // end switch yys2695 + } // end for yyj2695 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33970,16 +34236,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2681 int - var yyb2681 bool - var yyhl2681 bool = l >= 0 - yyj2681++ - if yyhl2681 { - yyb2681 = yyj2681 > l + var yyj2700 int + var yyb2700 bool + var yyhl2700 bool = l >= 0 + yyj2700++ + if yyhl2700 { + yyb2700 = yyj2700 > l } else { - yyb2681 = r.CheckBreak() + yyb2700 = r.CheckBreak() } - if yyb2681 { + if yyb2700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33989,13 +34255,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2681++ - if yyhl2681 { - yyb2681 = yyj2681 > l + yyj2700++ + if yyhl2700 { + yyb2700 = yyj2700 > l } else { - yyb2681 = r.CheckBreak() + yyb2700 = r.CheckBreak() } - if yyb2681 { + if yyb2700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34005,13 +34271,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2681++ - if yyhl2681 { - yyb2681 = yyj2681 > l + yyj2700++ + if yyhl2700 { + yyb2700 = yyj2700 > l } else { - yyb2681 = r.CheckBreak() + yyb2700 = r.CheckBreak() } - if yyb2681 { + if yyb2700 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34024,25 +34290,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2685 := z.DecBinary() - _ = yym2685 + yym2704 := z.DecBinary() + _ = yym2704 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2681++ - if yyhl2681 { - yyb2681 = yyj2681 > l + yyj2700++ + if yyhl2700 { + yyb2700 = yyj2700 > l } else { - yyb2681 = r.CheckBreak() + yyb2700 = r.CheckBreak() } - if yyb2681 { + if yyb2700 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2681-1, "") + z.DecStructFieldNotFound(yyj2700-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34054,36 +34320,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2686 := z.EncBinary() - _ = yym2686 + yym2705 := z.EncBinary() + _ = yym2705 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2687 := !z.EncBinary() - yy2arr2687 := z.EncBasicHandle().StructToArray - var yyq2687 [4]bool - _, _, _ = yysep2687, yyq2687, yy2arr2687 - const yyr2687 bool = false - yyq2687[0] = x.Kind != "" - yyq2687[1] = x.APIVersion != "" - var yynn2687 int - if yyr2687 || yy2arr2687 { + yysep2706 := !z.EncBinary() + yy2arr2706 := z.EncBasicHandle().StructToArray + var yyq2706 [4]bool + _, _, _ = yysep2706, yyq2706, yy2arr2706 + const yyr2706 bool = false + yyq2706[0] = x.Kind != "" + yyq2706[1] = x.APIVersion != "" + var yynn2706 int + if yyr2706 || yy2arr2706 { r.EncodeArrayStart(4) } else { - yynn2687 = 2 - for _, b := range yyq2687 { + yynn2706 = 2 + for _, b := range yyq2706 { if b { - yynn2687++ + yynn2706++ } } - r.EncodeMapStart(yynn2687) - yynn2687 = 0 + r.EncodeMapStart(yynn2706) + yynn2706 = 0 } - if yyr2687 || yy2arr2687 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[0] { - yym2689 := z.EncBinary() - _ = yym2689 + if yyq2706[0] { + yym2708 := z.EncBinary() + _ = yym2708 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34092,23 +34358,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2687[0] { + if yyq2706[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2690 := z.EncBinary() - _ = yym2690 + yym2709 := z.EncBinary() + _ = yym2709 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2687 || yy2arr2687 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2687[1] { - yym2692 := z.EncBinary() - _ = yym2692 + if yyq2706[1] { + yym2711 := z.EncBinary() + _ = yym2711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34117,22 +34383,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2687[1] { + if yyq2706[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2693 := z.EncBinary() - _ = yym2693 + yym2712 := z.EncBinary() + _ = yym2712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2687 || yy2arr2687 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2695 := z.EncBinary() - _ = yym2695 + yym2714 := z.EncBinary() + _ = yym2714 if false { } else { r.EncodeBool(bool(x.Export)) @@ -34141,17 +34407,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2696 := z.EncBinary() - _ = yym2696 + yym2715 := z.EncBinary() + _ = yym2715 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr2687 || yy2arr2687 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2698 := z.EncBinary() - _ = yym2698 + yym2717 := z.EncBinary() + _ = yym2717 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -34160,14 +34426,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2699 := z.EncBinary() - _ = yym2699 + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr2687 || yy2arr2687 { + if yyr2706 || yy2arr2706 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34180,25 +34446,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2700 := z.DecBinary() - _ = yym2700 + yym2719 := z.DecBinary() + _ = yym2719 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2701 := r.ContainerType() - if yyct2701 == codecSelferValueTypeMap1234 { - yyl2701 := r.ReadMapStart() - if yyl2701 == 0 { + yyct2720 := r.ContainerType() + if yyct2720 == codecSelferValueTypeMap1234 { + yyl2720 := r.ReadMapStart() + if yyl2720 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2701, d) + x.codecDecodeSelfFromMap(yyl2720, d) } - } else if yyct2701 == codecSelferValueTypeArray1234 { - yyl2701 := r.ReadArrayStart() - if yyl2701 == 0 { + } else if yyct2720 == codecSelferValueTypeArray1234 { + yyl2720 := r.ReadArrayStart() + if yyl2720 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2701, d) + x.codecDecodeSelfFromArray(yyl2720, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34210,12 +34476,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2702Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2702Slc - var yyhl2702 bool = l >= 0 - for yyj2702 := 0; ; yyj2702++ { - if yyhl2702 { - if yyj2702 >= l { + var yys2721Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2721Slc + var yyhl2721 bool = l >= 0 + for yyj2721 := 0; ; yyj2721++ { + if yyhl2721 { + if yyj2721 >= l { break } } else { @@ -34224,10 +34490,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2702Slc = r.DecodeBytes(yys2702Slc, true, true) - yys2702 := string(yys2702Slc) + yys2721Slc = r.DecodeBytes(yys2721Slc, true, true) + yys2721 := string(yys2721Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2702 { + switch yys2721 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34253,9 +34519,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2702) - } // end switch yys2702 - } // end for yyj2702 + z.DecStructFieldNotFound(-1, yys2721) + } // end switch yys2721 + } // end for yyj2721 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34263,16 +34529,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2707 int - var yyb2707 bool - var yyhl2707 bool = l >= 0 - yyj2707++ - if yyhl2707 { - yyb2707 = yyj2707 > l + var yyj2726 int + var yyb2726 bool + var yyhl2726 bool = l >= 0 + yyj2726++ + if yyhl2726 { + yyb2726 = yyj2726 > l } else { - yyb2707 = r.CheckBreak() + yyb2726 = r.CheckBreak() } - if yyb2707 { + if yyb2726 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34282,13 +34548,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2707++ - if yyhl2707 { - yyb2707 = yyj2707 > l + yyj2726++ + if yyhl2726 { + yyb2726 = yyj2726 > l } else { - yyb2707 = r.CheckBreak() + yyb2726 = r.CheckBreak() } - if yyb2707 { + if yyb2726 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34298,13 +34564,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2707++ - if yyhl2707 { - yyb2707 = yyj2707 > l + yyj2726++ + if yyhl2726 { + yyb2726 = yyj2726 > l } else { - yyb2707 = r.CheckBreak() + yyb2726 = r.CheckBreak() } - if yyb2707 { + if yyb2726 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34314,13 +34580,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj2707++ - if yyhl2707 { - yyb2707 = yyj2707 > l + yyj2726++ + if yyhl2726 { + yyb2726 = yyj2726 > l } else { - yyb2707 = r.CheckBreak() + yyb2726 = r.CheckBreak() } - if yyb2707 { + if yyb2726 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34331,17 +34597,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj2707++ - if yyhl2707 { - yyb2707 = yyj2707 > l + yyj2726++ + if yyhl2726 { + yyb2726 = yyj2726 > l } else { - yyb2707 = r.CheckBreak() + yyb2726 = r.CheckBreak() } - if yyb2707 { + if yyb2726 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2707-1, "") + z.DecStructFieldNotFound(yyj2726-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34353,36 +34619,36 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2712 := z.EncBinary() - _ = yym2712 + yym2731 := z.EncBinary() + _ = yym2731 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2713 := !z.EncBinary() - yy2arr2713 := z.EncBasicHandle().StructToArray - var yyq2713 [7]bool - _, _, _ = yysep2713, yyq2713, yy2arr2713 - const yyr2713 bool = false - yyq2713[0] = x.Kind != "" - yyq2713[1] = x.APIVersion != "" - var yynn2713 int - if yyr2713 || yy2arr2713 { + yysep2732 := !z.EncBinary() + yy2arr2732 := z.EncBasicHandle().StructToArray + var yyq2732 [7]bool + _, _, _ = yysep2732, yyq2732, yy2arr2732 + const yyr2732 bool = false + yyq2732[0] = x.Kind != "" + yyq2732[1] = x.APIVersion != "" + var yynn2732 int + if yyr2732 || yy2arr2732 { r.EncodeArrayStart(7) } else { - yynn2713 = 5 - for _, b := range yyq2713 { + yynn2732 = 5 + for _, b := range yyq2732 { if b { - yynn2713++ + yynn2732++ } } - r.EncodeMapStart(yynn2713) - yynn2713 = 0 + r.EncodeMapStart(yynn2732) + yynn2732 = 0 } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2713[0] { - yym2715 := z.EncBinary() - _ = yym2715 + if yyq2732[0] { + yym2734 := z.EncBinary() + _ = yym2734 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34391,23 +34657,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2713[0] { + if yyq2732[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2716 := z.EncBinary() - _ = yym2716 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2713[1] { - yym2718 := z.EncBinary() - _ = yym2718 + if yyq2732[1] { + yym2737 := z.EncBinary() + _ = yym2737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34416,25 +34682,25 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2713[1] { + if yyq2732[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2719 := z.EncBinary() - _ = yym2719 + yym2738 := z.EncBinary() + _ = yym2738 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LabelSelector == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2740 := z.EncBinary() + _ = yym2740 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -34448,8 +34714,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LabelSelector == nil { r.EncodeNil() } else { - yym2722 := z.EncBinary() - _ = yym2722 + yym2741 := z.EncBinary() + _ = yym2741 if false { } else if z.HasExtensions() && z.EncExt(x.LabelSelector) { } else { @@ -34457,13 +34723,13 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldSelector == nil { r.EncodeNil() } else { - yym2724 := z.EncBinary() - _ = yym2724 + yym2743 := z.EncBinary() + _ = yym2743 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -34477,8 +34743,8 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.FieldSelector == nil { r.EncodeNil() } else { - yym2725 := z.EncBinary() - _ = yym2725 + yym2744 := z.EncBinary() + _ = yym2744 if false { } else if z.HasExtensions() && z.EncExt(x.FieldSelector) { } else { @@ -34486,10 +34752,10 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2727 := z.EncBinary() - _ = yym2727 + yym2746 := z.EncBinary() + _ = yym2746 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -34498,17 +34764,17 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2728 := z.EncBinary() - _ = yym2728 + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeBool(bool(x.Watch)) } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2730 := z.EncBinary() - _ = yym2730 + yym2749 := z.EncBinary() + _ = yym2749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -34517,24 +34783,24 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ResourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2731 := z.EncBinary() - _ = yym2731 + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2733 := *x.TimeoutSeconds - yym2734 := z.EncBinary() - _ = yym2734 + yy2752 := *x.TimeoutSeconds + yym2753 := z.EncBinary() + _ = yym2753 if false { } else { - r.EncodeInt(int64(yy2733)) + r.EncodeInt(int64(yy2752)) } } } else { @@ -34544,16 +34810,16 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2735 := *x.TimeoutSeconds - yym2736 := z.EncBinary() - _ = yym2736 + yy2754 := *x.TimeoutSeconds + yym2755 := z.EncBinary() + _ = yym2755 if false { } else { - r.EncodeInt(int64(yy2735)) + r.EncodeInt(int64(yy2754)) } } } - if yyr2713 || yy2arr2713 { + if yyr2732 || yy2arr2732 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34566,25 +34832,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2737 := z.DecBinary() - _ = yym2737 + yym2756 := z.DecBinary() + _ = yym2756 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2738 := r.ContainerType() - if yyct2738 == codecSelferValueTypeMap1234 { - yyl2738 := r.ReadMapStart() - if yyl2738 == 0 { + yyct2757 := r.ContainerType() + if yyct2757 == codecSelferValueTypeMap1234 { + yyl2757 := r.ReadMapStart() + if yyl2757 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2738, d) + x.codecDecodeSelfFromMap(yyl2757, d) } - } else if yyct2738 == codecSelferValueTypeArray1234 { - yyl2738 := r.ReadArrayStart() - if yyl2738 == 0 { + } else if yyct2757 == codecSelferValueTypeArray1234 { + yyl2757 := r.ReadArrayStart() + if yyl2757 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2738, d) + x.codecDecodeSelfFromArray(yyl2757, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34596,12 +34862,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2739Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2739Slc - var yyhl2739 bool = l >= 0 - for yyj2739 := 0; ; yyj2739++ { - if yyhl2739 { - if yyj2739 >= l { + var yys2758Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2758Slc + var yyhl2758 bool = l >= 0 + for yyj2758 := 0; ; yyj2758++ { + if yyhl2758 { + if yyj2758 >= l { break } } else { @@ -34610,10 +34876,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2739Slc = r.DecodeBytes(yys2739Slc, true, true) - yys2739 := string(yys2739Slc) + yys2758Slc = r.DecodeBytes(yys2758Slc, true, true) + yys2758 := string(yys2758Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2739 { + switch yys2758 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34630,26 +34896,26 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv2742 := &x.LabelSelector - yym2743 := z.DecBinary() - _ = yym2743 + yyv2761 := &x.LabelSelector + yym2762 := z.DecBinary() + _ = yym2762 if false { - } else if z.HasExtensions() && z.DecExt(yyv2742) { + } else if z.HasExtensions() && z.DecExt(yyv2761) { } else { - z.DecFallback(yyv2742, true) + z.DecFallback(yyv2761, true) } } case "FieldSelector": if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv2744 := &x.FieldSelector - yym2745 := z.DecBinary() - _ = yym2745 + yyv2763 := &x.FieldSelector + yym2764 := z.DecBinary() + _ = yym2764 if false { - } else if z.HasExtensions() && z.DecExt(yyv2744) { + } else if z.HasExtensions() && z.DecExt(yyv2763) { } else { - z.DecFallback(yyv2744, true) + z.DecFallback(yyv2763, true) } } case "Watch": @@ -34673,17 +34939,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2749 := z.DecBinary() - _ = yym2749 + yym2768 := z.DecBinary() + _ = yym2768 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2739) - } // end switch yys2739 - } // end for yyj2739 + z.DecStructFieldNotFound(-1, yys2758) + } // end switch yys2758 + } // end for yyj2758 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34691,16 +34957,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2750 int - var yyb2750 bool - var yyhl2750 bool = l >= 0 - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + var yyj2769 int + var yyb2769 bool + var yyhl2769 bool = l >= 0 + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34710,13 +34976,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34726,13 +34992,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34740,22 +35006,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LabelSelector = nil } else { - yyv2753 := &x.LabelSelector - yym2754 := z.DecBinary() - _ = yym2754 + yyv2772 := &x.LabelSelector + yym2773 := z.DecBinary() + _ = yym2773 if false { - } else if z.HasExtensions() && z.DecExt(yyv2753) { + } else if z.HasExtensions() && z.DecExt(yyv2772) { } else { - z.DecFallback(yyv2753, true) + z.DecFallback(yyv2772, true) } } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34763,22 +35029,22 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FieldSelector = nil } else { - yyv2755 := &x.FieldSelector - yym2756 := z.DecBinary() - _ = yym2756 + yyv2774 := &x.FieldSelector + yym2775 := z.DecBinary() + _ = yym2775 if false { - } else if z.HasExtensions() && z.DecExt(yyv2755) { + } else if z.HasExtensions() && z.DecExt(yyv2774) { } else { - z.DecFallback(yyv2755, true) + z.DecFallback(yyv2774, true) } } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34788,13 +35054,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34804,13 +35070,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34823,25 +35089,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2760 := z.DecBinary() - _ = yym2760 + yym2779 := z.DecBinary() + _ = yym2779 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2750++ - if yyhl2750 { - yyb2750 = yyj2750 > l + yyj2769++ + if yyhl2769 { + yyb2769 = yyj2769 > l } else { - yyb2750 = r.CheckBreak() + yyb2769 = r.CheckBreak() } - if yyb2750 { + if yyb2769 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2750-1, "") + z.DecStructFieldNotFound(yyj2769-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34853,36 +35119,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2761 := z.EncBinary() - _ = yym2761 + yym2780 := z.EncBinary() + _ = yym2780 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2762 := !z.EncBinary() - yy2arr2762 := z.EncBasicHandle().StructToArray - var yyq2762 [10]bool - _, _, _ = yysep2762, yyq2762, yy2arr2762 - const yyr2762 bool = false - yyq2762[0] = x.Kind != "" - yyq2762[1] = x.APIVersion != "" - var yynn2762 int - if yyr2762 || yy2arr2762 { + yysep2781 := !z.EncBinary() + yy2arr2781 := z.EncBasicHandle().StructToArray + var yyq2781 [10]bool + _, _, _ = yysep2781, yyq2781, yy2arr2781 + const yyr2781 bool = false + yyq2781[0] = x.Kind != "" + yyq2781[1] = x.APIVersion != "" + var yynn2781 int + if yyr2781 || yy2arr2781 { r.EncodeArrayStart(10) } else { - yynn2762 = 8 - for _, b := range yyq2762 { + yynn2781 = 8 + for _, b := range yyq2781 { if b { - yynn2762++ + yynn2781++ } } - r.EncodeMapStart(yynn2762) - yynn2762 = 0 + r.EncodeMapStart(yynn2781) + yynn2781 = 0 } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2762[0] { - yym2764 := z.EncBinary() - _ = yym2764 + if yyq2781[0] { + yym2783 := z.EncBinary() + _ = yym2783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34891,23 +35157,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2762[0] { + if yyq2781[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2765 := z.EncBinary() - _ = yym2765 + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2762[1] { - yym2767 := z.EncBinary() - _ = yym2767 + if yyq2781[1] { + yym2786 := z.EncBinary() + _ = yym2786 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34916,22 +35182,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2762[1] { + if yyq2781[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2768 := z.EncBinary() - _ = yym2768 + yym2787 := z.EncBinary() + _ = yym2787 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2770 := z.EncBinary() - _ = yym2770 + yym2789 := z.EncBinary() + _ = yym2789 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -34940,17 +35206,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2771 := z.EncBinary() - _ = yym2771 + yym2790 := z.EncBinary() + _ = yym2790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2773 := z.EncBinary() - _ = yym2773 + yym2792 := z.EncBinary() + _ = yym2792 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -34959,17 +35225,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2774 := z.EncBinary() - _ = yym2774 + yym2793 := z.EncBinary() + _ = yym2793 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2776 := z.EncBinary() - _ = yym2776 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -34978,24 +35244,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2777 := z.EncBinary() - _ = yym2777 + yym2796 := z.EncBinary() + _ = yym2796 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2779 := *x.SinceSeconds - yym2780 := z.EncBinary() - _ = yym2780 + yy2798 := *x.SinceSeconds + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { - r.EncodeInt(int64(yy2779)) + r.EncodeInt(int64(yy2798)) } } } else { @@ -35005,27 +35271,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2781 := *x.SinceSeconds - yym2782 := z.EncBinary() - _ = yym2782 + yy2800 := *x.SinceSeconds + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { - r.EncodeInt(int64(yy2781)) + r.EncodeInt(int64(yy2800)) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2784 := z.EncBinary() - _ = yym2784 + yym2803 := z.EncBinary() + _ = yym2803 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2784 { + } else if yym2803 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2784 && z.IsJSONHandle() { + } else if !yym2803 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -35038,23 +35304,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym2785 := z.EncBinary() - _ = yym2785 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2785 { + } else if yym2804 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2785 && z.IsJSONHandle() { + } else if !yym2804 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2787 := z.EncBinary() - _ = yym2787 + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -35063,24 +35329,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2788 := z.EncBinary() - _ = yym2788 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2790 := *x.TailLines - yym2791 := z.EncBinary() - _ = yym2791 + yy2809 := *x.TailLines + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { - r.EncodeInt(int64(yy2790)) + r.EncodeInt(int64(yy2809)) } } } else { @@ -35090,26 +35356,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy2792 := *x.TailLines - yym2793 := z.EncBinary() - _ = yym2793 + yy2811 := *x.TailLines + yym2812 := z.EncBinary() + _ = yym2812 if false { } else { - r.EncodeInt(int64(yy2792)) + r.EncodeInt(int64(yy2811)) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2795 := *x.LimitBytes - yym2796 := z.EncBinary() - _ = yym2796 + yy2814 := *x.LimitBytes + yym2815 := z.EncBinary() + _ = yym2815 if false { } else { - r.EncodeInt(int64(yy2795)) + r.EncodeInt(int64(yy2814)) } } } else { @@ -35119,16 +35385,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2797 := *x.LimitBytes - yym2798 := z.EncBinary() - _ = yym2798 + yy2816 := *x.LimitBytes + yym2817 := z.EncBinary() + _ = yym2817 if false { } else { - r.EncodeInt(int64(yy2797)) + r.EncodeInt(int64(yy2816)) } } } - if yyr2762 || yy2arr2762 { + if yyr2781 || yy2arr2781 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35141,25 +35407,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2799 := z.DecBinary() - _ = yym2799 + yym2818 := z.DecBinary() + _ = yym2818 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2800 := r.ContainerType() - if yyct2800 == codecSelferValueTypeMap1234 { - yyl2800 := r.ReadMapStart() - if yyl2800 == 0 { + yyct2819 := r.ContainerType() + if yyct2819 == codecSelferValueTypeMap1234 { + yyl2819 := r.ReadMapStart() + if yyl2819 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2800, d) + x.codecDecodeSelfFromMap(yyl2819, d) } - } else if yyct2800 == codecSelferValueTypeArray1234 { - yyl2800 := r.ReadArrayStart() - if yyl2800 == 0 { + } else if yyct2819 == codecSelferValueTypeArray1234 { + yyl2819 := r.ReadArrayStart() + if yyl2819 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2800, d) + x.codecDecodeSelfFromArray(yyl2819, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35171,12 +35437,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2801Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2801Slc - var yyhl2801 bool = l >= 0 - for yyj2801 := 0; ; yyj2801++ { - if yyhl2801 { - if yyj2801 >= l { + var yys2820Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2820Slc + var yyhl2820 bool = l >= 0 + for yyj2820 := 0; ; yyj2820++ { + if yyhl2820 { + if yyj2820 >= l { break } } else { @@ -35185,10 +35451,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2801Slc = r.DecodeBytes(yys2801Slc, true, true) - yys2801 := string(yys2801Slc) + yys2820Slc = r.DecodeBytes(yys2820Slc, true, true) + yys2820 := string(yys2820Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2801 { + switch yys2820 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35228,8 +35494,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2808 := z.DecBinary() - _ = yym2808 + yym2827 := z.DecBinary() + _ = yym2827 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -35244,13 +35510,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2810 := z.DecBinary() - _ = yym2810 + yym2829 := z.DecBinary() + _ = yym2829 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2810 { + } else if yym2829 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2810 && z.IsJSONHandle() { + } else if !yym2829 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -35271,8 +35537,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2813 := z.DecBinary() - _ = yym2813 + yym2832 := z.DecBinary() + _ = yym2832 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -35287,17 +35553,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2815 := z.DecBinary() - _ = yym2815 + yym2834 := z.DecBinary() + _ = yym2834 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2801) - } // end switch yys2801 - } // end for yyj2801 + z.DecStructFieldNotFound(-1, yys2820) + } // end switch yys2820 + } // end for yyj2820 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35305,16 +35571,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2816 int - var yyb2816 bool - var yyhl2816 bool = l >= 0 - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + var yyj2835 int + var yyb2835 bool + var yyhl2835 bool = l >= 0 + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35324,13 +35590,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35340,13 +35606,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35356,13 +35622,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35372,13 +35638,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35388,13 +35654,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35407,20 +35673,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2823 := z.DecBinary() - _ = yym2823 + yym2842 := z.DecBinary() + _ = yym2842 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35433,25 +35699,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2825 := z.DecBinary() - _ = yym2825 + yym2844 := z.DecBinary() + _ = yym2844 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2825 { + } else if yym2844 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2825 && z.IsJSONHandle() { + } else if !yym2844 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35461,13 +35727,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35480,20 +35746,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2828 := z.DecBinary() - _ = yym2828 + yym2847 := z.DecBinary() + _ = yym2847 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35506,25 +35772,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2830 := z.DecBinary() - _ = yym2830 + yym2849 := z.DecBinary() + _ = yym2849 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2816++ - if yyhl2816 { - yyb2816 = yyj2816 > l + yyj2835++ + if yyhl2835 { + yyb2835 = yyj2835 > l } else { - yyb2816 = r.CheckBreak() + yyb2835 = r.CheckBreak() } - if yyb2816 { + if yyb2835 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2816-1, "") + z.DecStructFieldNotFound(yyj2835-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35536,212 +35802,212 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2831 := z.EncBinary() - _ = yym2831 + yym2850 := z.EncBinary() + _ = yym2850 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2832 := !z.EncBinary() - yy2arr2832 := z.EncBasicHandle().StructToArray - var yyq2832 [7]bool - _, _, _ = yysep2832, yyq2832, yy2arr2832 - const yyr2832 bool = false - yyq2832[0] = x.Kind != "" - yyq2832[1] = x.APIVersion != "" - yyq2832[2] = x.Stdin != false - yyq2832[3] = x.Stdout != false - yyq2832[4] = x.Stderr != false - yyq2832[5] = x.TTY != false - yyq2832[6] = x.Container != "" - var yynn2832 int - if yyr2832 || yy2arr2832 { + yysep2851 := !z.EncBinary() + yy2arr2851 := z.EncBasicHandle().StructToArray + var yyq2851 [7]bool + _, _, _ = yysep2851, yyq2851, yy2arr2851 + const yyr2851 bool = false + yyq2851[0] = x.Kind != "" + yyq2851[1] = x.APIVersion != "" + yyq2851[2] = x.Stdin != false + yyq2851[3] = x.Stdout != false + yyq2851[4] = x.Stderr != false + yyq2851[5] = x.TTY != false + yyq2851[6] = x.Container != "" + var yynn2851 int + if yyr2851 || yy2arr2851 { r.EncodeArrayStart(7) } else { - yynn2832 = 0 - for _, b := range yyq2832 { + yynn2851 = 0 + for _, b := range yyq2851 { if b { - yynn2832++ + yynn2851++ } } - r.EncodeMapStart(yynn2832) - yynn2832 = 0 + r.EncodeMapStart(yynn2851) + yynn2851 = 0 } - if yyr2832 || yy2arr2832 { + if yyr2851 || yy2arr2851 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[0] { - yym2834 := z.EncBinary() - _ = yym2834 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2832[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2835 := z.EncBinary() - _ = yym2835 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[1] { - yym2837 := z.EncBinary() - _ = yym2837 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2832[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2838 := z.EncBinary() - _ = yym2838 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[2] { - yym2840 := z.EncBinary() - _ = yym2840 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2832[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdin")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2841 := z.EncBinary() - _ = yym2841 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[3] { - yym2843 := z.EncBinary() - _ = yym2843 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2832[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdout")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2844 := z.EncBinary() - _ = yym2844 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[4] { - yym2846 := z.EncBinary() - _ = yym2846 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2832[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stderr")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2847 := z.EncBinary() - _ = yym2847 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[5] { - yym2849 := z.EncBinary() - _ = yym2849 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2832[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("tty")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2850 := z.EncBinary() - _ = yym2850 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } - } - if yyr2832 || yy2arr2832 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2832[6] { - yym2852 := z.EncBinary() - _ = yym2852 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Container)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2832[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("container")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2851[0] { yym2853 := z.EncBinary() _ = yym2853 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2851[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2854 := z.EncBinary() + _ = yym2854 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[1] { + yym2856 := z.EncBinary() + _ = yym2856 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2851[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2857 := z.EncBinary() + _ = yym2857 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[2] { + yym2859 := z.EncBinary() + _ = yym2859 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2851[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdin")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2860 := z.EncBinary() + _ = yym2860 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[3] { + yym2862 := z.EncBinary() + _ = yym2862 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2851[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdout")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2863 := z.EncBinary() + _ = yym2863 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[4] { + yym2865 := z.EncBinary() + _ = yym2865 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2851[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stderr")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2866 := z.EncBinary() + _ = yym2866 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[5] { + yym2868 := z.EncBinary() + _ = yym2868 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2851[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("tty")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2869 := z.EncBinary() + _ = yym2869 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } + } + if yyr2851 || yy2arr2851 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2851[6] { + yym2871 := z.EncBinary() + _ = yym2871 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Container)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2851[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("container")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2872 := z.EncBinary() + _ = yym2872 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2832 || yy2arr2832 { + if yyr2851 || yy2arr2851 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35754,25 +36020,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2854 := z.DecBinary() - _ = yym2854 + yym2873 := z.DecBinary() + _ = yym2873 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2855 := r.ContainerType() - if yyct2855 == codecSelferValueTypeMap1234 { - yyl2855 := r.ReadMapStart() - if yyl2855 == 0 { + yyct2874 := r.ContainerType() + if yyct2874 == codecSelferValueTypeMap1234 { + yyl2874 := r.ReadMapStart() + if yyl2874 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2855, d) + x.codecDecodeSelfFromMap(yyl2874, d) } - } else if yyct2855 == codecSelferValueTypeArray1234 { - yyl2855 := r.ReadArrayStart() - if yyl2855 == 0 { + } else if yyct2874 == codecSelferValueTypeArray1234 { + yyl2874 := r.ReadArrayStart() + if yyl2874 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2855, d) + x.codecDecodeSelfFromArray(yyl2874, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35784,12 +36050,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2856Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2856Slc - var yyhl2856 bool = l >= 0 - for yyj2856 := 0; ; yyj2856++ { - if yyhl2856 { - if yyj2856 >= l { + var yys2875Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2875Slc + var yyhl2875 bool = l >= 0 + for yyj2875 := 0; ; yyj2875++ { + if yyhl2875 { + if yyj2875 >= l { break } } else { @@ -35798,10 +36064,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2856Slc = r.DecodeBytes(yys2856Slc, true, true) - yys2856 := string(yys2856Slc) + yys2875Slc = r.DecodeBytes(yys2875Slc, true, true) + yys2875 := string(yys2875Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2856 { + switch yys2875 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35845,9 +36111,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2856) - } // end switch yys2856 - } // end for yyj2856 + z.DecStructFieldNotFound(-1, yys2875) + } // end switch yys2875 + } // end for yyj2875 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35855,16 +36121,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2864 int - var yyb2864 bool - var yyhl2864 bool = l >= 0 - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + var yyj2883 int + var yyb2883 bool + var yyhl2883 bool = l >= 0 + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35874,13 +36140,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35890,13 +36156,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35906,13 +36172,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35922,13 +36188,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35938,13 +36204,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35954,13 +36220,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35971,17 +36237,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj2864++ - if yyhl2864 { - yyb2864 = yyj2864 > l + yyj2883++ + if yyhl2883 { + yyb2883 = yyj2883 > l } else { - yyb2864 = r.CheckBreak() + yyb2883 = r.CheckBreak() } - if yyb2864 { + if yyb2883 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2864-1, "") + z.DecStructFieldNotFound(yyj2883-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35993,36 +36259,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2872 := z.EncBinary() - _ = yym2872 + yym2891 := z.EncBinary() + _ = yym2891 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2873 := !z.EncBinary() - yy2arr2873 := z.EncBasicHandle().StructToArray - var yyq2873 [8]bool - _, _, _ = yysep2873, yyq2873, yy2arr2873 - const yyr2873 bool = false - yyq2873[0] = x.Kind != "" - yyq2873[1] = x.APIVersion != "" - var yynn2873 int - if yyr2873 || yy2arr2873 { + yysep2892 := !z.EncBinary() + yy2arr2892 := z.EncBasicHandle().StructToArray + var yyq2892 [8]bool + _, _, _ = yysep2892, yyq2892, yy2arr2892 + const yyr2892 bool = false + yyq2892[0] = x.Kind != "" + yyq2892[1] = x.APIVersion != "" + var yynn2892 int + if yyr2892 || yy2arr2892 { r.EncodeArrayStart(8) } else { - yynn2873 = 6 - for _, b := range yyq2873 { + yynn2892 = 6 + for _, b := range yyq2892 { if b { - yynn2873++ + yynn2892++ } } - r.EncodeMapStart(yynn2873) - yynn2873 = 0 + r.EncodeMapStart(yynn2892) + yynn2892 = 0 } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2873[0] { - yym2875 := z.EncBinary() - _ = yym2875 + if yyq2892[0] { + yym2894 := z.EncBinary() + _ = yym2894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36031,23 +36297,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2873[0] { + if yyq2892[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2876 := z.EncBinary() - _ = yym2876 + yym2895 := z.EncBinary() + _ = yym2895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2873[1] { - yym2878 := z.EncBinary() - _ = yym2878 + if yyq2892[1] { + yym2897 := z.EncBinary() + _ = yym2897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36056,22 +36322,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2873[1] { + if yyq2892[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2881 := z.EncBinary() - _ = yym2881 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -36080,17 +36346,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2882 := z.EncBinary() - _ = yym2882 + yym2901 := z.EncBinary() + _ = yym2901 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2884 := z.EncBinary() - _ = yym2884 + yym2903 := z.EncBinary() + _ = yym2903 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -36099,17 +36365,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2885 := z.EncBinary() - _ = yym2885 + yym2904 := z.EncBinary() + _ = yym2904 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2887 := z.EncBinary() - _ = yym2887 + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -36118,17 +36384,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2888 := z.EncBinary() - _ = yym2888 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2890 := z.EncBinary() - _ = yym2890 + yym2909 := z.EncBinary() + _ = yym2909 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -36137,17 +36403,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2891 := z.EncBinary() - _ = yym2891 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2893 := z.EncBinary() - _ = yym2893 + yym2912 := z.EncBinary() + _ = yym2912 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -36156,20 +36422,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2894 := z.EncBinary() - _ = yym2894 + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym2896 := z.EncBinary() - _ = yym2896 + yym2915 := z.EncBinary() + _ = yym2915 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -36182,15 +36448,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym2897 := z.EncBinary() - _ = yym2897 + yym2916 := z.EncBinary() + _ = yym2916 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr2873 || yy2arr2873 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36203,25 +36469,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2898 := z.DecBinary() - _ = yym2898 + yym2917 := z.DecBinary() + _ = yym2917 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2899 := r.ContainerType() - if yyct2899 == codecSelferValueTypeMap1234 { - yyl2899 := r.ReadMapStart() - if yyl2899 == 0 { + yyct2918 := r.ContainerType() + if yyct2918 == codecSelferValueTypeMap1234 { + yyl2918 := r.ReadMapStart() + if yyl2918 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2899, d) + x.codecDecodeSelfFromMap(yyl2918, d) } - } else if yyct2899 == codecSelferValueTypeArray1234 { - yyl2899 := r.ReadArrayStart() - if yyl2899 == 0 { + } else if yyct2918 == codecSelferValueTypeArray1234 { + yyl2918 := r.ReadArrayStart() + if yyl2918 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2899, d) + x.codecDecodeSelfFromArray(yyl2918, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36233,12 +36499,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2900Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2900Slc - var yyhl2900 bool = l >= 0 - for yyj2900 := 0; ; yyj2900++ { - if yyhl2900 { - if yyj2900 >= l { + var yys2919Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2919Slc + var yyhl2919 bool = l >= 0 + for yyj2919 := 0; ; yyj2919++ { + if yyhl2919 { + if yyj2919 >= l { break } } else { @@ -36247,10 +36513,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2900Slc = r.DecodeBytes(yys2900Slc, true, true) - yys2900 := string(yys2900Slc) + yys2919Slc = r.DecodeBytes(yys2919Slc, true, true) + yys2919 := string(yys2919Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2900 { + switch yys2919 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36297,18 +36563,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2908 := &x.Command - yym2909 := z.DecBinary() - _ = yym2909 + yyv2927 := &x.Command + yym2928 := z.DecBinary() + _ = yym2928 if false { } else { - z.F.DecSliceStringX(yyv2908, false, d) + z.F.DecSliceStringX(yyv2927, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2900) - } // end switch yys2900 - } // end for yyj2900 + z.DecStructFieldNotFound(-1, yys2919) + } // end switch yys2919 + } // end for yyj2919 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36316,16 +36582,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2910 int - var yyb2910 bool - var yyhl2910 bool = l >= 0 - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + var yyj2929 int + var yyb2929 bool + var yyhl2929 bool = l >= 0 + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36335,13 +36601,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36351,13 +36617,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36367,13 +36633,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36383,13 +36649,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36399,13 +36665,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36415,13 +36681,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36431,13 +36697,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36445,26 +36711,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2918 := &x.Command - yym2919 := z.DecBinary() - _ = yym2919 + yyv2937 := &x.Command + yym2938 := z.DecBinary() + _ = yym2938 if false { } else { - z.F.DecSliceStringX(yyv2918, false, d) + z.F.DecSliceStringX(yyv2937, false, d) } } for { - yyj2910++ - if yyhl2910 { - yyb2910 = yyj2910 > l + yyj2929++ + if yyhl2929 { + yyb2929 = yyj2929 > l } else { - yyb2910 = r.CheckBreak() + yyb2929 = r.CheckBreak() } - if yyb2910 { + if yyb2929 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2910-1, "") + z.DecStructFieldNotFound(yyj2929-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36476,36 +36742,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2920 := z.EncBinary() - _ = yym2920 + yym2939 := z.EncBinary() + _ = yym2939 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2921 := !z.EncBinary() - yy2arr2921 := z.EncBasicHandle().StructToArray - var yyq2921 [3]bool - _, _, _ = yysep2921, yyq2921, yy2arr2921 - const yyr2921 bool = false - yyq2921[0] = x.Kind != "" - yyq2921[1] = x.APIVersion != "" - var yynn2921 int - if yyr2921 || yy2arr2921 { + yysep2940 := !z.EncBinary() + yy2arr2940 := z.EncBasicHandle().StructToArray + var yyq2940 [3]bool + _, _, _ = yysep2940, yyq2940, yy2arr2940 + const yyr2940 bool = false + yyq2940[0] = x.Kind != "" + yyq2940[1] = x.APIVersion != "" + var yynn2940 int + if yyr2940 || yy2arr2940 { r.EncodeArrayStart(3) } else { - yynn2921 = 1 - for _, b := range yyq2921 { + yynn2940 = 1 + for _, b := range yyq2940 { if b { - yynn2921++ + yynn2940++ } } - r.EncodeMapStart(yynn2921) - yynn2921 = 0 + r.EncodeMapStart(yynn2940) + yynn2940 = 0 } - if yyr2921 || yy2arr2921 { + if yyr2940 || yy2arr2940 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2921[0] { - yym2923 := z.EncBinary() - _ = yym2923 + if yyq2940[0] { + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36514,23 +36780,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2921[0] { + if yyq2940[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2924 := z.EncBinary() - _ = yym2924 + yym2943 := z.EncBinary() + _ = yym2943 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2921 || yy2arr2921 { + if yyr2940 || yy2arr2940 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2921[1] { - yym2926 := z.EncBinary() - _ = yym2926 + if yyq2940[1] { + yym2945 := z.EncBinary() + _ = yym2945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36539,22 +36805,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2921[1] { + if yyq2940[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2927 := z.EncBinary() - _ = yym2927 + yym2946 := z.EncBinary() + _ = yym2946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2921 || yy2arr2921 { + if yyr2940 || yy2arr2940 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2929 := z.EncBinary() - _ = yym2929 + yym2948 := z.EncBinary() + _ = yym2948 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -36563,14 +36829,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2930 := z.EncBinary() - _ = yym2930 + yym2949 := z.EncBinary() + _ = yym2949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr2921 || yy2arr2921 { + if yyr2940 || yy2arr2940 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36583,25 +36849,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2931 := z.DecBinary() - _ = yym2931 + yym2950 := z.DecBinary() + _ = yym2950 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2932 := r.ContainerType() - if yyct2932 == codecSelferValueTypeMap1234 { - yyl2932 := r.ReadMapStart() - if yyl2932 == 0 { + yyct2951 := r.ContainerType() + if yyct2951 == codecSelferValueTypeMap1234 { + yyl2951 := r.ReadMapStart() + if yyl2951 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2932, d) + x.codecDecodeSelfFromMap(yyl2951, d) } - } else if yyct2932 == codecSelferValueTypeArray1234 { - yyl2932 := r.ReadArrayStart() - if yyl2932 == 0 { + } else if yyct2951 == codecSelferValueTypeArray1234 { + yyl2951 := r.ReadArrayStart() + if yyl2951 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2932, d) + x.codecDecodeSelfFromArray(yyl2951, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36613,12 +36879,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2933Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2933Slc - var yyhl2933 bool = l >= 0 - for yyj2933 := 0; ; yyj2933++ { - if yyhl2933 { - if yyj2933 >= l { + var yys2952Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2952Slc + var yyhl2952 bool = l >= 0 + for yyj2952 := 0; ; yyj2952++ { + if yyhl2952 { + if yyj2952 >= l { break } } else { @@ -36627,10 +36893,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2933Slc = r.DecodeBytes(yys2933Slc, true, true) - yys2933 := string(yys2933Slc) + yys2952Slc = r.DecodeBytes(yys2952Slc, true, true) + yys2952 := string(yys2952Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2933 { + switch yys2952 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36650,9 +36916,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2933) - } // end switch yys2933 - } // end for yyj2933 + z.DecStructFieldNotFound(-1, yys2952) + } // end switch yys2952 + } // end for yyj2952 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36660,16 +36926,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2937 int - var yyb2937 bool - var yyhl2937 bool = l >= 0 - yyj2937++ - if yyhl2937 { - yyb2937 = yyj2937 > l + var yyj2956 int + var yyb2956 bool + var yyhl2956 bool = l >= 0 + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2937 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2937 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36679,13 +36945,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2937++ - if yyhl2937 { - yyb2937 = yyj2937 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2937 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2937 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36695,13 +36961,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2937++ - if yyhl2937 { - yyb2937 = yyj2937 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2937 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2937 { + if yyb2956 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36712,17 +36978,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj2937++ - if yyhl2937 { - yyb2937 = yyj2937 > l + yyj2956++ + if yyhl2956 { + yyb2956 = yyj2956 > l } else { - yyb2937 = r.CheckBreak() + yyb2956 = r.CheckBreak() } - if yyb2937 { + if yyb2956 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2937-1, "") + z.DecStructFieldNotFound(yyj2956-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36734,214 +37000,214 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2941 := z.EncBinary() - _ = yym2941 + yym2960 := z.EncBinary() + _ = yym2960 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2942 := !z.EncBinary() - yy2arr2942 := z.EncBasicHandle().StructToArray - var yyq2942 [7]bool - _, _, _ = yysep2942, yyq2942, yy2arr2942 - const yyr2942 bool = false - yyq2942[0] = x.Kind != "" - yyq2942[1] = x.Namespace != "" - yyq2942[2] = x.Name != "" - yyq2942[3] = x.UID != "" - yyq2942[4] = x.APIVersion != "" - yyq2942[5] = x.ResourceVersion != "" - yyq2942[6] = x.FieldPath != "" - var yynn2942 int - if yyr2942 || yy2arr2942 { + yysep2961 := !z.EncBinary() + yy2arr2961 := z.EncBasicHandle().StructToArray + var yyq2961 [7]bool + _, _, _ = yysep2961, yyq2961, yy2arr2961 + const yyr2961 bool = false + yyq2961[0] = x.Kind != "" + yyq2961[1] = x.Namespace != "" + yyq2961[2] = x.Name != "" + yyq2961[3] = x.UID != "" + yyq2961[4] = x.APIVersion != "" + yyq2961[5] = x.ResourceVersion != "" + yyq2961[6] = x.FieldPath != "" + var yynn2961 int + if yyr2961 || yy2arr2961 { r.EncodeArrayStart(7) } else { - yynn2942 = 0 - for _, b := range yyq2942 { + yynn2961 = 0 + for _, b := range yyq2961 { if b { - yynn2942++ + yynn2961++ } } - r.EncodeMapStart(yynn2942) - yynn2942 = 0 + r.EncodeMapStart(yynn2961) + yynn2961 = 0 } - if yyr2942 || yy2arr2942 { + if yyr2961 || yy2arr2961 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[0] { - yym2944 := z.EncBinary() - _ = yym2944 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2945 := z.EncBinary() - _ = yym2945 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[1] { - yym2947 := z.EncBinary() - _ = yym2947 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("namespace")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2948 := z.EncBinary() - _ = yym2948 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[2] { - yym2950 := z.EncBinary() - _ = yym2950 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2951 := z.EncBinary() - _ = yym2951 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[3] { - yym2953 := z.EncBinary() - _ = yym2953 - if false { - } else if z.HasExtensions() && z.EncExt(x.UID) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.UID)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("uid")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2954 := z.EncBinary() - _ = yym2954 - if false { - } else if z.HasExtensions() && z.EncExt(x.UID) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.UID)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[4] { - yym2956 := z.EncBinary() - _ = yym2956 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2957 := z.EncBinary() - _ = yym2957 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[5] { - yym2959 := z.EncBinary() - _ = yym2959 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2960 := z.EncBinary() - _ = yym2960 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) - } - } - } - if yyr2942 || yy2arr2942 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2942[6] { - yym2962 := z.EncBinary() - _ = yym2962 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2942[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2961[0] { yym2963 := z.EncBinary() _ = yym2963 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2964 := z.EncBinary() + _ = yym2964 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[1] { + yym2966 := z.EncBinary() + _ = yym2966 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("namespace")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2967 := z.EncBinary() + _ = yym2967 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[2] { + yym2969 := z.EncBinary() + _ = yym2969 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2970 := z.EncBinary() + _ = yym2970 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[3] { + yym2972 := z.EncBinary() + _ = yym2972 + if false { + } else if z.HasExtensions() && z.EncExt(x.UID) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("uid")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2973 := z.EncBinary() + _ = yym2973 + if false { + } else if z.HasExtensions() && z.EncExt(x.UID) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[4] { + yym2975 := z.EncBinary() + _ = yym2975 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2976 := z.EncBinary() + _ = yym2976 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[5] { + yym2978 := z.EncBinary() + _ = yym2978 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2979 := z.EncBinary() + _ = yym2979 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + } + } + } + if yyr2961 || yy2arr2961 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2961[6] { + yym2981 := z.EncBinary() + _ = yym2981 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2961[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2982 := z.EncBinary() + _ = yym2982 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr2942 || yy2arr2942 { + if yyr2961 || yy2arr2961 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36954,25 +37220,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2964 := z.DecBinary() - _ = yym2964 + yym2983 := z.DecBinary() + _ = yym2983 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2965 := r.ContainerType() - if yyct2965 == codecSelferValueTypeMap1234 { - yyl2965 := r.ReadMapStart() - if yyl2965 == 0 { + yyct2984 := r.ContainerType() + if yyct2984 == codecSelferValueTypeMap1234 { + yyl2984 := r.ReadMapStart() + if yyl2984 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2965, d) + x.codecDecodeSelfFromMap(yyl2984, d) } - } else if yyct2965 == codecSelferValueTypeArray1234 { - yyl2965 := r.ReadArrayStart() - if yyl2965 == 0 { + } else if yyct2984 == codecSelferValueTypeArray1234 { + yyl2984 := r.ReadArrayStart() + if yyl2984 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2965, d) + x.codecDecodeSelfFromArray(yyl2984, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36984,12 +37250,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2966Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2966Slc - var yyhl2966 bool = l >= 0 - for yyj2966 := 0; ; yyj2966++ { - if yyhl2966 { - if yyj2966 >= l { + var yys2985Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2985Slc + var yyhl2985 bool = l >= 0 + for yyj2985 := 0; ; yyj2985++ { + if yyhl2985 { + if yyj2985 >= l { break } } else { @@ -36998,10 +37264,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2966Slc = r.DecodeBytes(yys2966Slc, true, true) - yys2966 := string(yys2966Slc) + yys2985Slc = r.DecodeBytes(yys2985Slc, true, true) + yys2985 := string(yys2985Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2966 { + switch yys2985 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37045,9 +37311,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2966) - } // end switch yys2966 - } // end for yyj2966 + z.DecStructFieldNotFound(-1, yys2985) + } // end switch yys2985 + } // end for yyj2985 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37055,16 +37321,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2974 int - var yyb2974 bool - var yyhl2974 bool = l >= 0 - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + var yyj2993 int + var yyb2993 bool + var yyhl2993 bool = l >= 0 + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37074,13 +37340,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37090,13 +37356,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37106,13 +37372,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37122,13 +37388,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37138,13 +37404,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37154,13 +37420,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37171,17 +37437,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj2974++ - if yyhl2974 { - yyb2974 = yyj2974 > l + yyj2993++ + if yyhl2993 { + yyb2993 = yyj2993 > l } else { - yyb2974 = r.CheckBreak() + yyb2993 = r.CheckBreak() } - if yyb2974 { + if yyb2993 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2974-1, "") + z.DecStructFieldNotFound(yyj2993-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37193,33 +37459,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2982 := z.EncBinary() - _ = yym2982 + yym3001 := z.EncBinary() + _ = yym3001 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2983 := !z.EncBinary() - yy2arr2983 := z.EncBasicHandle().StructToArray - var yyq2983 [1]bool - _, _, _ = yysep2983, yyq2983, yy2arr2983 - const yyr2983 bool = false - var yynn2983 int - if yyr2983 || yy2arr2983 { + yysep3002 := !z.EncBinary() + yy2arr3002 := z.EncBasicHandle().StructToArray + var yyq3002 [1]bool + _, _, _ = yysep3002, yyq3002, yy2arr3002 + const yyr3002 bool = false + var yynn3002 int + if yyr3002 || yy2arr3002 { r.EncodeArrayStart(1) } else { - yynn2983 = 1 - for _, b := range yyq2983 { + yynn3002 = 1 + for _, b := range yyq3002 { if b { - yynn2983++ + yynn3002++ } } - r.EncodeMapStart(yynn2983) - yynn2983 = 0 + r.EncodeMapStart(yynn3002) + yynn3002 = 0 } - if yyr2983 || yy2arr2983 { + if yyr3002 || yy2arr3002 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2985 := z.EncBinary() - _ = yym2985 + yym3004 := z.EncBinary() + _ = yym3004 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -37228,14 +37494,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2986 := z.EncBinary() - _ = yym2986 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2983 || yy2arr2983 { + if yyr3002 || yy2arr3002 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37248,25 +37514,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2987 := z.DecBinary() - _ = yym2987 + yym3006 := z.DecBinary() + _ = yym3006 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2988 := r.ContainerType() - if yyct2988 == codecSelferValueTypeMap1234 { - yyl2988 := r.ReadMapStart() - if yyl2988 == 0 { + yyct3007 := r.ContainerType() + if yyct3007 == codecSelferValueTypeMap1234 { + yyl3007 := r.ReadMapStart() + if yyl3007 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2988, d) + x.codecDecodeSelfFromMap(yyl3007, d) } - } else if yyct2988 == codecSelferValueTypeArray1234 { - yyl2988 := r.ReadArrayStart() - if yyl2988 == 0 { + } else if yyct3007 == codecSelferValueTypeArray1234 { + yyl3007 := r.ReadArrayStart() + if yyl3007 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2988, d) + x.codecDecodeSelfFromArray(yyl3007, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37278,12 +37544,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2989Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2989Slc - var yyhl2989 bool = l >= 0 - for yyj2989 := 0; ; yyj2989++ { - if yyhl2989 { - if yyj2989 >= l { + var yys3008Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3008Slc + var yyhl3008 bool = l >= 0 + for yyj3008 := 0; ; yyj3008++ { + if yyhl3008 { + if yyj3008 >= l { break } } else { @@ -37292,10 +37558,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2989Slc = r.DecodeBytes(yys2989Slc, true, true) - yys2989 := string(yys2989Slc) + yys3008Slc = r.DecodeBytes(yys3008Slc, true, true) + yys3008 := string(yys3008Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2989 { + switch yys3008 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -37303,239 +37569,13 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2989) - } // end switch yys2989 - } // end for yyj2989 + z.DecStructFieldNotFound(-1, yys3008) + } // end switch yys3008 + } // end for yyj3008 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2991 int - var yyb2991 bool - var yyhl2991 bool = l >= 0 - yyj2991++ - if yyhl2991 { - yyb2991 = yyj2991 > l - } else { - yyb2991 = r.CheckBreak() - } - if yyb2991 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - for { - yyj2991++ - if yyhl2991 { - yyb2991 = yyj2991 > l - } else { - yyb2991 = r.CheckBreak() - } - if yyb2991 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2991-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2993 := z.EncBinary() - _ = yym2993 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2994 := !z.EncBinary() - yy2arr2994 := z.EncBasicHandle().StructToArray - var yyq2994 [3]bool - _, _, _ = yysep2994, yyq2994, yy2arr2994 - const yyr2994 bool = false - yyq2994[0] = x.Kind != "" - yyq2994[1] = x.APIVersion != "" - yyq2994[2] = true - var yynn2994 int - if yyr2994 || yy2arr2994 { - r.EncodeArrayStart(3) - } else { - yynn2994 = 0 - for _, b := range yyq2994 { - if b { - yynn2994++ - } - } - r.EncodeMapStart(yynn2994) - yynn2994 = 0 - } - if yyr2994 || yy2arr2994 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[0] { - yym2996 := z.EncBinary() - _ = yym2996 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2994[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2997 := z.EncBinary() - _ = yym2997 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2994 || yy2arr2994 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[1] { - yym2999 := z.EncBinary() - _ = yym2999 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2994[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3000 := z.EncBinary() - _ = yym3000 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2994 || yy2arr2994 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2994[2] { - yy3002 := &x.Reference - yy3002.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2994[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3003 := &x.Reference - yy3003.CodecEncodeSelf(e) - } - } - if yyr2994 || yy2arr2994 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3004 := z.DecBinary() - _ = yym3004 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3005 := r.ContainerType() - if yyct3005 == codecSelferValueTypeMap1234 { - yyl3005 := r.ReadMapStart() - if yyl3005 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3005, d) - } - } else if yyct3005 == codecSelferValueTypeArray1234 { - yyl3005 := r.ReadArrayStart() - if yyl3005 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3005, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3006Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3006Slc - var yyhl3006 bool = l >= 0 - for yyj3006 := 0; ; yyj3006++ { - if yyhl3006 { - if yyj3006 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3006Slc = r.DecodeBytes(yys3006Slc, true, true) - yys3006 := string(yys3006Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3006 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "reference": - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3009 := &x.Reference - yyv3009.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3006) - } // end switch yys3006 - } // end for yyj3006 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -37554,42 +37594,9 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Name = "" } else { - x.Kind = string(r.DecodeString()) - } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l - } else { - yyb3010 = r.CheckBreak() - } - if yyb3010 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3010++ - if yyhl3010 { - yyb3010 = yyj3010 > l - } else { - yyb3010 = r.CheckBreak() - } - if yyb3010 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv3013 := &x.Reference - yyv3013.CodecDecodeSelf(d) + x.Name = string(r.DecodeString()) } for { yyj3010++ @@ -37607,6 +37614,265 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3012 := z.EncBinary() + _ = yym3012 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3013 := !z.EncBinary() + yy2arr3013 := z.EncBasicHandle().StructToArray + var yyq3013 [3]bool + _, _, _ = yysep3013, yyq3013, yy2arr3013 + const yyr3013 bool = false + yyq3013[0] = x.Kind != "" + yyq3013[1] = x.APIVersion != "" + yyq3013[2] = true + var yynn3013 int + if yyr3013 || yy2arr3013 { + r.EncodeArrayStart(3) + } else { + yynn3013 = 0 + for _, b := range yyq3013 { + if b { + yynn3013++ + } + } + r.EncodeMapStart(yynn3013) + yynn3013 = 0 + } + if yyr3013 || yy2arr3013 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3013[0] { + yym3015 := z.EncBinary() + _ = yym3015 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3013[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3016 := z.EncBinary() + _ = yym3016 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3013 || yy2arr3013 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3013[1] { + yym3018 := z.EncBinary() + _ = yym3018 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3013[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3019 := z.EncBinary() + _ = yym3019 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3013 || yy2arr3013 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3013[2] { + yy3021 := &x.Reference + yy3021.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3013[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3022 := &x.Reference + yy3022.CodecEncodeSelf(e) + } + } + if yyr3013 || yy2arr3013 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3023 := z.DecBinary() + _ = yym3023 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3024 := r.ContainerType() + if yyct3024 == codecSelferValueTypeMap1234 { + yyl3024 := r.ReadMapStart() + if yyl3024 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3024, d) + } + } else if yyct3024 == codecSelferValueTypeArray1234 { + yyl3024 := r.ReadArrayStart() + if yyl3024 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3024, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3025Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3025Slc + var yyhl3025 bool = l >= 0 + for yyj3025 := 0; ; yyj3025++ { + if yyhl3025 { + if yyj3025 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3025Slc = r.DecodeBytes(yys3025Slc, true, true) + yys3025 := string(yys3025Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3025 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "reference": + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3028 := &x.Reference + yyv3028.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3025) + } // end switch yys3025 + } // end for yyj3025 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3029 int + var yyb3029 bool + var yyhl3029 bool = l >= 0 + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l + } else { + yyb3029 = r.CheckBreak() + } + if yyb3029 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l + } else { + yyb3029 = r.CheckBreak() + } + if yyb3029 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l + } else { + yyb3029 = r.CheckBreak() + } + if yyb3029 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3032 := &x.Reference + yyv3032.CodecDecodeSelf(d) + } + for { + yyj3029++ + if yyhl3029 { + yyb3029 = yyj3029 > l + } else { + yyb3029 = r.CheckBreak() + } + if yyb3029 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3029-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -37614,36 +37880,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3014 := z.EncBinary() - _ = yym3014 + yym3033 := z.EncBinary() + _ = yym3033 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3015 := !z.EncBinary() - yy2arr3015 := z.EncBasicHandle().StructToArray - var yyq3015 [2]bool - _, _, _ = yysep3015, yyq3015, yy2arr3015 - const yyr3015 bool = false - yyq3015[0] = x.Component != "" - yyq3015[1] = x.Host != "" - var yynn3015 int - if yyr3015 || yy2arr3015 { + yysep3034 := !z.EncBinary() + yy2arr3034 := z.EncBasicHandle().StructToArray + var yyq3034 [2]bool + _, _, _ = yysep3034, yyq3034, yy2arr3034 + const yyr3034 bool = false + yyq3034[0] = x.Component != "" + yyq3034[1] = x.Host != "" + var yynn3034 int + if yyr3034 || yy2arr3034 { r.EncodeArrayStart(2) } else { - yynn3015 = 0 - for _, b := range yyq3015 { + yynn3034 = 0 + for _, b := range yyq3034 { if b { - yynn3015++ + yynn3034++ } } - r.EncodeMapStart(yynn3015) - yynn3015 = 0 + r.EncodeMapStart(yynn3034) + yynn3034 = 0 } - if yyr3015 || yy2arr3015 { + if yyr3034 || yy2arr3034 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[0] { - yym3017 := z.EncBinary() - _ = yym3017 + if yyq3034[0] { + yym3036 := z.EncBinary() + _ = yym3036 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -37652,23 +37918,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3015[0] { + if yyq3034[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3018 := z.EncBinary() - _ = yym3018 + yym3037 := z.EncBinary() + _ = yym3037 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr3015 || yy2arr3015 { + if yyr3034 || yy2arr3034 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[1] { - yym3020 := z.EncBinary() - _ = yym3020 + if yyq3034[1] { + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -37677,19 +37943,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3015[1] { + if yyq3034[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3021 := z.EncBinary() - _ = yym3021 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3015 || yy2arr3015 { + if yyr3034 || yy2arr3034 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37702,25 +37968,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3022 := z.DecBinary() - _ = yym3022 + yym3041 := z.DecBinary() + _ = yym3041 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3023 := r.ContainerType() - if yyct3023 == codecSelferValueTypeMap1234 { - yyl3023 := r.ReadMapStart() - if yyl3023 == 0 { + yyct3042 := r.ContainerType() + if yyct3042 == codecSelferValueTypeMap1234 { + yyl3042 := r.ReadMapStart() + if yyl3042 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3023, d) + x.codecDecodeSelfFromMap(yyl3042, d) } - } else if yyct3023 == codecSelferValueTypeArray1234 { - yyl3023 := r.ReadArrayStart() - if yyl3023 == 0 { + } else if yyct3042 == codecSelferValueTypeArray1234 { + yyl3042 := r.ReadArrayStart() + if yyl3042 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3023, d) + x.codecDecodeSelfFromArray(yyl3042, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37732,12 +37998,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3024Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3024Slc - var yyhl3024 bool = l >= 0 - for yyj3024 := 0; ; yyj3024++ { - if yyhl3024 { - if yyj3024 >= l { + var yys3043Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3043Slc + var yyhl3043 bool = l >= 0 + for yyj3043 := 0; ; yyj3043++ { + if yyhl3043 { + if yyj3043 >= l { break } } else { @@ -37746,10 +38012,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3024Slc = r.DecodeBytes(yys3024Slc, true, true) - yys3024 := string(yys3024Slc) + yys3043Slc = r.DecodeBytes(yys3043Slc, true, true) + yys3043 := string(yys3043Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3024 { + switch yys3043 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -37763,9 +38029,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3024) - } // end switch yys3024 - } // end for yyj3024 + z.DecStructFieldNotFound(-1, yys3043) + } // end switch yys3043 + } // end for yyj3043 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37773,16 +38039,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3027 int - var yyb3027 bool - var yyhl3027 bool = l >= 0 - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l + var yyj3046 int + var yyb3046 bool + var yyhl3046 bool = l >= 0 + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3027 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3027 { + if yyb3046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37792,13 +38058,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3027 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3027 { + if yyb3046 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37809,17 +38075,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3027++ - if yyhl3027 { - yyb3027 = yyj3027 > l + yyj3046++ + if yyhl3046 { + yyb3046 = yyj3046 > l } else { - yyb3027 = r.CheckBreak() + yyb3046 = r.CheckBreak() } - if yyb3027 { + if yyb3046 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3027-1, "") + z.DecStructFieldNotFound(yyj3046-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37831,45 +38097,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3030 := z.EncBinary() - _ = yym3030 + yym3049 := z.EncBinary() + _ = yym3049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3031 := !z.EncBinary() - yy2arr3031 := z.EncBasicHandle().StructToArray - var yyq3031 [11]bool - _, _, _ = yysep3031, yyq3031, yy2arr3031 - const yyr3031 bool = false - yyq3031[0] = x.Kind != "" - yyq3031[1] = x.APIVersion != "" - yyq3031[2] = true - yyq3031[3] = true - yyq3031[4] = x.Reason != "" - yyq3031[5] = x.Message != "" - yyq3031[6] = true - yyq3031[7] = true - yyq3031[8] = true - yyq3031[9] = x.Count != 0 - yyq3031[10] = x.Type != "" - var yynn3031 int - if yyr3031 || yy2arr3031 { + yysep3050 := !z.EncBinary() + yy2arr3050 := z.EncBasicHandle().StructToArray + var yyq3050 [11]bool + _, _, _ = yysep3050, yyq3050, yy2arr3050 + const yyr3050 bool = false + yyq3050[0] = x.Kind != "" + yyq3050[1] = x.APIVersion != "" + yyq3050[2] = true + yyq3050[3] = true + yyq3050[4] = x.Reason != "" + yyq3050[5] = x.Message != "" + yyq3050[6] = true + yyq3050[7] = true + yyq3050[8] = true + yyq3050[9] = x.Count != 0 + yyq3050[10] = x.Type != "" + var yynn3050 int + if yyr3050 || yy2arr3050 { r.EncodeArrayStart(11) } else { - yynn3031 = 0 - for _, b := range yyq3031 { + yynn3050 = 0 + for _, b := range yyq3050 { if b { - yynn3031++ + yynn3050++ } } - r.EncodeMapStart(yynn3031) - yynn3031 = 0 + r.EncodeMapStart(yynn3050) + yynn3050 = 0 } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[0] { - yym3033 := z.EncBinary() - _ = yym3033 + if yyq3050[0] { + yym3052 := z.EncBinary() + _ = yym3052 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37878,223 +38144,223 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[0] { + if yyq3050[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3034 := z.EncBinary() - _ = yym3034 + yym3053 := z.EncBinary() + _ = yym3053 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[1] { - yym3036 := z.EncBinary() - _ = yym3036 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3031[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3037 := z.EncBinary() - _ = yym3037 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[2] { - yy3039 := &x.ObjectMeta - yy3039.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3031[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3040 := &x.ObjectMeta - yy3040.CodecEncodeSelf(e) - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[3] { - yy3042 := &x.InvolvedObject - yy3042.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3031[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3043 := &x.InvolvedObject - yy3043.CodecEncodeSelf(e) - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[4] { - yym3045 := z.EncBinary() - _ = yym3045 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3031[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3046 := z.EncBinary() - _ = yym3046 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[5] { - yym3048 := z.EncBinary() - _ = yym3048 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3031[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3049 := z.EncBinary() - _ = yym3049 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[6] { - yy3051 := &x.Source - yy3051.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3031[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("source")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3052 := &x.Source - yy3052.CodecEncodeSelf(e) - } - } - if yyr3031 || yy2arr3031 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[7] { - yy3054 := &x.FirstTimestamp + if yyq3050[1] { yym3055 := z.EncBinary() _ = yym3055 if false { - } else if z.HasExtensions() && z.EncExt(yy3054) { - } else if yym3055 { - z.EncBinaryMarshal(yy3054) - } else if !yym3055 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3054) } else { - z.EncFallback(yy3054) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3050[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3056 := z.EncBinary() + _ = yym3056 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[2] { + yy3058 := &x.ObjectMeta + yy3058.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3050[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3059 := &x.ObjectMeta + yy3059.CodecEncodeSelf(e) + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[3] { + yy3061 := &x.InvolvedObject + yy3061.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3050[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3062 := &x.InvolvedObject + yy3062.CodecEncodeSelf(e) + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[4] { + yym3064 := z.EncBinary() + _ = yym3064 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3050[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3065 := z.EncBinary() + _ = yym3065 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[5] { + yym3067 := z.EncBinary() + _ = yym3067 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3050[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3068 := z.EncBinary() + _ = yym3068 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[6] { + yy3070 := &x.Source + yy3070.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3050[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("source")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3071 := &x.Source + yy3071.CodecEncodeSelf(e) + } + } + if yyr3050 || yy2arr3050 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3050[7] { + yy3073 := &x.FirstTimestamp + yym3074 := z.EncBinary() + _ = yym3074 + if false { + } else if z.HasExtensions() && z.EncExt(yy3073) { + } else if yym3074 { + z.EncBinaryMarshal(yy3073) + } else if !yym3074 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3073) + } else { + z.EncFallback(yy3073) } } else { r.EncodeNil() } } else { - if yyq3031[7] { + if yyq3050[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3056 := &x.FirstTimestamp - yym3057 := z.EncBinary() - _ = yym3057 + yy3075 := &x.FirstTimestamp + yym3076 := z.EncBinary() + _ = yym3076 if false { - } else if z.HasExtensions() && z.EncExt(yy3056) { - } else if yym3057 { - z.EncBinaryMarshal(yy3056) - } else if !yym3057 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3056) + } else if z.HasExtensions() && z.EncExt(yy3075) { + } else if yym3076 { + z.EncBinaryMarshal(yy3075) + } else if !yym3076 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3075) } else { - z.EncFallback(yy3056) + z.EncFallback(yy3075) } } } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[8] { - yy3059 := &x.LastTimestamp - yym3060 := z.EncBinary() - _ = yym3060 + if yyq3050[8] { + yy3078 := &x.LastTimestamp + yym3079 := z.EncBinary() + _ = yym3079 if false { - } else if z.HasExtensions() && z.EncExt(yy3059) { - } else if yym3060 { - z.EncBinaryMarshal(yy3059) - } else if !yym3060 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3059) + } else if z.HasExtensions() && z.EncExt(yy3078) { + } else if yym3079 { + z.EncBinaryMarshal(yy3078) + } else if !yym3079 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3078) } else { - z.EncFallback(yy3059) + z.EncFallback(yy3078) } } else { r.EncodeNil() } } else { - if yyq3031[8] { + if yyq3050[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3061 := &x.LastTimestamp - yym3062 := z.EncBinary() - _ = yym3062 + yy3080 := &x.LastTimestamp + yym3081 := z.EncBinary() + _ = yym3081 if false { - } else if z.HasExtensions() && z.EncExt(yy3061) { - } else if yym3062 { - z.EncBinaryMarshal(yy3061) - } else if !yym3062 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3061) + } else if z.HasExtensions() && z.EncExt(yy3080) { + } else if yym3081 { + z.EncBinaryMarshal(yy3080) + } else if !yym3081 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3080) } else { - z.EncFallback(yy3061) + z.EncFallback(yy3080) } } } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[9] { - yym3064 := z.EncBinary() - _ = yym3064 + if yyq3050[9] { + yym3083 := z.EncBinary() + _ = yym3083 if false { } else { r.EncodeInt(int64(x.Count)) @@ -38103,23 +38369,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3031[9] { + if yyq3050[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3065 := z.EncBinary() - _ = yym3065 + yym3084 := z.EncBinary() + _ = yym3084 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3031[10] { - yym3067 := z.EncBinary() - _ = yym3067 + if yyq3050[10] { + yym3086 := z.EncBinary() + _ = yym3086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -38128,19 +38394,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3031[10] { + if yyq3050[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3068 := z.EncBinary() - _ = yym3068 + yym3087 := z.EncBinary() + _ = yym3087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3031 || yy2arr3031 { + if yyr3050 || yy2arr3050 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38153,25 +38419,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3069 := z.DecBinary() - _ = yym3069 + yym3088 := z.DecBinary() + _ = yym3088 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3070 := r.ContainerType() - if yyct3070 == codecSelferValueTypeMap1234 { - yyl3070 := r.ReadMapStart() - if yyl3070 == 0 { + yyct3089 := r.ContainerType() + if yyct3089 == codecSelferValueTypeMap1234 { + yyl3089 := r.ReadMapStart() + if yyl3089 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3070, d) + x.codecDecodeSelfFromMap(yyl3089, d) } - } else if yyct3070 == codecSelferValueTypeArray1234 { - yyl3070 := r.ReadArrayStart() - if yyl3070 == 0 { + } else if yyct3089 == codecSelferValueTypeArray1234 { + yyl3089 := r.ReadArrayStart() + if yyl3089 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3070, d) + x.codecDecodeSelfFromArray(yyl3089, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38183,12 +38449,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3071Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3071Slc - var yyhl3071 bool = l >= 0 - for yyj3071 := 0; ; yyj3071++ { - if yyhl3071 { - if yyj3071 >= l { + var yys3090Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3090Slc + var yyhl3090 bool = l >= 0 + for yyj3090 := 0; ; yyj3090++ { + if yyhl3090 { + if yyj3090 >= l { break } } else { @@ -38197,10 +38463,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3071Slc = r.DecodeBytes(yys3071Slc, true, true) - yys3071 := string(yys3071Slc) + yys3090Slc = r.DecodeBytes(yys3090Slc, true, true) + yys3090 := string(yys3090Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3071 { + switch yys3090 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38217,15 +38483,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3074 := &x.ObjectMeta - yyv3074.CodecDecodeSelf(d) + yyv3093 := &x.ObjectMeta + yyv3093.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3075 := &x.InvolvedObject - yyv3075.CodecDecodeSelf(d) + yyv3094 := &x.InvolvedObject + yyv3094.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -38243,41 +38509,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3078 := &x.Source - yyv3078.CodecDecodeSelf(d) + yyv3097 := &x.Source + yyv3097.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3079 := &x.FirstTimestamp - yym3080 := z.DecBinary() - _ = yym3080 + yyv3098 := &x.FirstTimestamp + yym3099 := z.DecBinary() + _ = yym3099 if false { - } else if z.HasExtensions() && z.DecExt(yyv3079) { - } else if yym3080 { - z.DecBinaryUnmarshal(yyv3079) - } else if !yym3080 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3079) + } else if z.HasExtensions() && z.DecExt(yyv3098) { + } else if yym3099 { + z.DecBinaryUnmarshal(yyv3098) + } else if !yym3099 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3098) } else { - z.DecFallback(yyv3079, false) + z.DecFallback(yyv3098, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3081 := &x.LastTimestamp - yym3082 := z.DecBinary() - _ = yym3082 + yyv3100 := &x.LastTimestamp + yym3101 := z.DecBinary() + _ = yym3101 if false { - } else if z.HasExtensions() && z.DecExt(yyv3081) { - } else if yym3082 { - z.DecBinaryUnmarshal(yyv3081) - } else if !yym3082 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3081) + } else if z.HasExtensions() && z.DecExt(yyv3100) { + } else if yym3101 { + z.DecBinaryUnmarshal(yyv3100) + } else if !yym3101 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3100) } else { - z.DecFallback(yyv3081, false) + z.DecFallback(yyv3100, false) } } case "count": @@ -38293,9 +38559,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3071) - } // end switch yys3071 - } // end for yyj3071 + z.DecStructFieldNotFound(-1, yys3090) + } // end switch yys3090 + } // end for yyj3090 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38303,16 +38569,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3085 int - var yyb3085 bool - var yyhl3085 bool = l >= 0 - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + var yyj3104 int + var yyb3104 bool + var yyhl3104 bool = l >= 0 + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38322,13 +38588,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38338,13 +38604,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38352,16 +38618,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3088 := &x.ObjectMeta - yyv3088.CodecDecodeSelf(d) + yyv3107 := &x.ObjectMeta + yyv3107.CodecDecodeSelf(d) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38369,16 +38635,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3089 := &x.InvolvedObject - yyv3089.CodecDecodeSelf(d) + yyv3108 := &x.InvolvedObject + yyv3108.CodecDecodeSelf(d) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38388,13 +38654,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38404,13 +38670,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38418,16 +38684,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3092 := &x.Source - yyv3092.CodecDecodeSelf(d) + yyv3111 := &x.Source + yyv3111.CodecDecodeSelf(d) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38435,26 +38701,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3093 := &x.FirstTimestamp - yym3094 := z.DecBinary() - _ = yym3094 + yyv3112 := &x.FirstTimestamp + yym3113 := z.DecBinary() + _ = yym3113 if false { - } else if z.HasExtensions() && z.DecExt(yyv3093) { - } else if yym3094 { - z.DecBinaryUnmarshal(yyv3093) - } else if !yym3094 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3093) + } else if z.HasExtensions() && z.DecExt(yyv3112) { + } else if yym3113 { + z.DecBinaryUnmarshal(yyv3112) + } else if !yym3113 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3112) } else { - z.DecFallback(yyv3093, false) + z.DecFallback(yyv3112, false) } } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38462,26 +38728,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3095 := &x.LastTimestamp - yym3096 := z.DecBinary() - _ = yym3096 + yyv3114 := &x.LastTimestamp + yym3115 := z.DecBinary() + _ = yym3115 if false { - } else if z.HasExtensions() && z.DecExt(yyv3095) { - } else if yym3096 { - z.DecBinaryUnmarshal(yyv3095) - } else if !yym3096 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3095) + } else if z.HasExtensions() && z.DecExt(yyv3114) { + } else if yym3115 { + z.DecBinaryUnmarshal(yyv3114) + } else if !yym3115 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3114) } else { - z.DecFallback(yyv3095, false) + z.DecFallback(yyv3114, false) } } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38491,13 +38757,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38508,17 +38774,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3085++ - if yyhl3085 { - yyb3085 = yyj3085 > l + yyj3104++ + if yyhl3104 { + yyb3104 = yyj3104 > l } else { - yyb3085 = r.CheckBreak() + yyb3104 = r.CheckBreak() } - if yyb3085 { + if yyb3104 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3085-1, "") + z.DecStructFieldNotFound(yyj3104-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38530,37 +38796,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3099 := z.EncBinary() - _ = yym3099 + yym3118 := z.EncBinary() + _ = yym3118 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3100 := !z.EncBinary() - yy2arr3100 := z.EncBasicHandle().StructToArray - var yyq3100 [4]bool - _, _, _ = yysep3100, yyq3100, yy2arr3100 - const yyr3100 bool = false - yyq3100[0] = x.Kind != "" - yyq3100[1] = x.APIVersion != "" - yyq3100[2] = true - var yynn3100 int - if yyr3100 || yy2arr3100 { + yysep3119 := !z.EncBinary() + yy2arr3119 := z.EncBasicHandle().StructToArray + var yyq3119 [4]bool + _, _, _ = yysep3119, yyq3119, yy2arr3119 + const yyr3119 bool = false + yyq3119[0] = x.Kind != "" + yyq3119[1] = x.APIVersion != "" + yyq3119[2] = true + var yynn3119 int + if yyr3119 || yy2arr3119 { r.EncodeArrayStart(4) } else { - yynn3100 = 1 - for _, b := range yyq3100 { + yynn3119 = 1 + for _, b := range yyq3119 { if b { - yynn3100++ + yynn3119++ } } - r.EncodeMapStart(yynn3100) - yynn3100 = 0 + r.EncodeMapStart(yynn3119) + yynn3119 = 0 } - if yyr3100 || yy2arr3100 { + if yyr3119 || yy2arr3119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3100[0] { - yym3102 := z.EncBinary() - _ = yym3102 + if yyq3119[0] { + yym3121 := z.EncBinary() + _ = yym3121 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38569,23 +38835,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3100[0] { + if yyq3119[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3103 := z.EncBinary() - _ = yym3103 + yym3122 := z.EncBinary() + _ = yym3122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3100 || yy2arr3100 { + if yyr3119 || yy2arr3119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3100[1] { - yym3105 := z.EncBinary() - _ = yym3105 + if yyq3119[1] { + yym3124 := z.EncBinary() + _ = yym3124 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38594,54 +38860,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3100[1] { + if yyq3119[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3106 := z.EncBinary() - _ = yym3106 + yym3125 := z.EncBinary() + _ = yym3125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3100 || yy2arr3100 { + if yyr3119 || yy2arr3119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3100[2] { - yy3108 := &x.ListMeta - yym3109 := z.EncBinary() - _ = yym3109 + if yyq3119[2] { + yy3127 := &x.ListMeta + yym3128 := z.EncBinary() + _ = yym3128 if false { - } else if z.HasExtensions() && z.EncExt(yy3108) { + } else if z.HasExtensions() && z.EncExt(yy3127) { } else { - z.EncFallback(yy3108) + z.EncFallback(yy3127) } } else { r.EncodeNil() } } else { - if yyq3100[2] { + if yyq3119[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3110 := &x.ListMeta - yym3111 := z.EncBinary() - _ = yym3111 + yy3129 := &x.ListMeta + yym3130 := z.EncBinary() + _ = yym3130 if false { - } else if z.HasExtensions() && z.EncExt(yy3110) { + } else if z.HasExtensions() && z.EncExt(yy3129) { } else { - z.EncFallback(yy3110) + z.EncFallback(yy3129) } } } - if yyr3100 || yy2arr3100 { + if yyr3119 || yy2arr3119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3113 := z.EncBinary() - _ = yym3113 + yym3132 := z.EncBinary() + _ = yym3132 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -38654,15 +38920,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3114 := z.EncBinary() - _ = yym3114 + yym3133 := z.EncBinary() + _ = yym3133 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3100 || yy2arr3100 { + if yyr3119 || yy2arr3119 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38675,25 +38941,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3115 := z.DecBinary() - _ = yym3115 + yym3134 := z.DecBinary() + _ = yym3134 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3116 := r.ContainerType() - if yyct3116 == codecSelferValueTypeMap1234 { - yyl3116 := r.ReadMapStart() - if yyl3116 == 0 { + yyct3135 := r.ContainerType() + if yyct3135 == codecSelferValueTypeMap1234 { + yyl3135 := r.ReadMapStart() + if yyl3135 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3116, d) + x.codecDecodeSelfFromMap(yyl3135, d) } - } else if yyct3116 == codecSelferValueTypeArray1234 { - yyl3116 := r.ReadArrayStart() - if yyl3116 == 0 { + } else if yyct3135 == codecSelferValueTypeArray1234 { + yyl3135 := r.ReadArrayStart() + if yyl3135 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3116, d) + x.codecDecodeSelfFromArray(yyl3135, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38705,12 +38971,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3117Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3117Slc - var yyhl3117 bool = l >= 0 - for yyj3117 := 0; ; yyj3117++ { - if yyhl3117 { - if yyj3117 >= l { + var yys3136Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3136Slc + var yyhl3136 bool = l >= 0 + for yyj3136 := 0; ; yyj3136++ { + if yyhl3136 { + if yyj3136 >= l { break } } else { @@ -38719,10 +38985,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3117Slc = r.DecodeBytes(yys3117Slc, true, true) - yys3117 := string(yys3117Slc) + yys3136Slc = r.DecodeBytes(yys3136Slc, true, true) + yys3136 := string(yys3136Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3117 { + switch yys3136 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38739,31 +39005,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3120 := &x.ListMeta - yym3121 := z.DecBinary() - _ = yym3121 + yyv3139 := &x.ListMeta + yym3140 := z.DecBinary() + _ = yym3140 if false { - } else if z.HasExtensions() && z.DecExt(yyv3120) { + } else if z.HasExtensions() && z.DecExt(yyv3139) { } else { - z.DecFallback(yyv3120, false) + z.DecFallback(yyv3139, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3122 := &x.Items - yym3123 := z.DecBinary() - _ = yym3123 + yyv3141 := &x.Items + yym3142 := z.DecBinary() + _ = yym3142 if false { } else { - h.decSliceEvent((*[]Event)(yyv3122), d) + h.decSliceEvent((*[]Event)(yyv3141), d) } } default: - z.DecStructFieldNotFound(-1, yys3117) - } // end switch yys3117 - } // end for yyj3117 + z.DecStructFieldNotFound(-1, yys3136) + } // end switch yys3136 + } // end for yyj3136 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38771,16 +39037,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3124 int - var yyb3124 bool - var yyhl3124 bool = l >= 0 - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + var yyj3143 int + var yyb3143 bool + var yyhl3143 bool = l >= 0 + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3124 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3124 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38790,13 +39056,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3124 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3124 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38806,13 +39072,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3124 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3124 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38820,22 +39086,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3127 := &x.ListMeta - yym3128 := z.DecBinary() - _ = yym3128 + yyv3146 := &x.ListMeta + yym3147 := z.DecBinary() + _ = yym3147 if false { - } else if z.HasExtensions() && z.DecExt(yyv3127) { + } else if z.HasExtensions() && z.DecExt(yyv3146) { } else { - z.DecFallback(yyv3127, false) + z.DecFallback(yyv3146, false) } } - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3124 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3124 { + if yyb3143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38843,26 +39109,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3129 := &x.Items - yym3130 := z.DecBinary() - _ = yym3130 + yyv3148 := &x.Items + yym3149 := z.DecBinary() + _ = yym3149 if false { } else { - h.decSliceEvent((*[]Event)(yyv3129), d) + h.decSliceEvent((*[]Event)(yyv3148), d) } } for { - yyj3124++ - if yyhl3124 { - yyb3124 = yyj3124 > l + yyj3143++ + if yyhl3143 { + yyb3143 = yyj3143 > l } else { - yyb3124 = r.CheckBreak() + yyb3143 = r.CheckBreak() } - if yyb3124 { + if yyb3143 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3124-1, "") + z.DecStructFieldNotFound(yyj3143-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38874,37 +39140,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3131 := z.EncBinary() - _ = yym3131 + yym3150 := z.EncBinary() + _ = yym3150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3132 := !z.EncBinary() - yy2arr3132 := z.EncBasicHandle().StructToArray - var yyq3132 [4]bool - _, _, _ = yysep3132, yyq3132, yy2arr3132 - const yyr3132 bool = false - yyq3132[0] = x.Kind != "" - yyq3132[1] = x.APIVersion != "" - yyq3132[2] = true - var yynn3132 int - if yyr3132 || yy2arr3132 { + yysep3151 := !z.EncBinary() + yy2arr3151 := z.EncBasicHandle().StructToArray + var yyq3151 [4]bool + _, _, _ = yysep3151, yyq3151, yy2arr3151 + const yyr3151 bool = false + yyq3151[0] = x.Kind != "" + yyq3151[1] = x.APIVersion != "" + yyq3151[2] = true + var yynn3151 int + if yyr3151 || yy2arr3151 { r.EncodeArrayStart(4) } else { - yynn3132 = 1 - for _, b := range yyq3132 { + yynn3151 = 1 + for _, b := range yyq3151 { if b { - yynn3132++ + yynn3151++ } } - r.EncodeMapStart(yynn3132) - yynn3132 = 0 + r.EncodeMapStart(yynn3151) + yynn3151 = 0 } - if yyr3132 || yy2arr3132 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[0] { - yym3134 := z.EncBinary() - _ = yym3134 + if yyq3151[0] { + yym3153 := z.EncBinary() + _ = yym3153 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38913,23 +39179,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3132[0] { + if yyq3151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3135 := z.EncBinary() - _ = yym3135 + yym3154 := z.EncBinary() + _ = yym3154 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3132 || yy2arr3132 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[1] { - yym3137 := z.EncBinary() - _ = yym3137 + if yyq3151[1] { + yym3156 := z.EncBinary() + _ = yym3156 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38938,54 +39204,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3132[1] { + if yyq3151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3138 := z.EncBinary() - _ = yym3138 + yym3157 := z.EncBinary() + _ = yym3157 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3132 || yy2arr3132 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[2] { - yy3140 := &x.ListMeta - yym3141 := z.EncBinary() - _ = yym3141 + if yyq3151[2] { + yy3159 := &x.ListMeta + yym3160 := z.EncBinary() + _ = yym3160 if false { - } else if z.HasExtensions() && z.EncExt(yy3140) { + } else if z.HasExtensions() && z.EncExt(yy3159) { } else { - z.EncFallback(yy3140) + z.EncFallback(yy3159) } } else { r.EncodeNil() } } else { - if yyq3132[2] { + if yyq3151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3142 := &x.ListMeta - yym3143 := z.EncBinary() - _ = yym3143 + yy3161 := &x.ListMeta + yym3162 := z.EncBinary() + _ = yym3162 if false { - } else if z.HasExtensions() && z.EncExt(yy3142) { + } else if z.HasExtensions() && z.EncExt(yy3161) { } else { - z.EncFallback(yy3142) + z.EncFallback(yy3161) } } } - if yyr3132 || yy2arr3132 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3145 := z.EncBinary() - _ = yym3145 + yym3164 := z.EncBinary() + _ = yym3164 if false { } else { h.encSliceruntime_Object(([]pkg8_runtime.Object)(x.Items), e) @@ -38998,15 +39264,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3146 := z.EncBinary() - _ = yym3146 + yym3165 := z.EncBinary() + _ = yym3165 if false { } else { h.encSliceruntime_Object(([]pkg8_runtime.Object)(x.Items), e) } } } - if yyr3132 || yy2arr3132 { + if yyr3151 || yy2arr3151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39019,25 +39285,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3147 := z.DecBinary() - _ = yym3147 + yym3166 := z.DecBinary() + _ = yym3166 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3148 := r.ContainerType() - if yyct3148 == codecSelferValueTypeMap1234 { - yyl3148 := r.ReadMapStart() - if yyl3148 == 0 { + yyct3167 := r.ContainerType() + if yyct3167 == codecSelferValueTypeMap1234 { + yyl3167 := r.ReadMapStart() + if yyl3167 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3148, d) + x.codecDecodeSelfFromMap(yyl3167, d) } - } else if yyct3148 == codecSelferValueTypeArray1234 { - yyl3148 := r.ReadArrayStart() - if yyl3148 == 0 { + } else if yyct3167 == codecSelferValueTypeArray1234 { + yyl3167 := r.ReadArrayStart() + if yyl3167 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3148, d) + x.codecDecodeSelfFromArray(yyl3167, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39049,12 +39315,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3149Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3149Slc - var yyhl3149 bool = l >= 0 - for yyj3149 := 0; ; yyj3149++ { - if yyhl3149 { - if yyj3149 >= l { + var yys3168Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3168Slc + var yyhl3168 bool = l >= 0 + for yyj3168 := 0; ; yyj3168++ { + if yyhl3168 { + if yyj3168 >= l { break } } else { @@ -39063,10 +39329,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3149Slc = r.DecodeBytes(yys3149Slc, true, true) - yys3149 := string(yys3149Slc) + yys3168Slc = r.DecodeBytes(yys3168Slc, true, true) + yys3168 := string(yys3168Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3149 { + switch yys3168 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39083,31 +39349,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3152 := &x.ListMeta - yym3153 := z.DecBinary() - _ = yym3153 + yyv3171 := &x.ListMeta + yym3172 := z.DecBinary() + _ = yym3172 if false { - } else if z.HasExtensions() && z.DecExt(yyv3152) { + } else if z.HasExtensions() && z.DecExt(yyv3171) { } else { - z.DecFallback(yyv3152, false) + z.DecFallback(yyv3171, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3154 := &x.Items - yym3155 := z.DecBinary() - _ = yym3155 + yyv3173 := &x.Items + yym3174 := z.DecBinary() + _ = yym3174 if false { } else { - h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3154), d) + h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3173), d) } } default: - z.DecStructFieldNotFound(-1, yys3149) - } // end switch yys3149 - } // end for yyj3149 + z.DecStructFieldNotFound(-1, yys3168) + } // end switch yys3168 + } // end for yyj3168 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39115,16 +39381,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3156 int - var yyb3156 bool - var yyhl3156 bool = l >= 0 - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + var yyj3175 int + var yyb3175 bool + var yyhl3175 bool = l >= 0 + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39134,13 +39400,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39150,13 +39416,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39164,22 +39430,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3159 := &x.ListMeta - yym3160 := z.DecBinary() - _ = yym3160 + yyv3178 := &x.ListMeta + yym3179 := z.DecBinary() + _ = yym3179 if false { - } else if z.HasExtensions() && z.DecExt(yyv3159) { + } else if z.HasExtensions() && z.DecExt(yyv3178) { } else { - z.DecFallback(yyv3159, false) + z.DecFallback(yyv3178, false) } } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39187,26 +39453,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3161 := &x.Items - yym3162 := z.DecBinary() - _ = yym3162 + yyv3180 := &x.Items + yym3181 := z.DecBinary() + _ = yym3181 if false { } else { - h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3161), d) + h.decSliceruntime_Object((*[]pkg8_runtime.Object)(yyv3180), d) } } for { - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3156-1, "") + z.DecStructFieldNotFound(yyj3175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39215,8 +39481,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3163 := z.EncBinary() - _ = yym3163 + yym3182 := z.EncBinary() + _ = yym3182 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39228,8 +39494,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3164 := z.DecBinary() - _ = yym3164 + yym3183 := z.DecBinary() + _ = yym3183 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39244,53 +39510,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3165 := z.EncBinary() - _ = yym3165 + yym3184 := z.EncBinary() + _ = yym3184 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3166 := !z.EncBinary() - yy2arr3166 := z.EncBasicHandle().StructToArray - var yyq3166 [6]bool - _, _, _ = yysep3166, yyq3166, yy2arr3166 - const yyr3166 bool = false - yyq3166[0] = x.Type != "" - yyq3166[1] = len(x.Max) != 0 - yyq3166[2] = len(x.Min) != 0 - yyq3166[3] = len(x.Default) != 0 - yyq3166[4] = len(x.DefaultRequest) != 0 - yyq3166[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3166 int - if yyr3166 || yy2arr3166 { + yysep3185 := !z.EncBinary() + yy2arr3185 := z.EncBasicHandle().StructToArray + var yyq3185 [6]bool + _, _, _ = yysep3185, yyq3185, yy2arr3185 + const yyr3185 bool = false + yyq3185[0] = x.Type != "" + yyq3185[1] = len(x.Max) != 0 + yyq3185[2] = len(x.Min) != 0 + yyq3185[3] = len(x.Default) != 0 + yyq3185[4] = len(x.DefaultRequest) != 0 + yyq3185[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3185 int + if yyr3185 || yy2arr3185 { r.EncodeArrayStart(6) } else { - yynn3166 = 0 - for _, b := range yyq3166 { + yynn3185 = 0 + for _, b := range yyq3185 { if b { - yynn3166++ + yynn3185++ } } - r.EncodeMapStart(yynn3166) - yynn3166 = 0 + r.EncodeMapStart(yynn3185) + yynn3185 = 0 } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[0] { + if yyq3185[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3166[0] { + if yyq3185[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[1] { + if yyq3185[1] { if x.Max == nil { r.EncodeNil() } else { @@ -39300,7 +39566,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3166[1] { + if yyq3185[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39311,9 +39577,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[2] { + if yyq3185[2] { if x.Min == nil { r.EncodeNil() } else { @@ -39323,7 +39589,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3166[2] { + if yyq3185[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39334,9 +39600,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[3] { + if yyq3185[3] { if x.Default == nil { r.EncodeNil() } else { @@ -39346,7 +39612,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3166[3] { + if yyq3185[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39357,9 +39623,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[4] { + if yyq3185[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -39369,7 +39635,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3166[4] { + if yyq3185[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39380,9 +39646,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3166[5] { + if yyq3185[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -39392,7 +39658,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3166[5] { + if yyq3185[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39403,7 +39669,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3166 || yy2arr3166 { + if yyr3185 || yy2arr3185 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39416,25 +39682,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3173 := z.DecBinary() - _ = yym3173 + yym3192 := z.DecBinary() + _ = yym3192 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3174 := r.ContainerType() - if yyct3174 == codecSelferValueTypeMap1234 { - yyl3174 := r.ReadMapStart() - if yyl3174 == 0 { + yyct3193 := r.ContainerType() + if yyct3193 == codecSelferValueTypeMap1234 { + yyl3193 := r.ReadMapStart() + if yyl3193 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3174, d) + x.codecDecodeSelfFromMap(yyl3193, d) } - } else if yyct3174 == codecSelferValueTypeArray1234 { - yyl3174 := r.ReadArrayStart() - if yyl3174 == 0 { + } else if yyct3193 == codecSelferValueTypeArray1234 { + yyl3193 := r.ReadArrayStart() + if yyl3193 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3174, d) + x.codecDecodeSelfFromArray(yyl3193, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39446,12 +39712,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3175Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3175Slc - var yyhl3175 bool = l >= 0 - for yyj3175 := 0; ; yyj3175++ { - if yyhl3175 { - if yyj3175 >= l { + var yys3194Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3194Slc + var yyhl3194 bool = l >= 0 + for yyj3194 := 0; ; yyj3194++ { + if yyhl3194 { + if yyj3194 >= l { break } } else { @@ -39460,10 +39726,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3175Slc = r.DecodeBytes(yys3175Slc, true, true) - yys3175 := string(yys3175Slc) + yys3194Slc = r.DecodeBytes(yys3194Slc, true, true) + yys3194 := string(yys3194Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3175 { + switch yys3194 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39474,41 +39740,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3177 := &x.Max - yyv3177.CodecDecodeSelf(d) + yyv3196 := &x.Max + yyv3196.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3178 := &x.Min - yyv3178.CodecDecodeSelf(d) + yyv3197 := &x.Min + yyv3197.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3179 := &x.Default - yyv3179.CodecDecodeSelf(d) + yyv3198 := &x.Default + yyv3198.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3180 := &x.DefaultRequest - yyv3180.CodecDecodeSelf(d) + yyv3199 := &x.DefaultRequest + yyv3199.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3181 := &x.MaxLimitRequestRatio - yyv3181.CodecDecodeSelf(d) + yyv3200 := &x.MaxLimitRequestRatio + yyv3200.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3175) - } // end switch yys3175 - } // end for yyj3175 + z.DecStructFieldNotFound(-1, yys3194) + } // end switch yys3194 + } // end for yyj3194 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39516,16 +39782,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3182 int - var yyb3182 bool - var yyhl3182 bool = l >= 0 - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + var yyj3201 int + var yyb3201 bool + var yyhl3201 bool = l >= 0 + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39535,13 +39801,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39549,16 +39815,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3184 := &x.Max - yyv3184.CodecDecodeSelf(d) + yyv3203 := &x.Max + yyv3203.CodecDecodeSelf(d) } - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39566,16 +39832,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3185 := &x.Min - yyv3185.CodecDecodeSelf(d) + yyv3204 := &x.Min + yyv3204.CodecDecodeSelf(d) } - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39583,16 +39849,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3186 := &x.Default - yyv3186.CodecDecodeSelf(d) + yyv3205 := &x.Default + yyv3205.CodecDecodeSelf(d) } - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39600,16 +39866,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3187 := &x.DefaultRequest - yyv3187.CodecDecodeSelf(d) + yyv3206 := &x.DefaultRequest + yyv3206.CodecDecodeSelf(d) } - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39617,21 +39883,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3188 := &x.MaxLimitRequestRatio - yyv3188.CodecDecodeSelf(d) + yyv3207 := &x.MaxLimitRequestRatio + yyv3207.CodecDecodeSelf(d) } for { - yyj3182++ - if yyhl3182 { - yyb3182 = yyj3182 > l + yyj3201++ + if yyhl3201 { + yyb3201 = yyj3201 > l } else { - yyb3182 = r.CheckBreak() + yyb3201 = r.CheckBreak() } - if yyb3182 { + if yyb3201 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3182-1, "") + z.DecStructFieldNotFound(yyj3201-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39643,36 +39909,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3189 := z.EncBinary() - _ = yym3189 + yym3208 := z.EncBinary() + _ = yym3208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3190 := !z.EncBinary() - yy2arr3190 := z.EncBasicHandle().StructToArray - var yyq3190 [1]bool - _, _, _ = yysep3190, yyq3190, yy2arr3190 - const yyr3190 bool = false - var yynn3190 int - if yyr3190 || yy2arr3190 { + yysep3209 := !z.EncBinary() + yy2arr3209 := z.EncBasicHandle().StructToArray + var yyq3209 [1]bool + _, _, _ = yysep3209, yyq3209, yy2arr3209 + const yyr3209 bool = false + var yynn3209 int + if yyr3209 || yy2arr3209 { r.EncodeArrayStart(1) } else { - yynn3190 = 1 - for _, b := range yyq3190 { + yynn3209 = 1 + for _, b := range yyq3209 { if b { - yynn3190++ + yynn3209++ } } - r.EncodeMapStart(yynn3190) - yynn3190 = 0 + r.EncodeMapStart(yynn3209) + yynn3209 = 0 } - if yyr3190 || yy2arr3190 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3192 := z.EncBinary() - _ = yym3192 + yym3211 := z.EncBinary() + _ = yym3211 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -39685,15 +39951,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3193 := z.EncBinary() - _ = yym3193 + yym3212 := z.EncBinary() + _ = yym3212 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3190 || yy2arr3190 { + if yyr3209 || yy2arr3209 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39706,25 +39972,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3194 := z.DecBinary() - _ = yym3194 + yym3213 := z.DecBinary() + _ = yym3213 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3195 := r.ContainerType() - if yyct3195 == codecSelferValueTypeMap1234 { - yyl3195 := r.ReadMapStart() - if yyl3195 == 0 { + yyct3214 := r.ContainerType() + if yyct3214 == codecSelferValueTypeMap1234 { + yyl3214 := r.ReadMapStart() + if yyl3214 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3195, d) + x.codecDecodeSelfFromMap(yyl3214, d) } - } else if yyct3195 == codecSelferValueTypeArray1234 { - yyl3195 := r.ReadArrayStart() - if yyl3195 == 0 { + } else if yyct3214 == codecSelferValueTypeArray1234 { + yyl3214 := r.ReadArrayStart() + if yyl3214 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3195, d) + x.codecDecodeSelfFromArray(yyl3214, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39736,12 +40002,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3196Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3196Slc - var yyhl3196 bool = l >= 0 - for yyj3196 := 0; ; yyj3196++ { - if yyhl3196 { - if yyj3196 >= l { + var yys3215Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3215Slc + var yyhl3215 bool = l >= 0 + for yyj3215 := 0; ; yyj3215++ { + if yyhl3215 { + if yyj3215 >= l { break } } else { @@ -39750,26 +40016,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3196Slc = r.DecodeBytes(yys3196Slc, true, true) - yys3196 := string(yys3196Slc) + yys3215Slc = r.DecodeBytes(yys3215Slc, true, true) + yys3215 := string(yys3215Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3196 { + switch yys3215 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3197 := &x.Limits - yym3198 := z.DecBinary() - _ = yym3198 + yyv3216 := &x.Limits + yym3217 := z.DecBinary() + _ = yym3217 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3197), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3216), d) } } default: - z.DecStructFieldNotFound(-1, yys3196) - } // end switch yys3196 - } // end for yyj3196 + z.DecStructFieldNotFound(-1, yys3215) + } // end switch yys3215 + } // end for yyj3215 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39777,16 +40043,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3199 int - var yyb3199 bool - var yyhl3199 bool = l >= 0 - yyj3199++ - if yyhl3199 { - yyb3199 = yyj3199 > l + var yyj3218 int + var yyb3218 bool + var yyhl3218 bool = l >= 0 + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3199 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3199 { + if yyb3218 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39794,26 +40060,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3200 := &x.Limits - yym3201 := z.DecBinary() - _ = yym3201 + yyv3219 := &x.Limits + yym3220 := z.DecBinary() + _ = yym3220 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3200), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3219), d) } } for { - yyj3199++ - if yyhl3199 { - yyb3199 = yyj3199 > l + yyj3218++ + if yyhl3218 { + yyb3218 = yyj3218 > l } else { - yyb3199 = r.CheckBreak() + yyb3218 = r.CheckBreak() } - if yyb3199 { + if yyb3218 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3199-1, "") + z.DecStructFieldNotFound(yyj3218-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39825,38 +40091,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3202 := z.EncBinary() - _ = yym3202 + yym3221 := z.EncBinary() + _ = yym3221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3203 := !z.EncBinary() - yy2arr3203 := z.EncBasicHandle().StructToArray - var yyq3203 [4]bool - _, _, _ = yysep3203, yyq3203, yy2arr3203 - const yyr3203 bool = false - yyq3203[0] = x.Kind != "" - yyq3203[1] = x.APIVersion != "" - yyq3203[2] = true - yyq3203[3] = true - var yynn3203 int - if yyr3203 || yy2arr3203 { + yysep3222 := !z.EncBinary() + yy2arr3222 := z.EncBasicHandle().StructToArray + var yyq3222 [4]bool + _, _, _ = yysep3222, yyq3222, yy2arr3222 + const yyr3222 bool = false + yyq3222[0] = x.Kind != "" + yyq3222[1] = x.APIVersion != "" + yyq3222[2] = true + yyq3222[3] = true + var yynn3222 int + if yyr3222 || yy2arr3222 { r.EncodeArrayStart(4) } else { - yynn3203 = 0 - for _, b := range yyq3203 { + yynn3222 = 0 + for _, b := range yyq3222 { if b { - yynn3203++ + yynn3222++ } } - r.EncodeMapStart(yynn3203) - yynn3203 = 0 + r.EncodeMapStart(yynn3222) + yynn3222 = 0 } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[0] { - yym3205 := z.EncBinary() - _ = yym3205 + if yyq3222[0] { + yym3224 := z.EncBinary() + _ = yym3224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39865,23 +40131,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3203[0] { + if yyq3222[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3206 := z.EncBinary() - _ = yym3206 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[1] { - yym3208 := z.EncBinary() - _ = yym3208 + if yyq3222[1] { + yym3227 := z.EncBinary() + _ = yym3227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39890,53 +40156,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3203[1] { + if yyq3222[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3209 := z.EncBinary() - _ = yym3209 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[2] { - yy3211 := &x.ObjectMeta - yy3211.CodecEncodeSelf(e) + if yyq3222[2] { + yy3230 := &x.ObjectMeta + yy3230.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3203[2] { + if yyq3222[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3212 := &x.ObjectMeta - yy3212.CodecEncodeSelf(e) + yy3231 := &x.ObjectMeta + yy3231.CodecEncodeSelf(e) } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[3] { - yy3214 := &x.Spec - yy3214.CodecEncodeSelf(e) + if yyq3222[3] { + yy3233 := &x.Spec + yy3233.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3203[3] { + if yyq3222[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3215 := &x.Spec - yy3215.CodecEncodeSelf(e) + yy3234 := &x.Spec + yy3234.CodecEncodeSelf(e) } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39949,25 +40215,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3216 := z.DecBinary() - _ = yym3216 + yym3235 := z.DecBinary() + _ = yym3235 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3217 := r.ContainerType() - if yyct3217 == codecSelferValueTypeMap1234 { - yyl3217 := r.ReadMapStart() - if yyl3217 == 0 { + yyct3236 := r.ContainerType() + if yyct3236 == codecSelferValueTypeMap1234 { + yyl3236 := r.ReadMapStart() + if yyl3236 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3217, d) + x.codecDecodeSelfFromMap(yyl3236, d) } - } else if yyct3217 == codecSelferValueTypeArray1234 { - yyl3217 := r.ReadArrayStart() - if yyl3217 == 0 { + } else if yyct3236 == codecSelferValueTypeArray1234 { + yyl3236 := r.ReadArrayStart() + if yyl3236 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3217, d) + x.codecDecodeSelfFromArray(yyl3236, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39979,12 +40245,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3218Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3218Slc - var yyhl3218 bool = l >= 0 - for yyj3218 := 0; ; yyj3218++ { - if yyhl3218 { - if yyj3218 >= l { + var yys3237Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3237Slc + var yyhl3237 bool = l >= 0 + for yyj3237 := 0; ; yyj3237++ { + if yyhl3237 { + if yyj3237 >= l { break } } else { @@ -39993,10 +40259,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3218Slc = r.DecodeBytes(yys3218Slc, true, true) - yys3218 := string(yys3218Slc) + yys3237Slc = r.DecodeBytes(yys3237Slc, true, true) + yys3237 := string(yys3237Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3218 { + switch yys3237 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40013,20 +40279,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3221 := &x.ObjectMeta - yyv3221.CodecDecodeSelf(d) + yyv3240 := &x.ObjectMeta + yyv3240.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3222 := &x.Spec - yyv3222.CodecDecodeSelf(d) + yyv3241 := &x.Spec + yyv3241.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3218) - } // end switch yys3218 - } // end for yyj3218 + z.DecStructFieldNotFound(-1, yys3237) + } // end switch yys3237 + } // end for yyj3237 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40034,16 +40300,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3223 int - var yyb3223 bool - var yyhl3223 bool = l >= 0 - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + var yyj3242 int + var yyb3242 bool + var yyhl3242 bool = l >= 0 + yyj3242++ + if yyhl3242 { + yyb3242 = yyj3242 > l } else { - yyb3223 = r.CheckBreak() + yyb3242 = r.CheckBreak() } - if yyb3223 { + if yyb3242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40053,13 +40319,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3242++ + if yyhl3242 { + yyb3242 = yyj3242 > l } else { - yyb3223 = r.CheckBreak() + yyb3242 = r.CheckBreak() } - if yyb3223 { + if yyb3242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40069,13 +40335,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3242++ + if yyhl3242 { + yyb3242 = yyj3242 > l } else { - yyb3223 = r.CheckBreak() + yyb3242 = r.CheckBreak() } - if yyb3223 { + if yyb3242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40083,16 +40349,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3226 := &x.ObjectMeta - yyv3226.CodecDecodeSelf(d) + yyv3245 := &x.ObjectMeta + yyv3245.CodecDecodeSelf(d) } - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3242++ + if yyhl3242 { + yyb3242 = yyj3242 > l } else { - yyb3223 = r.CheckBreak() + yyb3242 = r.CheckBreak() } - if yyb3223 { + if yyb3242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40100,21 +40366,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3227 := &x.Spec - yyv3227.CodecDecodeSelf(d) + yyv3246 := &x.Spec + yyv3246.CodecDecodeSelf(d) } for { - yyj3223++ - if yyhl3223 { - yyb3223 = yyj3223 > l + yyj3242++ + if yyhl3242 { + yyb3242 = yyj3242 > l } else { - yyb3223 = r.CheckBreak() + yyb3242 = r.CheckBreak() } - if yyb3223 { + if yyb3242 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3223-1, "") + z.DecStructFieldNotFound(yyj3242-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40126,37 +40392,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3228 := z.EncBinary() - _ = yym3228 + yym3247 := z.EncBinary() + _ = yym3247 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3229 := !z.EncBinary() - yy2arr3229 := z.EncBasicHandle().StructToArray - var yyq3229 [4]bool - _, _, _ = yysep3229, yyq3229, yy2arr3229 - const yyr3229 bool = false - yyq3229[0] = x.Kind != "" - yyq3229[1] = x.APIVersion != "" - yyq3229[2] = true - var yynn3229 int - if yyr3229 || yy2arr3229 { + yysep3248 := !z.EncBinary() + yy2arr3248 := z.EncBasicHandle().StructToArray + var yyq3248 [4]bool + _, _, _ = yysep3248, yyq3248, yy2arr3248 + const yyr3248 bool = false + yyq3248[0] = x.Kind != "" + yyq3248[1] = x.APIVersion != "" + yyq3248[2] = true + var yynn3248 int + if yyr3248 || yy2arr3248 { r.EncodeArrayStart(4) } else { - yynn3229 = 1 - for _, b := range yyq3229 { + yynn3248 = 1 + for _, b := range yyq3248 { if b { - yynn3229++ + yynn3248++ } } - r.EncodeMapStart(yynn3229) - yynn3229 = 0 + r.EncodeMapStart(yynn3248) + yynn3248 = 0 } - if yyr3229 || yy2arr3229 { + if yyr3248 || yy2arr3248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3229[0] { - yym3231 := z.EncBinary() - _ = yym3231 + if yyq3248[0] { + yym3250 := z.EncBinary() + _ = yym3250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40165,23 +40431,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3229[0] { + if yyq3248[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3232 := z.EncBinary() - _ = yym3232 + yym3251 := z.EncBinary() + _ = yym3251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3229 || yy2arr3229 { + if yyr3248 || yy2arr3248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3229[1] { - yym3234 := z.EncBinary() - _ = yym3234 + if yyq3248[1] { + yym3253 := z.EncBinary() + _ = yym3253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40190,54 +40456,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3229[1] { + if yyq3248[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3235 := z.EncBinary() - _ = yym3235 + yym3254 := z.EncBinary() + _ = yym3254 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3229 || yy2arr3229 { + if yyr3248 || yy2arr3248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3229[2] { - yy3237 := &x.ListMeta - yym3238 := z.EncBinary() - _ = yym3238 + if yyq3248[2] { + yy3256 := &x.ListMeta + yym3257 := z.EncBinary() + _ = yym3257 if false { - } else if z.HasExtensions() && z.EncExt(yy3237) { + } else if z.HasExtensions() && z.EncExt(yy3256) { } else { - z.EncFallback(yy3237) + z.EncFallback(yy3256) } } else { r.EncodeNil() } } else { - if yyq3229[2] { + if yyq3248[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3239 := &x.ListMeta - yym3240 := z.EncBinary() - _ = yym3240 + yy3258 := &x.ListMeta + yym3259 := z.EncBinary() + _ = yym3259 if false { - } else if z.HasExtensions() && z.EncExt(yy3239) { + } else if z.HasExtensions() && z.EncExt(yy3258) { } else { - z.EncFallback(yy3239) + z.EncFallback(yy3258) } } } - if yyr3229 || yy2arr3229 { + if yyr3248 || yy2arr3248 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3242 := z.EncBinary() - _ = yym3242 + yym3261 := z.EncBinary() + _ = yym3261 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -40250,15 +40516,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3243 := z.EncBinary() - _ = yym3243 + yym3262 := z.EncBinary() + _ = yym3262 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3229 || yy2arr3229 { + if yyr3248 || yy2arr3248 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40268,265 +40534,6 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3244 := z.DecBinary() - _ = yym3244 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3245 := r.ContainerType() - if yyct3245 == codecSelferValueTypeMap1234 { - yyl3245 := r.ReadMapStart() - if yyl3245 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3245, d) - } - } else if yyct3245 == codecSelferValueTypeArray1234 { - yyl3245 := r.ReadArrayStart() - if yyl3245 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3245, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3246Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3246Slc - var yyhl3246 bool = l >= 0 - for yyj3246 := 0; ; yyj3246++ { - if yyhl3246 { - if yyj3246 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3246Slc = r.DecodeBytes(yys3246Slc, true, true) - yys3246 := string(yys3246Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3246 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3249 := &x.ListMeta - yym3250 := z.DecBinary() - _ = yym3250 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3249) { - } else { - z.DecFallback(yyv3249, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3251 := &x.Items - yym3252 := z.DecBinary() - _ = yym3252 - if false { - } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3251), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3246) - } // end switch yys3246 - } // end for yyj3246 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3253 int - var yyb3253 bool - var yyhl3253 bool = l >= 0 - yyj3253++ - if yyhl3253 { - yyb3253 = yyj3253 > l - } else { - yyb3253 = r.CheckBreak() - } - if yyb3253 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3253++ - if yyhl3253 { - yyb3253 = yyj3253 > l - } else { - yyb3253 = r.CheckBreak() - } - if yyb3253 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3253++ - if yyhl3253 { - yyb3253 = yyj3253 > l - } else { - yyb3253 = r.CheckBreak() - } - if yyb3253 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3256 := &x.ListMeta - yym3257 := z.DecBinary() - _ = yym3257 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3256) { - } else { - z.DecFallback(yyv3256, false) - } - } - yyj3253++ - if yyhl3253 { - yyb3253 = yyj3253 > l - } else { - yyb3253 = r.CheckBreak() - } - if yyb3253 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3258 := &x.Items - yym3259 := z.DecBinary() - _ = yym3259 - if false { - } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3258), d) - } - } - for { - yyj3253++ - if yyhl3253 { - yyb3253 = yyj3253 > l - } else { - yyb3253 = r.CheckBreak() - } - if yyb3253 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3253-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3260 := z.EncBinary() - _ = yym3260 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3261 := !z.EncBinary() - yy2arr3261 := z.EncBasicHandle().StructToArray - var yyq3261 [1]bool - _, _, _ = yysep3261, yyq3261, yy2arr3261 - const yyr3261 bool = false - yyq3261[0] = len(x.Hard) != 0 - var yynn3261 int - if yyr3261 || yy2arr3261 { - r.EncodeArrayStart(1) - } else { - yynn3261 = 0 - for _, b := range yyq3261 { - if b { - yynn3261++ - } - } - r.EncodeMapStart(yynn3261) - yynn3261 = 0 - } - if yyr3261 || yy2arr3261 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3261[0] { - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3261[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hard")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } - } - if yyr3261 || yy2arr3261 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40556,7 +40563,7 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40578,820 +40585,6 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) yys3265 := string(yys3265Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys3265 { - case "hard": - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3266 := &x.Hard - yyv3266.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3265) - } // end switch yys3265 - } // end for yyj3265 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3267 int - var yyb3267 bool - var yyhl3267 bool = l >= 0 - yyj3267++ - if yyhl3267 { - yyb3267 = yyj3267 > l - } else { - yyb3267 = r.CheckBreak() - } - if yyb3267 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3268 := &x.Hard - yyv3268.CodecDecodeSelf(d) - } - for { - yyj3267++ - if yyhl3267 { - yyb3267 = yyj3267 > l - } else { - yyb3267 = r.CheckBreak() - } - if yyb3267 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3267-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3269 := z.EncBinary() - _ = yym3269 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3270 := !z.EncBinary() - yy2arr3270 := z.EncBasicHandle().StructToArray - var yyq3270 [2]bool - _, _, _ = yysep3270, yyq3270, yy2arr3270 - const yyr3270 bool = false - yyq3270[0] = len(x.Hard) != 0 - yyq3270[1] = len(x.Used) != 0 - var yynn3270 int - if yyr3270 || yy2arr3270 { - r.EncodeArrayStart(2) - } else { - yynn3270 = 0 - for _, b := range yyq3270 { - if b { - yynn3270++ - } - } - r.EncodeMapStart(yynn3270) - yynn3270 = 0 - } - if yyr3270 || yy2arr3270 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[0] { - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3270[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hard")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } - } - if yyr3270 || yy2arr3270 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[1] { - if x.Used == nil { - r.EncodeNil() - } else { - x.Used.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3270[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("used")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Used == nil { - r.EncodeNil() - } else { - x.Used.CodecEncodeSelf(e) - } - } - } - if yyr3270 || yy2arr3270 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3273 := z.DecBinary() - _ = yym3273 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3274 := r.ContainerType() - if yyct3274 == codecSelferValueTypeMap1234 { - yyl3274 := r.ReadMapStart() - if yyl3274 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3274, d) - } - } else if yyct3274 == codecSelferValueTypeArray1234 { - yyl3274 := r.ReadArrayStart() - if yyl3274 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3274, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3275Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3275Slc - var yyhl3275 bool = l >= 0 - for yyj3275 := 0; ; yyj3275++ { - if yyhl3275 { - if yyj3275 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3275Slc = r.DecodeBytes(yys3275Slc, true, true) - yys3275 := string(yys3275Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3275 { - case "hard": - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3276 := &x.Hard - yyv3276.CodecDecodeSelf(d) - } - case "used": - if r.TryDecodeAsNil() { - x.Used = nil - } else { - yyv3277 := &x.Used - yyv3277.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3275) - } // end switch yys3275 - } // end for yyj3275 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3278 int - var yyb3278 bool - var yyhl3278 bool = l >= 0 - yyj3278++ - if yyhl3278 { - yyb3278 = yyj3278 > l - } else { - yyb3278 = r.CheckBreak() - } - if yyb3278 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3279 := &x.Hard - yyv3279.CodecDecodeSelf(d) - } - yyj3278++ - if yyhl3278 { - yyb3278 = yyj3278 > l - } else { - yyb3278 = r.CheckBreak() - } - if yyb3278 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Used = nil - } else { - yyv3280 := &x.Used - yyv3280.CodecDecodeSelf(d) - } - for { - yyj3278++ - if yyhl3278 { - yyb3278 = yyj3278 > l - } else { - yyb3278 = r.CheckBreak() - } - if yyb3278 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3278-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3281 := z.EncBinary() - _ = yym3281 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3282 := !z.EncBinary() - yy2arr3282 := z.EncBasicHandle().StructToArray - var yyq3282 [5]bool - _, _, _ = yysep3282, yyq3282, yy2arr3282 - const yyr3282 bool = false - yyq3282[0] = x.Kind != "" - yyq3282[1] = x.APIVersion != "" - yyq3282[2] = true - yyq3282[3] = true - yyq3282[4] = true - var yynn3282 int - if yyr3282 || yy2arr3282 { - r.EncodeArrayStart(5) - } else { - yynn3282 = 0 - for _, b := range yyq3282 { - if b { - yynn3282++ - } - } - r.EncodeMapStart(yynn3282) - yynn3282 = 0 - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[0] { - yym3284 := z.EncBinary() - _ = yym3284 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3282[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3285 := z.EncBinary() - _ = yym3285 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[1] { - yym3287 := z.EncBinary() - _ = yym3287 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3282[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3288 := z.EncBinary() - _ = yym3288 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[2] { - yy3290 := &x.ObjectMeta - yy3290.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3282[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3291 := &x.ObjectMeta - yy3291.CodecEncodeSelf(e) - } - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[3] { - yy3293 := &x.Spec - yy3293.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3282[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3294 := &x.Spec - yy3294.CodecEncodeSelf(e) - } - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3282[4] { - yy3296 := &x.Status - yy3296.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3282[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3297 := &x.Status - yy3297.CodecEncodeSelf(e) - } - } - if yyr3282 || yy2arr3282 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3298 := z.DecBinary() - _ = yym3298 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3299 := r.ContainerType() - if yyct3299 == codecSelferValueTypeMap1234 { - yyl3299 := r.ReadMapStart() - if yyl3299 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3299, d) - } - } else if yyct3299 == codecSelferValueTypeArray1234 { - yyl3299 := r.ReadArrayStart() - if yyl3299 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3299, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3300Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3300Slc - var yyhl3300 bool = l >= 0 - for yyj3300 := 0; ; yyj3300++ { - if yyhl3300 { - if yyj3300 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3300Slc = r.DecodeBytes(yys3300Slc, true, true) - yys3300 := string(yys3300Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3300 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3303 := &x.ObjectMeta - yyv3303.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = ResourceQuotaSpec{} - } else { - yyv3304 := &x.Spec - yyv3304.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = ResourceQuotaStatus{} - } else { - yyv3305 := &x.Status - yyv3305.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3300) - } // end switch yys3300 - } // end for yyj3300 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3306 int - var yyb3306 bool - var yyhl3306 bool = l >= 0 - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3309 := &x.ObjectMeta - yyv3309.CodecDecodeSelf(d) - } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = ResourceQuotaSpec{} - } else { - yyv3310 := &x.Spec - yyv3310.CodecDecodeSelf(d) - } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = ResourceQuotaStatus{} - } else { - yyv3311 := &x.Status - yyv3311.CodecDecodeSelf(d) - } - for { - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l - } else { - yyb3306 = r.CheckBreak() - } - if yyb3306 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3306-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3312 := z.EncBinary() - _ = yym3312 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3313 := !z.EncBinary() - yy2arr3313 := z.EncBasicHandle().StructToArray - var yyq3313 [4]bool - _, _, _ = yysep3313, yyq3313, yy2arr3313 - const yyr3313 bool = false - yyq3313[0] = x.Kind != "" - yyq3313[1] = x.APIVersion != "" - yyq3313[2] = true - var yynn3313 int - if yyr3313 || yy2arr3313 { - r.EncodeArrayStart(4) - } else { - yynn3313 = 1 - for _, b := range yyq3313 { - if b { - yynn3313++ - } - } - r.EncodeMapStart(yynn3313) - yynn3313 = 0 - } - if yyr3313 || yy2arr3313 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[0] { - yym3315 := z.EncBinary() - _ = yym3315 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3313[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3316 := z.EncBinary() - _ = yym3316 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3313 || yy2arr3313 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[1] { - yym3318 := z.EncBinary() - _ = yym3318 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3313[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3319 := z.EncBinary() - _ = yym3319 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3313 || yy2arr3313 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[2] { - yy3321 := &x.ListMeta - yym3322 := z.EncBinary() - _ = yym3322 - if false { - } else if z.HasExtensions() && z.EncExt(yy3321) { - } else { - z.EncFallback(yy3321) - } - } else { - r.EncodeNil() - } - } else { - if yyq3313[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3323 := &x.ListMeta - yym3324 := z.EncBinary() - _ = yym3324 - if false { - } else if z.HasExtensions() && z.EncExt(yy3323) { - } else { - z.EncFallback(yy3323) - } - } - } - if yyr3313 || yy2arr3313 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3326 := z.EncBinary() - _ = yym3326 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3327 := z.EncBinary() - _ = yym3327 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } - if yyr3313 || yy2arr3313 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3328 := z.DecBinary() - _ = yym3328 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3329 := r.ContainerType() - if yyct3329 == codecSelferValueTypeMap1234 { - yyl3329 := r.ReadMapStart() - if yyl3329 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3329, d) - } - } else if yyct3329 == codecSelferValueTypeArray1234 { - yyl3329 := r.ReadArrayStart() - if yyl3329 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3329, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3330Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3330Slc - var yyhl3330 bool = l >= 0 - for yyj3330 := 0; ; yyj3330++ { - if yyhl3330 { - if yyj3330 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3330Slc = r.DecodeBytes(yys3330Slc, true, true) - yys3330 := string(yys3330Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3330 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41408,48 +40601,48 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3333 := &x.ListMeta - yym3334 := z.DecBinary() - _ = yym3334 + yyv3268 := &x.ListMeta + yym3269 := z.DecBinary() + _ = yym3269 if false { - } else if z.HasExtensions() && z.DecExt(yyv3333) { + } else if z.HasExtensions() && z.DecExt(yyv3268) { } else { - z.DecFallback(yyv3333, false) + z.DecFallback(yyv3268, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3335 := &x.Items - yym3336 := z.DecBinary() - _ = yym3336 + yyv3270 := &x.Items + yym3271 := z.DecBinary() + _ = yym3271 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3335), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3270), d) } } default: - z.DecStructFieldNotFound(-1, yys3330) - } // end switch yys3330 - } // end for yyj3330 + z.DecStructFieldNotFound(-1, yys3265) + } // end switch yys3265 + } // end for yyj3265 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3337 int - var yyb3337 bool - var yyhl3337 bool = l >= 0 - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + var yyj3272 int + var yyb3272 bool + var yyhl3272 bool = l >= 0 + yyj3272++ + if yyhl3272 { + yyb3272 = yyj3272 > l } else { - yyb3337 = r.CheckBreak() + yyb3272 = r.CheckBreak() } - if yyb3337 { + if yyb3272 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41459,13 +40652,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3272++ + if yyhl3272 { + yyb3272 = yyj3272 > l } else { - yyb3337 = r.CheckBreak() + yyb3272 = r.CheckBreak() } - if yyb3337 { + if yyb3272 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41475,13 +40668,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3272++ + if yyhl3272 { + yyb3272 = yyj3272 > l } else { - yyb3337 = r.CheckBreak() + yyb3272 = r.CheckBreak() } - if yyb3337 { + if yyb3272 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41489,22 +40682,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3340 := &x.ListMeta - yym3341 := z.DecBinary() - _ = yym3341 + yyv3275 := &x.ListMeta + yym3276 := z.DecBinary() + _ = yym3276 if false { - } else if z.HasExtensions() && z.DecExt(yyv3340) { + } else if z.HasExtensions() && z.DecExt(yyv3275) { } else { - z.DecFallback(yyv3340, false) + z.DecFallback(yyv3275, false) } } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3272++ + if yyhl3272 { + yyb3272 = yyj3272 > l } else { - yyb3337 = r.CheckBreak() + yyb3272 = r.CheckBreak() } - if yyb3337 { + if yyb3272 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41512,181 +40705,85 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3342 := &x.Items - yym3343 := z.DecBinary() - _ = yym3343 + yyv3277 := &x.Items + yym3278 := z.DecBinary() + _ = yym3278 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3342), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3277), d) } } for { - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3272++ + if yyhl3272 { + yyb3272 = yyj3272 > l } else { - yyb3337 = r.CheckBreak() + yyb3272 = r.CheckBreak() } - if yyb3337 { + if yyb3272 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3337-1, "") + z.DecStructFieldNotFound(yyj3272-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3344 := z.EncBinary() - _ = yym3344 + yym3279 := z.EncBinary() + _ = yym3279 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3345 := !z.EncBinary() - yy2arr3345 := z.EncBasicHandle().StructToArray - var yyq3345 [5]bool - _, _, _ = yysep3345, yyq3345, yy2arr3345 - const yyr3345 bool = false - yyq3345[0] = x.Kind != "" - yyq3345[1] = x.APIVersion != "" - yyq3345[2] = true - yyq3345[3] = len(x.Data) != 0 - yyq3345[4] = x.Type != "" - var yynn3345 int - if yyr3345 || yy2arr3345 { - r.EncodeArrayStart(5) + yysep3280 := !z.EncBinary() + yy2arr3280 := z.EncBasicHandle().StructToArray + var yyq3280 [1]bool + _, _, _ = yysep3280, yyq3280, yy2arr3280 + const yyr3280 bool = false + yyq3280[0] = len(x.Hard) != 0 + var yynn3280 int + if yyr3280 || yy2arr3280 { + r.EncodeArrayStart(1) } else { - yynn3345 = 0 - for _, b := range yyq3345 { + yynn3280 = 0 + for _, b := range yyq3280 { if b { - yynn3345++ + yynn3280++ } } - r.EncodeMapStart(yynn3345) - yynn3345 = 0 + r.EncodeMapStart(yynn3280) + yynn3280 = 0 } - if yyr3345 || yy2arr3345 { + if yyr3280 || yy2arr3280 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[0] { - yym3347 := z.EncBinary() - _ = yym3347 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3345[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3348 := z.EncBinary() - _ = yym3348 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3345 || yy2arr3345 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[1] { - yym3350 := z.EncBinary() - _ = yym3350 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3345[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3351 := z.EncBinary() - _ = yym3351 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3345 || yy2arr3345 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[2] { - yy3353 := &x.ObjectMeta - yy3353.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3345[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3354 := &x.ObjectMeta - yy3354.CodecEncodeSelf(e) - } - } - if yyr3345 || yy2arr3345 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[3] { - if x.Data == nil { + if yyq3280[0] { + if x.Hard == nil { r.EncodeNil() } else { - yym3356 := z.EncBinary() - _ = yym3356 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } + x.Hard.CodecEncodeSelf(e) } } else { r.EncodeNil() } } else { - if yyq3345[3] { + if yyq3280[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("data")) + r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Data == nil { + if x.Hard == nil { r.EncodeNil() } else { - yym3357 := z.EncBinary() - _ = yym3357 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } + x.Hard.CodecEncodeSelf(e) } } } - if yyr3345 || yy2arr3345 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[4] { - x.Type.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3345[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - } - if yyr3345 || yy2arr3345 { + if yyr3280 || yy2arr3280 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41695,29 +40792,29 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3359 := z.DecBinary() - _ = yym3359 + yym3282 := z.DecBinary() + _ = yym3282 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3360 := r.ContainerType() - if yyct3360 == codecSelferValueTypeMap1234 { - yyl3360 := r.ReadMapStart() - if yyl3360 == 0 { + yyct3283 := r.ContainerType() + if yyct3283 == codecSelferValueTypeMap1234 { + yyl3283 := r.ReadMapStart() + if yyl3283 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3360, d) + x.codecDecodeSelfFromMap(yyl3283, d) } - } else if yyct3360 == codecSelferValueTypeArray1234 { - yyl3360 := r.ReadArrayStart() - if yyl3360 == 0 { + } else if yyct3283 == codecSelferValueTypeArray1234 { + yyl3283 := r.ReadArrayStart() + if yyl3283 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3360, d) + x.codecDecodeSelfFromArray(yyl3283, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41725,16 +40822,16 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3361Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3361Slc - var yyhl3361 bool = l >= 0 - for yyj3361 := 0; ; yyj3361++ { - if yyhl3361 { - if yyj3361 >= l { + var yys3284Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3284Slc + var yyhl3284 bool = l >= 0 + for yyj3284 := 0; ; yyj3284++ { + if yyhl3284 { + if yyj3284 >= l { break } } else { @@ -41743,10 +40840,478 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3361Slc = r.DecodeBytes(yys3361Slc, true, true) - yys3361 := string(yys3361Slc) + yys3284Slc = r.DecodeBytes(yys3284Slc, true, true) + yys3284 := string(yys3284Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3361 { + switch yys3284 { + case "hard": + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3285 := &x.Hard + yyv3285.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3284) + } // end switch yys3284 + } // end for yyj3284 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3286 int + var yyb3286 bool + var yyhl3286 bool = l >= 0 + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l + } else { + yyb3286 = r.CheckBreak() + } + if yyb3286 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3287 := &x.Hard + yyv3287.CodecDecodeSelf(d) + } + for { + yyj3286++ + if yyhl3286 { + yyb3286 = yyj3286 > l + } else { + yyb3286 = r.CheckBreak() + } + if yyb3286 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3286-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3288 := z.EncBinary() + _ = yym3288 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3289 := !z.EncBinary() + yy2arr3289 := z.EncBasicHandle().StructToArray + var yyq3289 [2]bool + _, _, _ = yysep3289, yyq3289, yy2arr3289 + const yyr3289 bool = false + yyq3289[0] = len(x.Hard) != 0 + yyq3289[1] = len(x.Used) != 0 + var yynn3289 int + if yyr3289 || yy2arr3289 { + r.EncodeArrayStart(2) + } else { + yynn3289 = 0 + for _, b := range yyq3289 { + if b { + yynn3289++ + } + } + r.EncodeMapStart(yynn3289) + yynn3289 = 0 + } + if yyr3289 || yy2arr3289 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3289[0] { + if x.Hard == nil { + r.EncodeNil() + } else { + x.Hard.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3289[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hard")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Hard == nil { + r.EncodeNil() + } else { + x.Hard.CodecEncodeSelf(e) + } + } + } + if yyr3289 || yy2arr3289 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3289[1] { + if x.Used == nil { + r.EncodeNil() + } else { + x.Used.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3289[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("used")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Used == nil { + r.EncodeNil() + } else { + x.Used.CodecEncodeSelf(e) + } + } + } + if yyr3289 || yy2arr3289 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3292 := z.DecBinary() + _ = yym3292 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3293 := r.ContainerType() + if yyct3293 == codecSelferValueTypeMap1234 { + yyl3293 := r.ReadMapStart() + if yyl3293 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3293, d) + } + } else if yyct3293 == codecSelferValueTypeArray1234 { + yyl3293 := r.ReadArrayStart() + if yyl3293 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3293, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3294Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3294Slc + var yyhl3294 bool = l >= 0 + for yyj3294 := 0; ; yyj3294++ { + if yyhl3294 { + if yyj3294 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3294Slc = r.DecodeBytes(yys3294Slc, true, true) + yys3294 := string(yys3294Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3294 { + case "hard": + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3295 := &x.Hard + yyv3295.CodecDecodeSelf(d) + } + case "used": + if r.TryDecodeAsNil() { + x.Used = nil + } else { + yyv3296 := &x.Used + yyv3296.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3294) + } // end switch yys3294 + } // end for yyj3294 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3297 int + var yyb3297 bool + var yyhl3297 bool = l >= 0 + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l + } else { + yyb3297 = r.CheckBreak() + } + if yyb3297 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3298 := &x.Hard + yyv3298.CodecDecodeSelf(d) + } + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l + } else { + yyb3297 = r.CheckBreak() + } + if yyb3297 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Used = nil + } else { + yyv3299 := &x.Used + yyv3299.CodecDecodeSelf(d) + } + for { + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l + } else { + yyb3297 = r.CheckBreak() + } + if yyb3297 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3297-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3300 := z.EncBinary() + _ = yym3300 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3301 := !z.EncBinary() + yy2arr3301 := z.EncBasicHandle().StructToArray + var yyq3301 [5]bool + _, _, _ = yysep3301, yyq3301, yy2arr3301 + const yyr3301 bool = false + yyq3301[0] = x.Kind != "" + yyq3301[1] = x.APIVersion != "" + yyq3301[2] = true + yyq3301[3] = true + yyq3301[4] = true + var yynn3301 int + if yyr3301 || yy2arr3301 { + r.EncodeArrayStart(5) + } else { + yynn3301 = 0 + for _, b := range yyq3301 { + if b { + yynn3301++ + } + } + r.EncodeMapStart(yynn3301) + yynn3301 = 0 + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3301[0] { + yym3303 := z.EncBinary() + _ = yym3303 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3301[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3304 := z.EncBinary() + _ = yym3304 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3301[1] { + yym3306 := z.EncBinary() + _ = yym3306 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3301[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3307 := z.EncBinary() + _ = yym3307 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3301[2] { + yy3309 := &x.ObjectMeta + yy3309.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3301[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3310 := &x.ObjectMeta + yy3310.CodecEncodeSelf(e) + } + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3301[3] { + yy3312 := &x.Spec + yy3312.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3301[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3313 := &x.Spec + yy3313.CodecEncodeSelf(e) + } + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3301[4] { + yy3315 := &x.Status + yy3315.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3301[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3316 := &x.Status + yy3316.CodecEncodeSelf(e) + } + } + if yyr3301 || yy2arr3301 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3317 := z.DecBinary() + _ = yym3317 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3318 := r.ContainerType() + if yyct3318 == codecSelferValueTypeMap1234 { + yyl3318 := r.ReadMapStart() + if yyl3318 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3318, d) + } + } else if yyct3318 == codecSelferValueTypeArray1234 { + yyl3318 := r.ReadArrayStart() + if yyl3318 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3318, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3319Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3319Slc + var yyhl3319 bool = l >= 0 + for yyj3319 := 0; ; yyj3319++ { + if yyhl3319 { + if yyj3319 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3319Slc = r.DecodeBytes(yys3319Slc, true, true) + yys3319 := string(yys3319Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3319 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41763,48 +41328,44 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3364 := &x.ObjectMeta - yyv3364.CodecDecodeSelf(d) + yyv3322 := &x.ObjectMeta + yyv3322.CodecDecodeSelf(d) } - case "data": + case "spec": if r.TryDecodeAsNil() { - x.Data = nil + x.Spec = ResourceQuotaSpec{} } else { - yyv3365 := &x.Data - yym3366 := z.DecBinary() - _ = yym3366 - if false { - } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3365), d) - } + yyv3323 := &x.Spec + yyv3323.CodecDecodeSelf(d) } - case "type": + case "status": if r.TryDecodeAsNil() { - x.Type = "" + x.Status = ResourceQuotaStatus{} } else { - x.Type = SecretType(r.DecodeString()) + yyv3324 := &x.Status + yyv3324.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3361) - } // end switch yys3361 - } // end for yyj3361 + z.DecStructFieldNotFound(-1, yys3319) + } // end switch yys3319 + } // end for yyj3319 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3368 int - var yyb3368 bool - var yyhl3368 bool = l >= 0 - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + var yyj3325 int + var yyb3325 bool + var yyhl3325 bool = l >= 0 + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l } else { - yyb3368 = r.CheckBreak() + yyb3325 = r.CheckBreak() } - if yyb3368 { + if yyb3325 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41814,13 +41375,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l } else { - yyb3368 = r.CheckBreak() + yyb3325 = r.CheckBreak() } - if yyb3368 { + if yyb3325 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41830,13 +41391,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l } else { - yyb3368 = r.CheckBreak() + yyb3325 = r.CheckBreak() } - if yyb3368 { + if yyb3325 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41844,16 +41405,721 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3371 := &x.ObjectMeta - yyv3371.CodecDecodeSelf(d) + yyv3328 := &x.ObjectMeta + yyv3328.CodecDecodeSelf(d) } - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l } else { - yyb3368 = r.CheckBreak() + yyb3325 = r.CheckBreak() } - if yyb3368 { + if yyb3325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = ResourceQuotaSpec{} + } else { + yyv3329 := &x.Spec + yyv3329.CodecDecodeSelf(d) + } + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l + } else { + yyb3325 = r.CheckBreak() + } + if yyb3325 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = ResourceQuotaStatus{} + } else { + yyv3330 := &x.Status + yyv3330.CodecDecodeSelf(d) + } + for { + yyj3325++ + if yyhl3325 { + yyb3325 = yyj3325 > l + } else { + yyb3325 = r.CheckBreak() + } + if yyb3325 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3325-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3331 := z.EncBinary() + _ = yym3331 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3332 := !z.EncBinary() + yy2arr3332 := z.EncBasicHandle().StructToArray + var yyq3332 [4]bool + _, _, _ = yysep3332, yyq3332, yy2arr3332 + const yyr3332 bool = false + yyq3332[0] = x.Kind != "" + yyq3332[1] = x.APIVersion != "" + yyq3332[2] = true + var yynn3332 int + if yyr3332 || yy2arr3332 { + r.EncodeArrayStart(4) + } else { + yynn3332 = 1 + for _, b := range yyq3332 { + if b { + yynn3332++ + } + } + r.EncodeMapStart(yynn3332) + yynn3332 = 0 + } + if yyr3332 || yy2arr3332 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3332[0] { + yym3334 := z.EncBinary() + _ = yym3334 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3332[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3335 := z.EncBinary() + _ = yym3335 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3332 || yy2arr3332 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3332[1] { + yym3337 := z.EncBinary() + _ = yym3337 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3332[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3338 := z.EncBinary() + _ = yym3338 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3332 || yy2arr3332 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3332[2] { + yy3340 := &x.ListMeta + yym3341 := z.EncBinary() + _ = yym3341 + if false { + } else if z.HasExtensions() && z.EncExt(yy3340) { + } else { + z.EncFallback(yy3340) + } + } else { + r.EncodeNil() + } + } else { + if yyq3332[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3342 := &x.ListMeta + yym3343 := z.EncBinary() + _ = yym3343 + if false { + } else if z.HasExtensions() && z.EncExt(yy3342) { + } else { + z.EncFallback(yy3342) + } + } + } + if yyr3332 || yy2arr3332 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3345 := z.EncBinary() + _ = yym3345 + if false { + } else { + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3346 := z.EncBinary() + _ = yym3346 + if false { + } else { + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) + } + } + } + if yyr3332 || yy2arr3332 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3347 := z.DecBinary() + _ = yym3347 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3348 := r.ContainerType() + if yyct3348 == codecSelferValueTypeMap1234 { + yyl3348 := r.ReadMapStart() + if yyl3348 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3348, d) + } + } else if yyct3348 == codecSelferValueTypeArray1234 { + yyl3348 := r.ReadArrayStart() + if yyl3348 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3348, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3349Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3349Slc + var yyhl3349 bool = l >= 0 + for yyj3349 := 0; ; yyj3349++ { + if yyhl3349 { + if yyj3349 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3349Slc = r.DecodeBytes(yys3349Slc, true, true) + yys3349 := string(yys3349Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3349 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3352 := &x.ListMeta + yym3353 := z.DecBinary() + _ = yym3353 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3352) { + } else { + z.DecFallback(yyv3352, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3354 := &x.Items + yym3355 := z.DecBinary() + _ = yym3355 + if false { + } else { + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3354), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3349) + } // end switch yys3349 + } // end for yyj3349 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3356 int + var yyb3356 bool + var yyhl3356 bool = l >= 0 + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l + } else { + yyb3356 = r.CheckBreak() + } + if yyb3356 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l + } else { + yyb3356 = r.CheckBreak() + } + if yyb3356 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l + } else { + yyb3356 = r.CheckBreak() + } + if yyb3356 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3359 := &x.ListMeta + yym3360 := z.DecBinary() + _ = yym3360 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3359) { + } else { + z.DecFallback(yyv3359, false) + } + } + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l + } else { + yyb3356 = r.CheckBreak() + } + if yyb3356 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3361 := &x.Items + yym3362 := z.DecBinary() + _ = yym3362 + if false { + } else { + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3361), d) + } + } + for { + yyj3356++ + if yyhl3356 { + yyb3356 = yyj3356 > l + } else { + yyb3356 = r.CheckBreak() + } + if yyb3356 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3356-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3363 := z.EncBinary() + _ = yym3363 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3364 := !z.EncBinary() + yy2arr3364 := z.EncBasicHandle().StructToArray + var yyq3364 [5]bool + _, _, _ = yysep3364, yyq3364, yy2arr3364 + const yyr3364 bool = false + yyq3364[0] = x.Kind != "" + yyq3364[1] = x.APIVersion != "" + yyq3364[2] = true + yyq3364[3] = len(x.Data) != 0 + yyq3364[4] = x.Type != "" + var yynn3364 int + if yyr3364 || yy2arr3364 { + r.EncodeArrayStart(5) + } else { + yynn3364 = 0 + for _, b := range yyq3364 { + if b { + yynn3364++ + } + } + r.EncodeMapStart(yynn3364) + yynn3364 = 0 + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3364[0] { + yym3366 := z.EncBinary() + _ = yym3366 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3364[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3367 := z.EncBinary() + _ = yym3367 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3364[1] { + yym3369 := z.EncBinary() + _ = yym3369 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3364[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3370 := z.EncBinary() + _ = yym3370 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3364[2] { + yy3372 := &x.ObjectMeta + yy3372.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3364[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3373 := &x.ObjectMeta + yy3373.CodecEncodeSelf(e) + } + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3364[3] { + if x.Data == nil { + r.EncodeNil() + } else { + yym3375 := z.EncBinary() + _ = yym3375 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3364[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("data")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Data == nil { + r.EncodeNil() + } else { + yym3376 := z.EncBinary() + _ = yym3376 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3364[4] { + x.Type.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3364[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + } + if yyr3364 || yy2arr3364 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3378 := z.DecBinary() + _ = yym3378 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3379 := r.ContainerType() + if yyct3379 == codecSelferValueTypeMap1234 { + yyl3379 := r.ReadMapStart() + if yyl3379 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3379, d) + } + } else if yyct3379 == codecSelferValueTypeArray1234 { + yyl3379 := r.ReadArrayStart() + if yyl3379 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3379, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3380Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3380Slc + var yyhl3380 bool = l >= 0 + for yyj3380 := 0; ; yyj3380++ { + if yyhl3380 { + if yyj3380 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3380Slc = r.DecodeBytes(yys3380Slc, true, true) + yys3380 := string(yys3380Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3380 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3383 := &x.ObjectMeta + yyv3383.CodecDecodeSelf(d) + } + case "data": + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv3384 := &x.Data + yym3385 := z.DecBinary() + _ = yym3385 + if false { + } else { + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3384), d) + } + } + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = SecretType(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3380) + } // end switch yys3380 + } // end for yyj3380 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3387 int + var yyb3387 bool + var yyhl3387 bool = l >= 0 + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l + } else { + yyb3387 = r.CheckBreak() + } + if yyb3387 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l + } else { + yyb3387 = r.CheckBreak() + } + if yyb3387 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l + } else { + yyb3387 = r.CheckBreak() + } + if yyb3387 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3390 := &x.ObjectMeta + yyv3390.CodecDecodeSelf(d) + } + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l + } else { + yyb3387 = r.CheckBreak() + } + if yyb3387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41861,21 +42127,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3372 := &x.Data - yym3373 := z.DecBinary() - _ = yym3373 + yyv3391 := &x.Data + yym3392 := z.DecBinary() + _ = yym3392 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3372), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3391), d) } } - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l } else { - yyb3368 = r.CheckBreak() + yyb3387 = r.CheckBreak() } - if yyb3368 { + if yyb3387 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41886,17 +42152,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3368++ - if yyhl3368 { - yyb3368 = yyj3368 > l + yyj3387++ + if yyhl3387 { + yyb3387 = yyj3387 > l } else { - yyb3368 = r.CheckBreak() + yyb3387 = r.CheckBreak() } - if yyb3368 { + if yyb3387 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3368-1, "") + z.DecStructFieldNotFound(yyj3387-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41905,8 +42171,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3375 := z.EncBinary() - _ = yym3375 + yym3394 := z.EncBinary() + _ = yym3394 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41918,8 +42184,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3376 := z.DecBinary() - _ = yym3376 + yym3395 := z.DecBinary() + _ = yym3395 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41934,37 +42200,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3377 := z.EncBinary() - _ = yym3377 + yym3396 := z.EncBinary() + _ = yym3396 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3378 := !z.EncBinary() - yy2arr3378 := z.EncBasicHandle().StructToArray - var yyq3378 [4]bool - _, _, _ = yysep3378, yyq3378, yy2arr3378 - const yyr3378 bool = false - yyq3378[0] = x.Kind != "" - yyq3378[1] = x.APIVersion != "" - yyq3378[2] = true - var yynn3378 int - if yyr3378 || yy2arr3378 { + yysep3397 := !z.EncBinary() + yy2arr3397 := z.EncBasicHandle().StructToArray + var yyq3397 [4]bool + _, _, _ = yysep3397, yyq3397, yy2arr3397 + const yyr3397 bool = false + yyq3397[0] = x.Kind != "" + yyq3397[1] = x.APIVersion != "" + yyq3397[2] = true + var yynn3397 int + if yyr3397 || yy2arr3397 { r.EncodeArrayStart(4) } else { - yynn3378 = 1 - for _, b := range yyq3378 { + yynn3397 = 1 + for _, b := range yyq3397 { if b { - yynn3378++ + yynn3397++ } } - r.EncodeMapStart(yynn3378) - yynn3378 = 0 + r.EncodeMapStart(yynn3397) + yynn3397 = 0 } - if yyr3378 || yy2arr3378 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3378[0] { - yym3380 := z.EncBinary() - _ = yym3380 + if yyq3397[0] { + yym3399 := z.EncBinary() + _ = yym3399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41973,23 +42239,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3378[0] { + if yyq3397[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3381 := z.EncBinary() - _ = yym3381 + yym3400 := z.EncBinary() + _ = yym3400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3378 || yy2arr3378 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3378[1] { - yym3383 := z.EncBinary() - _ = yym3383 + if yyq3397[1] { + yym3402 := z.EncBinary() + _ = yym3402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41998,54 +42264,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3378[1] { + if yyq3397[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3384 := z.EncBinary() - _ = yym3384 + yym3403 := z.EncBinary() + _ = yym3403 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3378 || yy2arr3378 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3378[2] { - yy3386 := &x.ListMeta - yym3387 := z.EncBinary() - _ = yym3387 + if yyq3397[2] { + yy3405 := &x.ListMeta + yym3406 := z.EncBinary() + _ = yym3406 if false { - } else if z.HasExtensions() && z.EncExt(yy3386) { + } else if z.HasExtensions() && z.EncExt(yy3405) { } else { - z.EncFallback(yy3386) + z.EncFallback(yy3405) } } else { r.EncodeNil() } } else { - if yyq3378[2] { + if yyq3397[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3388 := &x.ListMeta - yym3389 := z.EncBinary() - _ = yym3389 + yy3407 := &x.ListMeta + yym3408 := z.EncBinary() + _ = yym3408 if false { - } else if z.HasExtensions() && z.EncExt(yy3388) { + } else if z.HasExtensions() && z.EncExt(yy3407) { } else { - z.EncFallback(yy3388) + z.EncFallback(yy3407) } } } - if yyr3378 || yy2arr3378 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3391 := z.EncBinary() - _ = yym3391 + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -42058,15 +42324,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3392 := z.EncBinary() - _ = yym3392 + yym3411 := z.EncBinary() + _ = yym3411 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3378 || yy2arr3378 { + if yyr3397 || yy2arr3397 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42079,25 +42345,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3393 := z.DecBinary() - _ = yym3393 + yym3412 := z.DecBinary() + _ = yym3412 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3394 := r.ContainerType() - if yyct3394 == codecSelferValueTypeMap1234 { - yyl3394 := r.ReadMapStart() - if yyl3394 == 0 { + yyct3413 := r.ContainerType() + if yyct3413 == codecSelferValueTypeMap1234 { + yyl3413 := r.ReadMapStart() + if yyl3413 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3394, d) + x.codecDecodeSelfFromMap(yyl3413, d) } - } else if yyct3394 == codecSelferValueTypeArray1234 { - yyl3394 := r.ReadArrayStart() - if yyl3394 == 0 { + } else if yyct3413 == codecSelferValueTypeArray1234 { + yyl3413 := r.ReadArrayStart() + if yyl3413 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3394, d) + x.codecDecodeSelfFromArray(yyl3413, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42109,12 +42375,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3395Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3395Slc - var yyhl3395 bool = l >= 0 - for yyj3395 := 0; ; yyj3395++ { - if yyhl3395 { - if yyj3395 >= l { + var yys3414Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3414Slc + var yyhl3414 bool = l >= 0 + for yyj3414 := 0; ; yyj3414++ { + if yyhl3414 { + if yyj3414 >= l { break } } else { @@ -42123,10 +42389,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3395Slc = r.DecodeBytes(yys3395Slc, true, true) - yys3395 := string(yys3395Slc) + yys3414Slc = r.DecodeBytes(yys3414Slc, true, true) + yys3414 := string(yys3414Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3395 { + switch yys3414 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42143,31 +42409,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3398 := &x.ListMeta - yym3399 := z.DecBinary() - _ = yym3399 + yyv3417 := &x.ListMeta + yym3418 := z.DecBinary() + _ = yym3418 if false { - } else if z.HasExtensions() && z.DecExt(yyv3398) { + } else if z.HasExtensions() && z.DecExt(yyv3417) { } else { - z.DecFallback(yyv3398, false) + z.DecFallback(yyv3417, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3400 := &x.Items - yym3401 := z.DecBinary() - _ = yym3401 + yyv3419 := &x.Items + yym3420 := z.DecBinary() + _ = yym3420 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3400), d) + h.decSliceSecret((*[]Secret)(yyv3419), d) } } default: - z.DecStructFieldNotFound(-1, yys3395) - } // end switch yys3395 - } // end for yyj3395 + z.DecStructFieldNotFound(-1, yys3414) + } // end switch yys3414 + } // end for yyj3414 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42175,16 +42441,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3402 int - var yyb3402 bool - var yyhl3402 bool = l >= 0 - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + var yyj3421 int + var yyb3421 bool + var yyhl3421 bool = l >= 0 + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42194,13 +42460,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42210,13 +42476,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42224,22 +42490,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3405 := &x.ListMeta - yym3406 := z.DecBinary() - _ = yym3406 + yyv3424 := &x.ListMeta + yym3425 := z.DecBinary() + _ = yym3425 if false { - } else if z.HasExtensions() && z.DecExt(yyv3405) { + } else if z.HasExtensions() && z.DecExt(yyv3424) { } else { - z.DecFallback(yyv3405, false) + z.DecFallback(yyv3424, false) } } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42247,26 +42513,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3407 := &x.Items - yym3408 := z.DecBinary() - _ = yym3408 + yyv3426 := &x.Items + yym3427 := z.DecBinary() + _ = yym3427 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3407), d) + h.decSliceSecret((*[]Secret)(yyv3426), d) } } for { - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3402-1, "") + z.DecStructFieldNotFound(yyj3421-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42275,8 +42541,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3409 := z.EncBinary() - _ = yym3409 + yym3428 := z.EncBinary() + _ = yym3428 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42288,8 +42554,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3410 := z.DecBinary() - _ = yym3410 + yym3429 := z.DecBinary() + _ = yym3429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42301,8 +42567,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3411 := z.EncBinary() - _ = yym3411 + yym3430 := z.EncBinary() + _ = yym3430 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42314,8 +42580,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3412 := z.DecBinary() - _ = yym3412 + yym3431 := z.DecBinary() + _ = yym3431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42330,32 +42596,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3413 := z.EncBinary() - _ = yym3413 + yym3432 := z.EncBinary() + _ = yym3432 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3414 := !z.EncBinary() - yy2arr3414 := z.EncBasicHandle().StructToArray - var yyq3414 [4]bool - _, _, _ = yysep3414, yyq3414, yy2arr3414 - const yyr3414 bool = false - yyq3414[2] = x.Message != "" - yyq3414[3] = x.Error != "" - var yynn3414 int - if yyr3414 || yy2arr3414 { + yysep3433 := !z.EncBinary() + yy2arr3433 := z.EncBasicHandle().StructToArray + var yyq3433 [4]bool + _, _, _ = yysep3433, yyq3433, yy2arr3433 + const yyr3433 bool = false + yyq3433[2] = x.Message != "" + yyq3433[3] = x.Error != "" + var yynn3433 int + if yyr3433 || yy2arr3433 { r.EncodeArrayStart(4) } else { - yynn3414 = 2 - for _, b := range yyq3414 { + yynn3433 = 2 + for _, b := range yyq3433 { if b { - yynn3414++ + yynn3433++ } } - r.EncodeMapStart(yynn3414) - yynn3414 = 0 + r.EncodeMapStart(yynn3433) + yynn3433 = 0 } - if yyr3414 || yy2arr3414 { + if yyr3433 || yy2arr3433 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -42364,7 +42630,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3414 || yy2arr3414 { + if yyr3433 || yy2arr3433 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -42373,11 +42639,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3414 || yy2arr3414 { + if yyr3433 || yy2arr3433 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3414[2] { - yym3418 := z.EncBinary() - _ = yym3418 + if yyq3433[2] { + yym3437 := z.EncBinary() + _ = yym3437 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -42386,23 +42652,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3414[2] { + if yyq3433[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3419 := z.EncBinary() - _ = yym3419 + yym3438 := z.EncBinary() + _ = yym3438 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3414 || yy2arr3414 { + if yyr3433 || yy2arr3433 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3414[3] { - yym3421 := z.EncBinary() - _ = yym3421 + if yyq3433[3] { + yym3440 := z.EncBinary() + _ = yym3440 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -42411,19 +42677,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3414[3] { + if yyq3433[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3422 := z.EncBinary() - _ = yym3422 + yym3441 := z.EncBinary() + _ = yym3441 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3414 || yy2arr3414 { + if yyr3433 || yy2arr3433 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42436,25 +42702,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3423 := z.DecBinary() - _ = yym3423 + yym3442 := z.DecBinary() + _ = yym3442 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3424 := r.ContainerType() - if yyct3424 == codecSelferValueTypeMap1234 { - yyl3424 := r.ReadMapStart() - if yyl3424 == 0 { + yyct3443 := r.ContainerType() + if yyct3443 == codecSelferValueTypeMap1234 { + yyl3443 := r.ReadMapStart() + if yyl3443 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3424, d) + x.codecDecodeSelfFromMap(yyl3443, d) } - } else if yyct3424 == codecSelferValueTypeArray1234 { - yyl3424 := r.ReadArrayStart() - if yyl3424 == 0 { + } else if yyct3443 == codecSelferValueTypeArray1234 { + yyl3443 := r.ReadArrayStart() + if yyl3443 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3424, d) + x.codecDecodeSelfFromArray(yyl3443, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42466,12 +42732,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3425Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3425Slc - var yyhl3425 bool = l >= 0 - for yyj3425 := 0; ; yyj3425++ { - if yyhl3425 { - if yyj3425 >= l { + var yys3444Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3444Slc + var yyhl3444 bool = l >= 0 + for yyj3444 := 0; ; yyj3444++ { + if yyhl3444 { + if yyj3444 >= l { break } } else { @@ -42480,10 +42746,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3425Slc = r.DecodeBytes(yys3425Slc, true, true) - yys3425 := string(yys3425Slc) + yys3444Slc = r.DecodeBytes(yys3444Slc, true, true) + yys3444 := string(yys3444Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3425 { + switch yys3444 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -42509,9 +42775,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3425) - } // end switch yys3425 - } // end for yyj3425 + z.DecStructFieldNotFound(-1, yys3444) + } // end switch yys3444 + } // end for yyj3444 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42519,16 +42785,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3430 int - var yyb3430 bool - var yyhl3430 bool = l >= 0 - yyj3430++ - if yyhl3430 { - yyb3430 = yyj3430 > l + var yyj3449 int + var yyb3449 bool + var yyhl3449 bool = l >= 0 + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3430 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3430 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42538,13 +42804,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3430++ - if yyhl3430 { - yyb3430 = yyj3430 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3430 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3430 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42554,13 +42820,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3430++ - if yyhl3430 { - yyb3430 = yyj3430 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3430 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3430 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42570,13 +42836,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3430++ - if yyhl3430 { - yyb3430 = yyj3430 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3430 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3430 { + if yyb3449 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42587,17 +42853,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3430++ - if yyhl3430 { - yyb3430 = yyj3430 > l + yyj3449++ + if yyhl3449 { + yyb3449 = yyj3449 > l } else { - yyb3430 = r.CheckBreak() + yyb3449 = r.CheckBreak() } - if yyb3430 { + if yyb3449 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3430-1, "") + z.DecStructFieldNotFound(yyj3449-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42609,38 +42875,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3435 := z.EncBinary() - _ = yym3435 + yym3454 := z.EncBinary() + _ = yym3454 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3436 := !z.EncBinary() - yy2arr3436 := z.EncBasicHandle().StructToArray - var yyq3436 [4]bool - _, _, _ = yysep3436, yyq3436, yy2arr3436 - const yyr3436 bool = false - yyq3436[0] = x.Kind != "" - yyq3436[1] = x.APIVersion != "" - yyq3436[2] = true - yyq3436[3] = len(x.Conditions) != 0 - var yynn3436 int - if yyr3436 || yy2arr3436 { + yysep3455 := !z.EncBinary() + yy2arr3455 := z.EncBasicHandle().StructToArray + var yyq3455 [4]bool + _, _, _ = yysep3455, yyq3455, yy2arr3455 + const yyr3455 bool = false + yyq3455[0] = x.Kind != "" + yyq3455[1] = x.APIVersion != "" + yyq3455[2] = true + yyq3455[3] = len(x.Conditions) != 0 + var yynn3455 int + if yyr3455 || yy2arr3455 { r.EncodeArrayStart(4) } else { - yynn3436 = 0 - for _, b := range yyq3436 { + yynn3455 = 0 + for _, b := range yyq3455 { if b { - yynn3436++ + yynn3455++ } } - r.EncodeMapStart(yynn3436) - yynn3436 = 0 + r.EncodeMapStart(yynn3455) + yynn3455 = 0 } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[0] { - yym3438 := z.EncBinary() - _ = yym3438 + if yyq3455[0] { + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42649,23 +42915,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3436[0] { + if yyq3455[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3439 := z.EncBinary() - _ = yym3439 + yym3458 := z.EncBinary() + _ = yym3458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[1] { - yym3441 := z.EncBinary() - _ = yym3441 + if yyq3455[1] { + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42674,43 +42940,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3436[1] { + if yyq3455[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3442 := z.EncBinary() - _ = yym3442 + yym3461 := z.EncBinary() + _ = yym3461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[2] { - yy3444 := &x.ObjectMeta - yy3444.CodecEncodeSelf(e) + if yyq3455[2] { + yy3463 := &x.ObjectMeta + yy3463.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3436[2] { + if yyq3455[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3445 := &x.ObjectMeta - yy3445.CodecEncodeSelf(e) + yy3464 := &x.ObjectMeta + yy3464.CodecEncodeSelf(e) } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[3] { + if yyq3455[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3447 := z.EncBinary() - _ = yym3447 + yym3466 := z.EncBinary() + _ = yym3466 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -42720,15 +42986,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3436[3] { + if yyq3455[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3448 := z.EncBinary() - _ = yym3448 + yym3467 := z.EncBinary() + _ = yym3467 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -42736,7 +43002,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42749,25 +43015,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3449 := z.DecBinary() - _ = yym3449 + yym3468 := z.DecBinary() + _ = yym3468 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3450 := r.ContainerType() - if yyct3450 == codecSelferValueTypeMap1234 { - yyl3450 := r.ReadMapStart() - if yyl3450 == 0 { + yyct3469 := r.ContainerType() + if yyct3469 == codecSelferValueTypeMap1234 { + yyl3469 := r.ReadMapStart() + if yyl3469 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3450, d) + x.codecDecodeSelfFromMap(yyl3469, d) } - } else if yyct3450 == codecSelferValueTypeArray1234 { - yyl3450 := r.ReadArrayStart() - if yyl3450 == 0 { + } else if yyct3469 == codecSelferValueTypeArray1234 { + yyl3469 := r.ReadArrayStart() + if yyl3469 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3450, d) + x.codecDecodeSelfFromArray(yyl3469, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42779,12 +43045,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3451Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3451Slc - var yyhl3451 bool = l >= 0 - for yyj3451 := 0; ; yyj3451++ { - if yyhl3451 { - if yyj3451 >= l { + var yys3470Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3470Slc + var yyhl3470 bool = l >= 0 + for yyj3470 := 0; ; yyj3470++ { + if yyhl3470 { + if yyj3470 >= l { break } } else { @@ -42793,10 +43059,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3451Slc = r.DecodeBytes(yys3451Slc, true, true) - yys3451 := string(yys3451Slc) + yys3470Slc = r.DecodeBytes(yys3470Slc, true, true) + yys3470 := string(yys3470Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3451 { + switch yys3470 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42813,25 +43079,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3454 := &x.ObjectMeta - yyv3454.CodecDecodeSelf(d) + yyv3473 := &x.ObjectMeta + yyv3473.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3455 := &x.Conditions - yym3456 := z.DecBinary() - _ = yym3456 + yyv3474 := &x.Conditions + yym3475 := z.DecBinary() + _ = yym3475 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3455), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3474), d) } } default: - z.DecStructFieldNotFound(-1, yys3451) - } // end switch yys3451 - } // end for yyj3451 + z.DecStructFieldNotFound(-1, yys3470) + } // end switch yys3470 + } // end for yyj3470 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42839,16 +43105,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3457 int - var yyb3457 bool - var yyhl3457 bool = l >= 0 - yyj3457++ - if yyhl3457 { - yyb3457 = yyj3457 > l + var yyj3476 int + var yyb3476 bool + var yyhl3476 bool = l >= 0 + yyj3476++ + if yyhl3476 { + yyb3476 = yyj3476 > l } else { - yyb3457 = r.CheckBreak() + yyb3476 = r.CheckBreak() } - if yyb3457 { + if yyb3476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42858,13 +43124,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3457++ - if yyhl3457 { - yyb3457 = yyj3457 > l + yyj3476++ + if yyhl3476 { + yyb3476 = yyj3476 > l } else { - yyb3457 = r.CheckBreak() + yyb3476 = r.CheckBreak() } - if yyb3457 { + if yyb3476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42874,13 +43140,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3457++ - if yyhl3457 { - yyb3457 = yyj3457 > l + yyj3476++ + if yyhl3476 { + yyb3476 = yyj3476 > l } else { - yyb3457 = r.CheckBreak() + yyb3476 = r.CheckBreak() } - if yyb3457 { + if yyb3476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42888,16 +43154,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3460 := &x.ObjectMeta - yyv3460.CodecDecodeSelf(d) + yyv3479 := &x.ObjectMeta + yyv3479.CodecDecodeSelf(d) } - yyj3457++ - if yyhl3457 { - yyb3457 = yyj3457 > l + yyj3476++ + if yyhl3476 { + yyb3476 = yyj3476 > l } else { - yyb3457 = r.CheckBreak() + yyb3476 = r.CheckBreak() } - if yyb3457 { + if yyb3476 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42905,26 +43171,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3461 := &x.Conditions - yym3462 := z.DecBinary() - _ = yym3462 + yyv3480 := &x.Conditions + yym3481 := z.DecBinary() + _ = yym3481 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3461), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3480), d) } } for { - yyj3457++ - if yyhl3457 { - yyb3457 = yyj3457 > l + yyj3476++ + if yyhl3476 { + yyb3476 = yyj3476 > l } else { - yyb3457 = r.CheckBreak() + yyb3476 = r.CheckBreak() } - if yyb3457 { + if yyb3476 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3457-1, "") + z.DecStructFieldNotFound(yyj3476-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42936,37 +43202,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3463 := z.EncBinary() - _ = yym3463 + yym3482 := z.EncBinary() + _ = yym3482 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3464 := !z.EncBinary() - yy2arr3464 := z.EncBasicHandle().StructToArray - var yyq3464 [4]bool - _, _, _ = yysep3464, yyq3464, yy2arr3464 - const yyr3464 bool = false - yyq3464[0] = x.Kind != "" - yyq3464[1] = x.APIVersion != "" - yyq3464[2] = true - var yynn3464 int - if yyr3464 || yy2arr3464 { + yysep3483 := !z.EncBinary() + yy2arr3483 := z.EncBasicHandle().StructToArray + var yyq3483 [4]bool + _, _, _ = yysep3483, yyq3483, yy2arr3483 + const yyr3483 bool = false + yyq3483[0] = x.Kind != "" + yyq3483[1] = x.APIVersion != "" + yyq3483[2] = true + var yynn3483 int + if yyr3483 || yy2arr3483 { r.EncodeArrayStart(4) } else { - yynn3464 = 1 - for _, b := range yyq3464 { + yynn3483 = 1 + for _, b := range yyq3483 { if b { - yynn3464++ + yynn3483++ } } - r.EncodeMapStart(yynn3464) - yynn3464 = 0 + r.EncodeMapStart(yynn3483) + yynn3483 = 0 } - if yyr3464 || yy2arr3464 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3464[0] { - yym3466 := z.EncBinary() - _ = yym3466 + if yyq3483[0] { + yym3485 := z.EncBinary() + _ = yym3485 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42975,23 +43241,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3464[0] { + if yyq3483[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3467 := z.EncBinary() - _ = yym3467 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3464 || yy2arr3464 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3464[1] { - yym3469 := z.EncBinary() - _ = yym3469 + if yyq3483[1] { + yym3488 := z.EncBinary() + _ = yym3488 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -43000,54 +43266,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3464[1] { + if yyq3483[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3470 := z.EncBinary() - _ = yym3470 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3464 || yy2arr3464 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3464[2] { - yy3472 := &x.ListMeta - yym3473 := z.EncBinary() - _ = yym3473 + if yyq3483[2] { + yy3491 := &x.ListMeta + yym3492 := z.EncBinary() + _ = yym3492 if false { - } else if z.HasExtensions() && z.EncExt(yy3472) { + } else if z.HasExtensions() && z.EncExt(yy3491) { } else { - z.EncFallback(yy3472) + z.EncFallback(yy3491) } } else { r.EncodeNil() } } else { - if yyq3464[2] { + if yyq3483[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3474 := &x.ListMeta - yym3475 := z.EncBinary() - _ = yym3475 + yy3493 := &x.ListMeta + yym3494 := z.EncBinary() + _ = yym3494 if false { - } else if z.HasExtensions() && z.EncExt(yy3474) { + } else if z.HasExtensions() && z.EncExt(yy3493) { } else { - z.EncFallback(yy3474) + z.EncFallback(yy3493) } } } - if yyr3464 || yy2arr3464 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3477 := z.EncBinary() - _ = yym3477 + yym3496 := z.EncBinary() + _ = yym3496 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -43060,15 +43326,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3478 := z.EncBinary() - _ = yym3478 + yym3497 := z.EncBinary() + _ = yym3497 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3464 || yy2arr3464 { + if yyr3483 || yy2arr3483 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43081,25 +43347,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3479 := z.DecBinary() - _ = yym3479 + yym3498 := z.DecBinary() + _ = yym3498 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3480 := r.ContainerType() - if yyct3480 == codecSelferValueTypeMap1234 { - yyl3480 := r.ReadMapStart() - if yyl3480 == 0 { + yyct3499 := r.ContainerType() + if yyct3499 == codecSelferValueTypeMap1234 { + yyl3499 := r.ReadMapStart() + if yyl3499 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3480, d) + x.codecDecodeSelfFromMap(yyl3499, d) } - } else if yyct3480 == codecSelferValueTypeArray1234 { - yyl3480 := r.ReadArrayStart() - if yyl3480 == 0 { + } else if yyct3499 == codecSelferValueTypeArray1234 { + yyl3499 := r.ReadArrayStart() + if yyl3499 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3480, d) + x.codecDecodeSelfFromArray(yyl3499, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43111,12 +43377,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3481Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3481Slc - var yyhl3481 bool = l >= 0 - for yyj3481 := 0; ; yyj3481++ { - if yyhl3481 { - if yyj3481 >= l { + var yys3500Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3500Slc + var yyhl3500 bool = l >= 0 + for yyj3500 := 0; ; yyj3500++ { + if yyhl3500 { + if yyj3500 >= l { break } } else { @@ -43125,10 +43391,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3481Slc = r.DecodeBytes(yys3481Slc, true, true) - yys3481 := string(yys3481Slc) + yys3500Slc = r.DecodeBytes(yys3500Slc, true, true) + yys3500 := string(yys3500Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3481 { + switch yys3500 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43145,31 +43411,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3484 := &x.ListMeta - yym3485 := z.DecBinary() - _ = yym3485 + yyv3503 := &x.ListMeta + yym3504 := z.DecBinary() + _ = yym3504 if false { - } else if z.HasExtensions() && z.DecExt(yyv3484) { + } else if z.HasExtensions() && z.DecExt(yyv3503) { } else { - z.DecFallback(yyv3484, false) + z.DecFallback(yyv3503, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3486 := &x.Items - yym3487 := z.DecBinary() - _ = yym3487 + yyv3505 := &x.Items + yym3506 := z.DecBinary() + _ = yym3506 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3486), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3505), d) } } default: - z.DecStructFieldNotFound(-1, yys3481) - } // end switch yys3481 - } // end for yyj3481 + z.DecStructFieldNotFound(-1, yys3500) + } // end switch yys3500 + } // end for yyj3500 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43177,16 +43443,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3488 int - var yyb3488 bool - var yyhl3488 bool = l >= 0 - yyj3488++ - if yyhl3488 { - yyb3488 = yyj3488 > l + var yyj3507 int + var yyb3507 bool + var yyhl3507 bool = l >= 0 + yyj3507++ + if yyhl3507 { + yyb3507 = yyj3507 > l } else { - yyb3488 = r.CheckBreak() + yyb3507 = r.CheckBreak() } - if yyb3488 { + if yyb3507 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43196,13 +43462,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3488++ - if yyhl3488 { - yyb3488 = yyj3488 > l + yyj3507++ + if yyhl3507 { + yyb3507 = yyj3507 > l } else { - yyb3488 = r.CheckBreak() + yyb3507 = r.CheckBreak() } - if yyb3488 { + if yyb3507 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43212,13 +43478,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3488++ - if yyhl3488 { - yyb3488 = yyj3488 > l + yyj3507++ + if yyhl3507 { + yyb3507 = yyj3507 > l } else { - yyb3488 = r.CheckBreak() + yyb3507 = r.CheckBreak() } - if yyb3488 { + if yyb3507 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43226,22 +43492,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3491 := &x.ListMeta - yym3492 := z.DecBinary() - _ = yym3492 + yyv3510 := &x.ListMeta + yym3511 := z.DecBinary() + _ = yym3511 if false { - } else if z.HasExtensions() && z.DecExt(yyv3491) { + } else if z.HasExtensions() && z.DecExt(yyv3510) { } else { - z.DecFallback(yyv3491, false) + z.DecFallback(yyv3510, false) } } - yyj3488++ - if yyhl3488 { - yyb3488 = yyj3488 > l + yyj3507++ + if yyhl3507 { + yyb3507 = yyj3507 > l } else { - yyb3488 = r.CheckBreak() + yyb3507 = r.CheckBreak() } - if yyb3488 { + if yyb3507 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43249,26 +43515,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3493 := &x.Items - yym3494 := z.DecBinary() - _ = yym3494 + yyv3512 := &x.Items + yym3513 := z.DecBinary() + _ = yym3513 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3493), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3512), d) } } for { - yyj3488++ - if yyhl3488 { - yyb3488 = yyj3488 > l + yyj3507++ + if yyhl3507 { + yyb3507 = yyj3507 > l } else { - yyb3488 = r.CheckBreak() + yyb3507 = r.CheckBreak() } - if yyb3488 { + if yyb3507 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3488-1, "") + z.DecStructFieldNotFound(yyj3507-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43280,37 +43546,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3495 := z.EncBinary() - _ = yym3495 + yym3514 := z.EncBinary() + _ = yym3514 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3496 := !z.EncBinary() - yy2arr3496 := z.EncBasicHandle().StructToArray - var yyq3496 [5]bool - _, _, _ = yysep3496, yyq3496, yy2arr3496 - const yyr3496 bool = false - yyq3496[0] = x.Capabilities != nil - yyq3496[1] = x.Privileged != nil - yyq3496[2] = x.SELinuxOptions != nil - yyq3496[3] = x.RunAsUser != nil - yyq3496[4] = x.RunAsNonRoot != nil - var yynn3496 int - if yyr3496 || yy2arr3496 { + yysep3515 := !z.EncBinary() + yy2arr3515 := z.EncBasicHandle().StructToArray + var yyq3515 [5]bool + _, _, _ = yysep3515, yyq3515, yy2arr3515 + const yyr3515 bool = false + yyq3515[0] = x.Capabilities != nil + yyq3515[1] = x.Privileged != nil + yyq3515[2] = x.SELinuxOptions != nil + yyq3515[3] = x.RunAsUser != nil + yyq3515[4] = x.RunAsNonRoot != nil + var yynn3515 int + if yyr3515 || yy2arr3515 { r.EncodeArrayStart(5) } else { - yynn3496 = 0 - for _, b := range yyq3496 { + yynn3515 = 0 + for _, b := range yyq3515 { if b { - yynn3496++ + yynn3515++ } } - r.EncodeMapStart(yynn3496) - yynn3496 = 0 + r.EncodeMapStart(yynn3515) + yynn3515 = 0 } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[0] { + if yyq3515[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -43320,7 +43586,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3496[0] { + if yyq3515[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43331,44 +43597,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[1] { + if yyq3515[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3499 := *x.Privileged - yym3500 := z.EncBinary() - _ = yym3500 + yy3518 := *x.Privileged + yym3519 := z.EncBinary() + _ = yym3519 if false { } else { - r.EncodeBool(bool(yy3499)) + r.EncodeBool(bool(yy3518)) } } } else { r.EncodeNil() } } else { - if yyq3496[1] { + if yyq3515[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3501 := *x.Privileged - yym3502 := z.EncBinary() - _ = yym3502 + yy3520 := *x.Privileged + yym3521 := z.EncBinary() + _ = yym3521 if false { } else { - r.EncodeBool(bool(yy3501)) + r.EncodeBool(bool(yy3520)) } } } } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[2] { + if yyq3515[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -43378,7 +43644,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3496[2] { + if yyq3515[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43389,77 +43655,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[3] { + if yyq3515[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3505 := *x.RunAsUser - yym3506 := z.EncBinary() - _ = yym3506 + yy3524 := *x.RunAsUser + yym3525 := z.EncBinary() + _ = yym3525 if false { } else { - r.EncodeInt(int64(yy3505)) + r.EncodeInt(int64(yy3524)) } } } else { r.EncodeNil() } } else { - if yyq3496[3] { + if yyq3515[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3507 := *x.RunAsUser - yym3508 := z.EncBinary() - _ = yym3508 + yy3526 := *x.RunAsUser + yym3527 := z.EncBinary() + _ = yym3527 if false { } else { - r.EncodeInt(int64(yy3507)) + r.EncodeInt(int64(yy3526)) } } } } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3496[4] { + if yyq3515[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3510 := *x.RunAsNonRoot - yym3511 := z.EncBinary() - _ = yym3511 + yy3529 := *x.RunAsNonRoot + yym3530 := z.EncBinary() + _ = yym3530 if false { } else { - r.EncodeBool(bool(yy3510)) + r.EncodeBool(bool(yy3529)) } } } else { r.EncodeNil() } } else { - if yyq3496[4] { + if yyq3515[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3512 := *x.RunAsNonRoot - yym3513 := z.EncBinary() - _ = yym3513 + yy3531 := *x.RunAsNonRoot + yym3532 := z.EncBinary() + _ = yym3532 if false { } else { - r.EncodeBool(bool(yy3512)) + r.EncodeBool(bool(yy3531)) } } } } - if yyr3496 || yy2arr3496 { + if yyr3515 || yy2arr3515 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43472,25 +43738,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3514 := z.DecBinary() - _ = yym3514 + yym3533 := z.DecBinary() + _ = yym3533 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3515 := r.ContainerType() - if yyct3515 == codecSelferValueTypeMap1234 { - yyl3515 := r.ReadMapStart() - if yyl3515 == 0 { + yyct3534 := r.ContainerType() + if yyct3534 == codecSelferValueTypeMap1234 { + yyl3534 := r.ReadMapStart() + if yyl3534 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3515, d) + x.codecDecodeSelfFromMap(yyl3534, d) } - } else if yyct3515 == codecSelferValueTypeArray1234 { - yyl3515 := r.ReadArrayStart() - if yyl3515 == 0 { + } else if yyct3534 == codecSelferValueTypeArray1234 { + yyl3534 := r.ReadArrayStart() + if yyl3534 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3515, d) + x.codecDecodeSelfFromArray(yyl3534, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43502,12 +43768,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3516Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3516Slc - var yyhl3516 bool = l >= 0 - for yyj3516 := 0; ; yyj3516++ { - if yyhl3516 { - if yyj3516 >= l { + var yys3535Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3535Slc + var yyhl3535 bool = l >= 0 + for yyj3535 := 0; ; yyj3535++ { + if yyhl3535 { + if yyj3535 >= l { break } } else { @@ -43516,10 +43782,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3516Slc = r.DecodeBytes(yys3516Slc, true, true) - yys3516 := string(yys3516Slc) + yys3535Slc = r.DecodeBytes(yys3535Slc, true, true) + yys3535 := string(yys3535Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3516 { + switch yys3535 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -43540,8 +43806,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3519 := z.DecBinary() - _ = yym3519 + yym3538 := z.DecBinary() + _ = yym3538 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -43567,8 +43833,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3522 := z.DecBinary() - _ = yym3522 + yym3541 := z.DecBinary() + _ = yym3541 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -43583,17 +43849,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3524 := z.DecBinary() - _ = yym3524 + yym3543 := z.DecBinary() + _ = yym3543 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3516) - } // end switch yys3516 - } // end for yyj3516 + z.DecStructFieldNotFound(-1, yys3535) + } // end switch yys3535 + } // end for yyj3535 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43601,16 +43867,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3525 int - var yyb3525 bool - var yyhl3525 bool = l >= 0 - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + var yyj3544 int + var yyb3544 bool + var yyhl3544 bool = l >= 0 + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43625,13 +43891,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43644,20 +43910,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3528 := z.DecBinary() - _ = yym3528 + yym3547 := z.DecBinary() + _ = yym3547 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43672,13 +43938,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43691,20 +43957,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3531 := z.DecBinary() - _ = yym3531 + yym3550 := z.DecBinary() + _ = yym3550 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43717,25 +43983,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3533 := z.DecBinary() - _ = yym3533 + yym3552 := z.DecBinary() + _ = yym3552 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3525++ - if yyhl3525 { - yyb3525 = yyj3525 > l + yyj3544++ + if yyhl3544 { + yyb3544 = yyj3544 > l } else { - yyb3525 = r.CheckBreak() + yyb3544 = r.CheckBreak() } - if yyb3525 { + if yyb3544 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3525-1, "") + z.DecStructFieldNotFound(yyj3544-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43747,38 +44013,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3534 := z.EncBinary() - _ = yym3534 + yym3553 := z.EncBinary() + _ = yym3553 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3535 := !z.EncBinary() - yy2arr3535 := z.EncBasicHandle().StructToArray - var yyq3535 [4]bool - _, _, _ = yysep3535, yyq3535, yy2arr3535 - const yyr3535 bool = false - yyq3535[0] = x.User != "" - yyq3535[1] = x.Role != "" - yyq3535[2] = x.Type != "" - yyq3535[3] = x.Level != "" - var yynn3535 int - if yyr3535 || yy2arr3535 { + yysep3554 := !z.EncBinary() + yy2arr3554 := z.EncBasicHandle().StructToArray + var yyq3554 [4]bool + _, _, _ = yysep3554, yyq3554, yy2arr3554 + const yyr3554 bool = false + yyq3554[0] = x.User != "" + yyq3554[1] = x.Role != "" + yyq3554[2] = x.Type != "" + yyq3554[3] = x.Level != "" + var yynn3554 int + if yyr3554 || yy2arr3554 { r.EncodeArrayStart(4) } else { - yynn3535 = 0 - for _, b := range yyq3535 { + yynn3554 = 0 + for _, b := range yyq3554 { if b { - yynn3535++ + yynn3554++ } } - r.EncodeMapStart(yynn3535) - yynn3535 = 0 + r.EncodeMapStart(yynn3554) + yynn3554 = 0 } - if yyr3535 || yy2arr3535 { + if yyr3554 || yy2arr3554 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3535[0] { - yym3537 := z.EncBinary() - _ = yym3537 + if yyq3554[0] { + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -43787,23 +44053,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3535[0] { + if yyq3554[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3538 := z.EncBinary() - _ = yym3538 + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3535 || yy2arr3535 { + if yyr3554 || yy2arr3554 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3535[1] { - yym3540 := z.EncBinary() - _ = yym3540 + if yyq3554[1] { + yym3559 := z.EncBinary() + _ = yym3559 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -43812,23 +44078,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3535[1] { + if yyq3554[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3541 := z.EncBinary() - _ = yym3541 + yym3560 := z.EncBinary() + _ = yym3560 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3535 || yy2arr3535 { + if yyr3554 || yy2arr3554 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3535[2] { - yym3543 := z.EncBinary() - _ = yym3543 + if yyq3554[2] { + yym3562 := z.EncBinary() + _ = yym3562 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -43837,23 +44103,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3535[2] { + if yyq3554[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3544 := z.EncBinary() - _ = yym3544 + yym3563 := z.EncBinary() + _ = yym3563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3535 || yy2arr3535 { + if yyr3554 || yy2arr3554 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3535[3] { - yym3546 := z.EncBinary() - _ = yym3546 + if yyq3554[3] { + yym3565 := z.EncBinary() + _ = yym3565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -43862,19 +44128,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3535[3] { + if yyq3554[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3547 := z.EncBinary() - _ = yym3547 + yym3566 := z.EncBinary() + _ = yym3566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3535 || yy2arr3535 { + if yyr3554 || yy2arr3554 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43887,25 +44153,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3548 := z.DecBinary() - _ = yym3548 + yym3567 := z.DecBinary() + _ = yym3567 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3549 := r.ContainerType() - if yyct3549 == codecSelferValueTypeMap1234 { - yyl3549 := r.ReadMapStart() - if yyl3549 == 0 { + yyct3568 := r.ContainerType() + if yyct3568 == codecSelferValueTypeMap1234 { + yyl3568 := r.ReadMapStart() + if yyl3568 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3549, d) + x.codecDecodeSelfFromMap(yyl3568, d) } - } else if yyct3549 == codecSelferValueTypeArray1234 { - yyl3549 := r.ReadArrayStart() - if yyl3549 == 0 { + } else if yyct3568 == codecSelferValueTypeArray1234 { + yyl3568 := r.ReadArrayStart() + if yyl3568 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3549, d) + x.codecDecodeSelfFromArray(yyl3568, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43917,12 +44183,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3550Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3550Slc - var yyhl3550 bool = l >= 0 - for yyj3550 := 0; ; yyj3550++ { - if yyhl3550 { - if yyj3550 >= l { + var yys3569Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3569Slc + var yyhl3569 bool = l >= 0 + for yyj3569 := 0; ; yyj3569++ { + if yyhl3569 { + if yyj3569 >= l { break } } else { @@ -43931,10 +44197,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3550Slc = r.DecodeBytes(yys3550Slc, true, true) - yys3550 := string(yys3550Slc) + yys3569Slc = r.DecodeBytes(yys3569Slc, true, true) + yys3569 := string(yys3569Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3550 { + switch yys3569 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -43960,9 +44226,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3550) - } // end switch yys3550 - } // end for yyj3550 + z.DecStructFieldNotFound(-1, yys3569) + } // end switch yys3569 + } // end for yyj3569 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43970,16 +44236,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3555 int - var yyb3555 bool - var yyhl3555 bool = l >= 0 - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + var yyj3574 int + var yyb3574 bool + var yyhl3574 bool = l >= 0 + yyj3574++ + if yyhl3574 { + yyb3574 = yyj3574 > l } else { - yyb3555 = r.CheckBreak() + yyb3574 = r.CheckBreak() } - if yyb3555 { + if yyb3574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43989,13 +44255,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3574++ + if yyhl3574 { + yyb3574 = yyj3574 > l } else { - yyb3555 = r.CheckBreak() + yyb3574 = r.CheckBreak() } - if yyb3555 { + if yyb3574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44005,13 +44271,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3574++ + if yyhl3574 { + yyb3574 = yyj3574 > l } else { - yyb3555 = r.CheckBreak() + yyb3574 = r.CheckBreak() } - if yyb3555 { + if yyb3574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44021,13 +44287,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3574++ + if yyhl3574 { + yyb3574 = yyj3574 > l } else { - yyb3555 = r.CheckBreak() + yyb3574 = r.CheckBreak() } - if yyb3555 { + if yyb3574 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44038,17 +44304,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3555++ - if yyhl3555 { - yyb3555 = yyj3555 > l + yyj3574++ + if yyhl3574 { + yyb3574 = yyj3574 > l } else { - yyb3555 = r.CheckBreak() + yyb3574 = r.CheckBreak() } - if yyb3555 { + if yyb3574 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3555-1, "") + z.DecStructFieldNotFound(yyj3574-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44060,37 +44326,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3560 := z.EncBinary() - _ = yym3560 + yym3579 := z.EncBinary() + _ = yym3579 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3561 := !z.EncBinary() - yy2arr3561 := z.EncBasicHandle().StructToArray - var yyq3561 [5]bool - _, _, _ = yysep3561, yyq3561, yy2arr3561 - const yyr3561 bool = false - yyq3561[0] = x.Kind != "" - yyq3561[1] = x.APIVersion != "" - yyq3561[2] = true - var yynn3561 int - if yyr3561 || yy2arr3561 { + yysep3580 := !z.EncBinary() + yy2arr3580 := z.EncBasicHandle().StructToArray + var yyq3580 [5]bool + _, _, _ = yysep3580, yyq3580, yy2arr3580 + const yyr3580 bool = false + yyq3580[0] = x.Kind != "" + yyq3580[1] = x.APIVersion != "" + yyq3580[2] = true + var yynn3580 int + if yyr3580 || yy2arr3580 { r.EncodeArrayStart(5) } else { - yynn3561 = 2 - for _, b := range yyq3561 { + yynn3580 = 2 + for _, b := range yyq3580 { if b { - yynn3561++ + yynn3580++ } } - r.EncodeMapStart(yynn3561) - yynn3561 = 0 + r.EncodeMapStart(yynn3580) + yynn3580 = 0 } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3561[0] { - yym3563 := z.EncBinary() - _ = yym3563 + if yyq3580[0] { + yym3582 := z.EncBinary() + _ = yym3582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44099,23 +44365,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3561[0] { + if yyq3580[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3564 := z.EncBinary() - _ = yym3564 + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3561[1] { - yym3566 := z.EncBinary() - _ = yym3566 + if yyq3580[1] { + yym3585 := z.EncBinary() + _ = yym3585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44124,39 +44390,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3561[1] { + if yyq3580[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3567 := z.EncBinary() - _ = yym3567 + yym3586 := z.EncBinary() + _ = yym3586 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3561[2] { - yy3569 := &x.ObjectMeta - yy3569.CodecEncodeSelf(e) + if yyq3580[2] { + yy3588 := &x.ObjectMeta + yy3588.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3561[2] { + if yyq3580[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3570 := &x.ObjectMeta - yy3570.CodecEncodeSelf(e) + yy3589 := &x.ObjectMeta + yy3589.CodecEncodeSelf(e) } } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3572 := z.EncBinary() - _ = yym3572 + yym3591 := z.EncBinary() + _ = yym3591 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -44165,20 +44431,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3573 := z.EncBinary() - _ = yym3573 + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3575 := z.EncBinary() - _ = yym3575 + yym3594 := z.EncBinary() + _ = yym3594 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -44191,15 +44457,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3576 := z.EncBinary() - _ = yym3576 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3561 || yy2arr3561 { + if yyr3580 || yy2arr3580 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44212,25 +44478,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3577 := z.DecBinary() - _ = yym3577 + yym3596 := z.DecBinary() + _ = yym3596 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3578 := r.ContainerType() - if yyct3578 == codecSelferValueTypeMap1234 { - yyl3578 := r.ReadMapStart() - if yyl3578 == 0 { + yyct3597 := r.ContainerType() + if yyct3597 == codecSelferValueTypeMap1234 { + yyl3597 := r.ReadMapStart() + if yyl3597 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3578, d) + x.codecDecodeSelfFromMap(yyl3597, d) } - } else if yyct3578 == codecSelferValueTypeArray1234 { - yyl3578 := r.ReadArrayStart() - if yyl3578 == 0 { + } else if yyct3597 == codecSelferValueTypeArray1234 { + yyl3597 := r.ReadArrayStart() + if yyl3597 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3578, d) + x.codecDecodeSelfFromArray(yyl3597, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44242,12 +44508,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3579Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3579Slc - var yyhl3579 bool = l >= 0 - for yyj3579 := 0; ; yyj3579++ { - if yyhl3579 { - if yyj3579 >= l { + var yys3598Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3598Slc + var yyhl3598 bool = l >= 0 + for yyj3598 := 0; ; yyj3598++ { + if yyhl3598 { + if yyj3598 >= l { break } } else { @@ -44256,10 +44522,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3579Slc = r.DecodeBytes(yys3579Slc, true, true) - yys3579 := string(yys3579Slc) + yys3598Slc = r.DecodeBytes(yys3598Slc, true, true) + yys3598 := string(yys3598Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3579 { + switch yys3598 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44276,8 +44542,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3582 := &x.ObjectMeta - yyv3582.CodecDecodeSelf(d) + yyv3601 := &x.ObjectMeta + yyv3601.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -44289,18 +44555,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3584 := &x.Data - yym3585 := z.DecBinary() - _ = yym3585 + yyv3603 := &x.Data + yym3604 := z.DecBinary() + _ = yym3604 if false { } else { - *yyv3584 = r.DecodeBytes(*(*[]byte)(yyv3584), false, false) + *yyv3603 = r.DecodeBytes(*(*[]byte)(yyv3603), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3579) - } // end switch yys3579 - } // end for yyj3579 + z.DecStructFieldNotFound(-1, yys3598) + } // end switch yys3598 + } // end for yyj3598 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44308,16 +44574,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3586 int - var yyb3586 bool - var yyhl3586 bool = l >= 0 - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + var yyj3605 int + var yyb3605 bool + var yyhl3605 bool = l >= 0 + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44327,13 +44593,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44343,13 +44609,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44357,16 +44623,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3589 := &x.ObjectMeta - yyv3589.CodecDecodeSelf(d) + yyv3608 := &x.ObjectMeta + yyv3608.CodecDecodeSelf(d) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44376,13 +44642,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44390,26 +44656,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3591 := &x.Data - yym3592 := z.DecBinary() - _ = yym3592 + yyv3610 := &x.Data + yym3611 := z.DecBinary() + _ = yym3611 if false { } else { - *yyv3591 = r.DecodeBytes(*(*[]byte)(yyv3591), false, false) + *yyv3610 = r.DecodeBytes(*(*[]byte)(yyv3610), false, false) } } for { - yyj3586++ - if yyhl3586 { - yyb3586 = yyj3586 > l + yyj3605++ + if yyhl3605 { + yyb3605 = yyj3605 > l } else { - yyb3586 = r.CheckBreak() + yyb3605 = r.CheckBreak() } - if yyb3586 { + if yyb3605 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3586-1, "") + z.DecStructFieldNotFound(yyj3605-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44419,9 +44685,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3593 := range v { + for _, yyv3612 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3593.CodecEncodeSelf(e) + yyv3612.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44431,75 +44697,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3594 := *v - yyh3594, yyl3594 := z.DecSliceHelperStart() - var yyc3594 bool - if yyl3594 == 0 { - if yyv3594 == nil { - yyv3594 = []PersistentVolumeAccessMode{} - yyc3594 = true - } else if len(yyv3594) != 0 { - yyv3594 = yyv3594[:0] - yyc3594 = true + yyv3613 := *v + yyh3613, yyl3613 := z.DecSliceHelperStart() + var yyc3613 bool + if yyl3613 == 0 { + if yyv3613 == nil { + yyv3613 = []PersistentVolumeAccessMode{} + yyc3613 = true + } else if len(yyv3613) != 0 { + yyv3613 = yyv3613[:0] + yyc3613 = true } - } else if yyl3594 > 0 { - var yyrr3594, yyrl3594 int - var yyrt3594 bool - if yyl3594 > cap(yyv3594) { + } else if yyl3613 > 0 { + var yyrr3613, yyrl3613 int + var yyrt3613 bool + if yyl3613 > cap(yyv3613) { - yyrl3594, yyrt3594 = z.DecInferLen(yyl3594, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3594 { - if yyrl3594 <= cap(yyv3594) { - yyv3594 = yyv3594[:yyrl3594] + yyrl3613, yyrt3613 = z.DecInferLen(yyl3613, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3613 { + if yyrl3613 <= cap(yyv3613) { + yyv3613 = yyv3613[:yyrl3613] } else { - yyv3594 = make([]PersistentVolumeAccessMode, yyrl3594) + yyv3613 = make([]PersistentVolumeAccessMode, yyrl3613) } } else { - yyv3594 = make([]PersistentVolumeAccessMode, yyrl3594) + yyv3613 = make([]PersistentVolumeAccessMode, yyrl3613) } - yyc3594 = true - yyrr3594 = len(yyv3594) - } else if yyl3594 != len(yyv3594) { - yyv3594 = yyv3594[:yyl3594] - yyc3594 = true + yyc3613 = true + yyrr3613 = len(yyv3613) + } else if yyl3613 != len(yyv3613) { + yyv3613 = yyv3613[:yyl3613] + yyc3613 = true } - yyj3594 := 0 - for ; yyj3594 < yyrr3594; yyj3594++ { - yyh3594.ElemContainerState(yyj3594) + yyj3613 := 0 + for ; yyj3613 < yyrr3613; yyj3613++ { + yyh3613.ElemContainerState(yyj3613) if r.TryDecodeAsNil() { - yyv3594[yyj3594] = "" + yyv3613[yyj3613] = "" } else { - yyv3594[yyj3594] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3613[yyj3613] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt3594 { - for ; yyj3594 < yyl3594; yyj3594++ { - yyv3594 = append(yyv3594, "") - yyh3594.ElemContainerState(yyj3594) + if yyrt3613 { + for ; yyj3613 < yyl3613; yyj3613++ { + yyv3613 = append(yyv3613, "") + yyh3613.ElemContainerState(yyj3613) if r.TryDecodeAsNil() { - yyv3594[yyj3594] = "" + yyv3613[yyj3613] = "" } else { - yyv3594[yyj3594] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3613[yyj3613] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj3594 := 0 - for ; !r.CheckBreak(); yyj3594++ { + yyj3613 := 0 + for ; !r.CheckBreak(); yyj3613++ { - if yyj3594 >= len(yyv3594) { - yyv3594 = append(yyv3594, "") // var yyz3594 PersistentVolumeAccessMode - yyc3594 = true + if yyj3613 >= len(yyv3613) { + yyv3613 = append(yyv3613, "") // var yyz3613 PersistentVolumeAccessMode + yyc3613 = true } - yyh3594.ElemContainerState(yyj3594) - if yyj3594 < len(yyv3594) { + yyh3613.ElemContainerState(yyj3613) + if yyj3613 < len(yyv3613) { if r.TryDecodeAsNil() { - yyv3594[yyj3594] = "" + yyv3613[yyj3613] = "" } else { - yyv3594[yyj3594] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3613[yyj3613] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -44507,17 +44773,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj3594 < len(yyv3594) { - yyv3594 = yyv3594[:yyj3594] - yyc3594 = true - } else if yyj3594 == 0 && yyv3594 == nil { - yyv3594 = []PersistentVolumeAccessMode{} - yyc3594 = true + if yyj3613 < len(yyv3613) { + yyv3613 = yyv3613[:yyj3613] + yyc3613 = true + } else if yyj3613 == 0 && yyv3613 == nil { + yyv3613 = []PersistentVolumeAccessMode{} + yyc3613 = true } } - yyh3594.End() - if yyc3594 { - *v = yyv3594 + yyh3613.End() + if yyc3613 { + *v = yyv3613 } } @@ -44526,10 +44792,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3598 := range v { + for _, yyv3617 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3599 := &yyv3598 - yy3599.CodecEncodeSelf(e) + yy3618 := &yyv3617 + yy3618.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44539,83 +44805,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3600 := *v - yyh3600, yyl3600 := z.DecSliceHelperStart() - var yyc3600 bool - if yyl3600 == 0 { - if yyv3600 == nil { - yyv3600 = []PersistentVolume{} - yyc3600 = true - } else if len(yyv3600) != 0 { - yyv3600 = yyv3600[:0] - yyc3600 = true + yyv3619 := *v + yyh3619, yyl3619 := z.DecSliceHelperStart() + var yyc3619 bool + if yyl3619 == 0 { + if yyv3619 == nil { + yyv3619 = []PersistentVolume{} + yyc3619 = true + } else if len(yyv3619) != 0 { + yyv3619 = yyv3619[:0] + yyc3619 = true } - } else if yyl3600 > 0 { - var yyrr3600, yyrl3600 int - var yyrt3600 bool - if yyl3600 > cap(yyv3600) { + } else if yyl3619 > 0 { + var yyrr3619, yyrl3619 int + var yyrt3619 bool + if yyl3619 > cap(yyv3619) { - yyrg3600 := len(yyv3600) > 0 - yyv23600 := yyv3600 - yyrl3600, yyrt3600 = z.DecInferLen(yyl3600, z.DecBasicHandle().MaxInitLen, 392) - if yyrt3600 { - if yyrl3600 <= cap(yyv3600) { - yyv3600 = yyv3600[:yyrl3600] + yyrg3619 := len(yyv3619) > 0 + yyv23619 := yyv3619 + yyrl3619, yyrt3619 = z.DecInferLen(yyl3619, z.DecBasicHandle().MaxInitLen, 392) + if yyrt3619 { + if yyrl3619 <= cap(yyv3619) { + yyv3619 = yyv3619[:yyrl3619] } else { - yyv3600 = make([]PersistentVolume, yyrl3600) + yyv3619 = make([]PersistentVolume, yyrl3619) } } else { - yyv3600 = make([]PersistentVolume, yyrl3600) + yyv3619 = make([]PersistentVolume, yyrl3619) } - yyc3600 = true - yyrr3600 = len(yyv3600) - if yyrg3600 { - copy(yyv3600, yyv23600) + yyc3619 = true + yyrr3619 = len(yyv3619) + if yyrg3619 { + copy(yyv3619, yyv23619) } - } else if yyl3600 != len(yyv3600) { - yyv3600 = yyv3600[:yyl3600] - yyc3600 = true + } else if yyl3619 != len(yyv3619) { + yyv3619 = yyv3619[:yyl3619] + yyc3619 = true } - yyj3600 := 0 - for ; yyj3600 < yyrr3600; yyj3600++ { - yyh3600.ElemContainerState(yyj3600) + yyj3619 := 0 + for ; yyj3619 < yyrr3619; yyj3619++ { + yyh3619.ElemContainerState(yyj3619) if r.TryDecodeAsNil() { - yyv3600[yyj3600] = PersistentVolume{} + yyv3619[yyj3619] = PersistentVolume{} } else { - yyv3601 := &yyv3600[yyj3600] - yyv3601.CodecDecodeSelf(d) + yyv3620 := &yyv3619[yyj3619] + yyv3620.CodecDecodeSelf(d) } } - if yyrt3600 { - for ; yyj3600 < yyl3600; yyj3600++ { - yyv3600 = append(yyv3600, PersistentVolume{}) - yyh3600.ElemContainerState(yyj3600) + if yyrt3619 { + for ; yyj3619 < yyl3619; yyj3619++ { + yyv3619 = append(yyv3619, PersistentVolume{}) + yyh3619.ElemContainerState(yyj3619) if r.TryDecodeAsNil() { - yyv3600[yyj3600] = PersistentVolume{} + yyv3619[yyj3619] = PersistentVolume{} } else { - yyv3602 := &yyv3600[yyj3600] - yyv3602.CodecDecodeSelf(d) + yyv3621 := &yyv3619[yyj3619] + yyv3621.CodecDecodeSelf(d) } } } } else { - yyj3600 := 0 - for ; !r.CheckBreak(); yyj3600++ { + yyj3619 := 0 + for ; !r.CheckBreak(); yyj3619++ { - if yyj3600 >= len(yyv3600) { - yyv3600 = append(yyv3600, PersistentVolume{}) // var yyz3600 PersistentVolume - yyc3600 = true + if yyj3619 >= len(yyv3619) { + yyv3619 = append(yyv3619, PersistentVolume{}) // var yyz3619 PersistentVolume + yyc3619 = true } - yyh3600.ElemContainerState(yyj3600) - if yyj3600 < len(yyv3600) { + yyh3619.ElemContainerState(yyj3619) + if yyj3619 < len(yyv3619) { if r.TryDecodeAsNil() { - yyv3600[yyj3600] = PersistentVolume{} + yyv3619[yyj3619] = PersistentVolume{} } else { - yyv3603 := &yyv3600[yyj3600] - yyv3603.CodecDecodeSelf(d) + yyv3622 := &yyv3619[yyj3619] + yyv3622.CodecDecodeSelf(d) } } else { @@ -44623,17 +44889,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj3600 < len(yyv3600) { - yyv3600 = yyv3600[:yyj3600] - yyc3600 = true - } else if yyj3600 == 0 && yyv3600 == nil { - yyv3600 = []PersistentVolume{} - yyc3600 = true + if yyj3619 < len(yyv3619) { + yyv3619 = yyv3619[:yyj3619] + yyc3619 = true + } else if yyj3619 == 0 && yyv3619 == nil { + yyv3619 = []PersistentVolume{} + yyc3619 = true } } - yyh3600.End() - if yyc3600 { - *v = yyv3600 + yyh3619.End() + if yyc3619 { + *v = yyv3619 } } @@ -44642,10 +44908,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3604 := range v { + for _, yyv3623 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3605 := &yyv3604 - yy3605.CodecEncodeSelf(e) + yy3624 := &yyv3623 + yy3624.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44655,83 +44921,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3606 := *v - yyh3606, yyl3606 := z.DecSliceHelperStart() - var yyc3606 bool - if yyl3606 == 0 { - if yyv3606 == nil { - yyv3606 = []PersistentVolumeClaim{} - yyc3606 = true - } else if len(yyv3606) != 0 { - yyv3606 = yyv3606[:0] - yyc3606 = true + yyv3625 := *v + yyh3625, yyl3625 := z.DecSliceHelperStart() + var yyc3625 bool + if yyl3625 == 0 { + if yyv3625 == nil { + yyv3625 = []PersistentVolumeClaim{} + yyc3625 = true + } else if len(yyv3625) != 0 { + yyv3625 = yyv3625[:0] + yyc3625 = true } - } else if yyl3606 > 0 { - var yyrr3606, yyrl3606 int - var yyrt3606 bool - if yyl3606 > cap(yyv3606) { + } else if yyl3625 > 0 { + var yyrr3625, yyrl3625 int + var yyrt3625 bool + if yyl3625 > cap(yyv3625) { - yyrg3606 := len(yyv3606) > 0 - yyv23606 := yyv3606 - yyrl3606, yyrt3606 = z.DecInferLen(yyl3606, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3606 { - if yyrl3606 <= cap(yyv3606) { - yyv3606 = yyv3606[:yyrl3606] + yyrg3625 := len(yyv3625) > 0 + yyv23625 := yyv3625 + yyrl3625, yyrt3625 = z.DecInferLen(yyl3625, z.DecBasicHandle().MaxInitLen, 296) + if yyrt3625 { + if yyrl3625 <= cap(yyv3625) { + yyv3625 = yyv3625[:yyrl3625] } else { - yyv3606 = make([]PersistentVolumeClaim, yyrl3606) + yyv3625 = make([]PersistentVolumeClaim, yyrl3625) } } else { - yyv3606 = make([]PersistentVolumeClaim, yyrl3606) + yyv3625 = make([]PersistentVolumeClaim, yyrl3625) } - yyc3606 = true - yyrr3606 = len(yyv3606) - if yyrg3606 { - copy(yyv3606, yyv23606) + yyc3625 = true + yyrr3625 = len(yyv3625) + if yyrg3625 { + copy(yyv3625, yyv23625) } - } else if yyl3606 != len(yyv3606) { - yyv3606 = yyv3606[:yyl3606] - yyc3606 = true + } else if yyl3625 != len(yyv3625) { + yyv3625 = yyv3625[:yyl3625] + yyc3625 = true } - yyj3606 := 0 - for ; yyj3606 < yyrr3606; yyj3606++ { - yyh3606.ElemContainerState(yyj3606) + yyj3625 := 0 + for ; yyj3625 < yyrr3625; yyj3625++ { + yyh3625.ElemContainerState(yyj3625) if r.TryDecodeAsNil() { - yyv3606[yyj3606] = PersistentVolumeClaim{} + yyv3625[yyj3625] = PersistentVolumeClaim{} } else { - yyv3607 := &yyv3606[yyj3606] - yyv3607.CodecDecodeSelf(d) + yyv3626 := &yyv3625[yyj3625] + yyv3626.CodecDecodeSelf(d) } } - if yyrt3606 { - for ; yyj3606 < yyl3606; yyj3606++ { - yyv3606 = append(yyv3606, PersistentVolumeClaim{}) - yyh3606.ElemContainerState(yyj3606) + if yyrt3625 { + for ; yyj3625 < yyl3625; yyj3625++ { + yyv3625 = append(yyv3625, PersistentVolumeClaim{}) + yyh3625.ElemContainerState(yyj3625) if r.TryDecodeAsNil() { - yyv3606[yyj3606] = PersistentVolumeClaim{} + yyv3625[yyj3625] = PersistentVolumeClaim{} } else { - yyv3608 := &yyv3606[yyj3606] - yyv3608.CodecDecodeSelf(d) + yyv3627 := &yyv3625[yyj3625] + yyv3627.CodecDecodeSelf(d) } } } } else { - yyj3606 := 0 - for ; !r.CheckBreak(); yyj3606++ { + yyj3625 := 0 + for ; !r.CheckBreak(); yyj3625++ { - if yyj3606 >= len(yyv3606) { - yyv3606 = append(yyv3606, PersistentVolumeClaim{}) // var yyz3606 PersistentVolumeClaim - yyc3606 = true + if yyj3625 >= len(yyv3625) { + yyv3625 = append(yyv3625, PersistentVolumeClaim{}) // var yyz3625 PersistentVolumeClaim + yyc3625 = true } - yyh3606.ElemContainerState(yyj3606) - if yyj3606 < len(yyv3606) { + yyh3625.ElemContainerState(yyj3625) + if yyj3625 < len(yyv3625) { if r.TryDecodeAsNil() { - yyv3606[yyj3606] = PersistentVolumeClaim{} + yyv3625[yyj3625] = PersistentVolumeClaim{} } else { - yyv3609 := &yyv3606[yyj3606] - yyv3609.CodecDecodeSelf(d) + yyv3628 := &yyv3625[yyj3625] + yyv3628.CodecDecodeSelf(d) } } else { @@ -44739,17 +45005,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj3606 < len(yyv3606) { - yyv3606 = yyv3606[:yyj3606] - yyc3606 = true - } else if yyj3606 == 0 && yyv3606 == nil { - yyv3606 = []PersistentVolumeClaim{} - yyc3606 = true + if yyj3625 < len(yyv3625) { + yyv3625 = yyv3625[:yyj3625] + yyc3625 = true + } else if yyj3625 == 0 && yyv3625 == nil { + yyv3625 = []PersistentVolumeClaim{} + yyc3625 = true } } - yyh3606.End() - if yyc3606 { - *v = yyv3606 + yyh3625.End() + if yyc3625 { + *v = yyv3625 } } @@ -44758,10 +45024,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3610 := range v { + for _, yyv3629 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3611 := &yyv3610 - yy3611.CodecEncodeSelf(e) + yy3630 := &yyv3629 + yy3630.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44771,83 +45037,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3612 := *v - yyh3612, yyl3612 := z.DecSliceHelperStart() - var yyc3612 bool - if yyl3612 == 0 { - if yyv3612 == nil { - yyv3612 = []DownwardAPIVolumeFile{} - yyc3612 = true - } else if len(yyv3612) != 0 { - yyv3612 = yyv3612[:0] - yyc3612 = true + yyv3631 := *v + yyh3631, yyl3631 := z.DecSliceHelperStart() + var yyc3631 bool + if yyl3631 == 0 { + if yyv3631 == nil { + yyv3631 = []DownwardAPIVolumeFile{} + yyc3631 = true + } else if len(yyv3631) != 0 { + yyv3631 = yyv3631[:0] + yyc3631 = true } - } else if yyl3612 > 0 { - var yyrr3612, yyrl3612 int - var yyrt3612 bool - if yyl3612 > cap(yyv3612) { + } else if yyl3631 > 0 { + var yyrr3631, yyrl3631 int + var yyrt3631 bool + if yyl3631 > cap(yyv3631) { - yyrg3612 := len(yyv3612) > 0 - yyv23612 := yyv3612 - yyrl3612, yyrt3612 = z.DecInferLen(yyl3612, z.DecBasicHandle().MaxInitLen, 48) - if yyrt3612 { - if yyrl3612 <= cap(yyv3612) { - yyv3612 = yyv3612[:yyrl3612] + yyrg3631 := len(yyv3631) > 0 + yyv23631 := yyv3631 + yyrl3631, yyrt3631 = z.DecInferLen(yyl3631, z.DecBasicHandle().MaxInitLen, 48) + if yyrt3631 { + if yyrl3631 <= cap(yyv3631) { + yyv3631 = yyv3631[:yyrl3631] } else { - yyv3612 = make([]DownwardAPIVolumeFile, yyrl3612) + yyv3631 = make([]DownwardAPIVolumeFile, yyrl3631) } } else { - yyv3612 = make([]DownwardAPIVolumeFile, yyrl3612) + yyv3631 = make([]DownwardAPIVolumeFile, yyrl3631) } - yyc3612 = true - yyrr3612 = len(yyv3612) - if yyrg3612 { - copy(yyv3612, yyv23612) + yyc3631 = true + yyrr3631 = len(yyv3631) + if yyrg3631 { + copy(yyv3631, yyv23631) } - } else if yyl3612 != len(yyv3612) { - yyv3612 = yyv3612[:yyl3612] - yyc3612 = true + } else if yyl3631 != len(yyv3631) { + yyv3631 = yyv3631[:yyl3631] + yyc3631 = true } - yyj3612 := 0 - for ; yyj3612 < yyrr3612; yyj3612++ { - yyh3612.ElemContainerState(yyj3612) + yyj3631 := 0 + for ; yyj3631 < yyrr3631; yyj3631++ { + yyh3631.ElemContainerState(yyj3631) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = DownwardAPIVolumeFile{} + yyv3631[yyj3631] = DownwardAPIVolumeFile{} } else { - yyv3613 := &yyv3612[yyj3612] - yyv3613.CodecDecodeSelf(d) + yyv3632 := &yyv3631[yyj3631] + yyv3632.CodecDecodeSelf(d) } } - if yyrt3612 { - for ; yyj3612 < yyl3612; yyj3612++ { - yyv3612 = append(yyv3612, DownwardAPIVolumeFile{}) - yyh3612.ElemContainerState(yyj3612) + if yyrt3631 { + for ; yyj3631 < yyl3631; yyj3631++ { + yyv3631 = append(yyv3631, DownwardAPIVolumeFile{}) + yyh3631.ElemContainerState(yyj3631) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = DownwardAPIVolumeFile{} + yyv3631[yyj3631] = DownwardAPIVolumeFile{} } else { - yyv3614 := &yyv3612[yyj3612] - yyv3614.CodecDecodeSelf(d) + yyv3633 := &yyv3631[yyj3631] + yyv3633.CodecDecodeSelf(d) } } } } else { - yyj3612 := 0 - for ; !r.CheckBreak(); yyj3612++ { + yyj3631 := 0 + for ; !r.CheckBreak(); yyj3631++ { - if yyj3612 >= len(yyv3612) { - yyv3612 = append(yyv3612, DownwardAPIVolumeFile{}) // var yyz3612 DownwardAPIVolumeFile - yyc3612 = true + if yyj3631 >= len(yyv3631) { + yyv3631 = append(yyv3631, DownwardAPIVolumeFile{}) // var yyz3631 DownwardAPIVolumeFile + yyc3631 = true } - yyh3612.ElemContainerState(yyj3612) - if yyj3612 < len(yyv3612) { + yyh3631.ElemContainerState(yyj3631) + if yyj3631 < len(yyv3631) { if r.TryDecodeAsNil() { - yyv3612[yyj3612] = DownwardAPIVolumeFile{} + yyv3631[yyj3631] = DownwardAPIVolumeFile{} } else { - yyv3615 := &yyv3612[yyj3612] - yyv3615.CodecDecodeSelf(d) + yyv3634 := &yyv3631[yyj3631] + yyv3634.CodecDecodeSelf(d) } } else { @@ -44855,17 +45121,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj3612 < len(yyv3612) { - yyv3612 = yyv3612[:yyj3612] - yyc3612 = true - } else if yyj3612 == 0 && yyv3612 == nil { - yyv3612 = []DownwardAPIVolumeFile{} - yyc3612 = true + if yyj3631 < len(yyv3631) { + yyv3631 = yyv3631[:yyj3631] + yyc3631 = true + } else if yyj3631 == 0 && yyv3631 == nil { + yyv3631 = []DownwardAPIVolumeFile{} + yyc3631 = true } } - yyh3612.End() - if yyc3612 { - *v = yyv3612 + yyh3631.End() + if yyc3631 { + *v = yyv3631 } } @@ -44874,9 +45140,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3616 := range v { + for _, yyv3635 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3616.CodecEncodeSelf(e) + yyv3635.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44886,75 +45152,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3617 := *v - yyh3617, yyl3617 := z.DecSliceHelperStart() - var yyc3617 bool - if yyl3617 == 0 { - if yyv3617 == nil { - yyv3617 = []Capability{} - yyc3617 = true - } else if len(yyv3617) != 0 { - yyv3617 = yyv3617[:0] - yyc3617 = true + yyv3636 := *v + yyh3636, yyl3636 := z.DecSliceHelperStart() + var yyc3636 bool + if yyl3636 == 0 { + if yyv3636 == nil { + yyv3636 = []Capability{} + yyc3636 = true + } else if len(yyv3636) != 0 { + yyv3636 = yyv3636[:0] + yyc3636 = true } - } else if yyl3617 > 0 { - var yyrr3617, yyrl3617 int - var yyrt3617 bool - if yyl3617 > cap(yyv3617) { + } else if yyl3636 > 0 { + var yyrr3636, yyrl3636 int + var yyrt3636 bool + if yyl3636 > cap(yyv3636) { - yyrl3617, yyrt3617 = z.DecInferLen(yyl3617, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3617 { - if yyrl3617 <= cap(yyv3617) { - yyv3617 = yyv3617[:yyrl3617] + yyrl3636, yyrt3636 = z.DecInferLen(yyl3636, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3636 { + if yyrl3636 <= cap(yyv3636) { + yyv3636 = yyv3636[:yyrl3636] } else { - yyv3617 = make([]Capability, yyrl3617) + yyv3636 = make([]Capability, yyrl3636) } } else { - yyv3617 = make([]Capability, yyrl3617) + yyv3636 = make([]Capability, yyrl3636) } - yyc3617 = true - yyrr3617 = len(yyv3617) - } else if yyl3617 != len(yyv3617) { - yyv3617 = yyv3617[:yyl3617] - yyc3617 = true + yyc3636 = true + yyrr3636 = len(yyv3636) + } else if yyl3636 != len(yyv3636) { + yyv3636 = yyv3636[:yyl3636] + yyc3636 = true } - yyj3617 := 0 - for ; yyj3617 < yyrr3617; yyj3617++ { - yyh3617.ElemContainerState(yyj3617) + yyj3636 := 0 + for ; yyj3636 < yyrr3636; yyj3636++ { + yyh3636.ElemContainerState(yyj3636) if r.TryDecodeAsNil() { - yyv3617[yyj3617] = "" + yyv3636[yyj3636] = "" } else { - yyv3617[yyj3617] = Capability(r.DecodeString()) + yyv3636[yyj3636] = Capability(r.DecodeString()) } } - if yyrt3617 { - for ; yyj3617 < yyl3617; yyj3617++ { - yyv3617 = append(yyv3617, "") - yyh3617.ElemContainerState(yyj3617) + if yyrt3636 { + for ; yyj3636 < yyl3636; yyj3636++ { + yyv3636 = append(yyv3636, "") + yyh3636.ElemContainerState(yyj3636) if r.TryDecodeAsNil() { - yyv3617[yyj3617] = "" + yyv3636[yyj3636] = "" } else { - yyv3617[yyj3617] = Capability(r.DecodeString()) + yyv3636[yyj3636] = Capability(r.DecodeString()) } } } } else { - yyj3617 := 0 - for ; !r.CheckBreak(); yyj3617++ { + yyj3636 := 0 + for ; !r.CheckBreak(); yyj3636++ { - if yyj3617 >= len(yyv3617) { - yyv3617 = append(yyv3617, "") // var yyz3617 Capability - yyc3617 = true + if yyj3636 >= len(yyv3636) { + yyv3636 = append(yyv3636, "") // var yyz3636 Capability + yyc3636 = true } - yyh3617.ElemContainerState(yyj3617) - if yyj3617 < len(yyv3617) { + yyh3636.ElemContainerState(yyj3636) + if yyj3636 < len(yyv3636) { if r.TryDecodeAsNil() { - yyv3617[yyj3617] = "" + yyv3636[yyj3636] = "" } else { - yyv3617[yyj3617] = Capability(r.DecodeString()) + yyv3636[yyj3636] = Capability(r.DecodeString()) } } else { @@ -44962,17 +45228,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj3617 < len(yyv3617) { - yyv3617 = yyv3617[:yyj3617] - yyc3617 = true - } else if yyj3617 == 0 && yyv3617 == nil { - yyv3617 = []Capability{} - yyc3617 = true + if yyj3636 < len(yyv3636) { + yyv3636 = yyv3636[:yyj3636] + yyc3636 = true + } else if yyj3636 == 0 && yyv3636 == nil { + yyv3636 = []Capability{} + yyc3636 = true } } - yyh3617.End() - if yyc3617 { - *v = yyv3617 + yyh3636.End() + if yyc3636 { + *v = yyv3636 } } @@ -44981,10 +45247,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3621 := range v { + for _, yyv3640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3622 := &yyv3621 - yy3622.CodecEncodeSelf(e) + yy3641 := &yyv3640 + yy3641.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44994,83 +45260,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3623 := *v - yyh3623, yyl3623 := z.DecSliceHelperStart() - var yyc3623 bool - if yyl3623 == 0 { - if yyv3623 == nil { - yyv3623 = []ContainerPort{} - yyc3623 = true - } else if len(yyv3623) != 0 { - yyv3623 = yyv3623[:0] - yyc3623 = true + yyv3642 := *v + yyh3642, yyl3642 := z.DecSliceHelperStart() + var yyc3642 bool + if yyl3642 == 0 { + if yyv3642 == nil { + yyv3642 = []ContainerPort{} + yyc3642 = true + } else if len(yyv3642) != 0 { + yyv3642 = yyv3642[:0] + yyc3642 = true } - } else if yyl3623 > 0 { - var yyrr3623, yyrl3623 int - var yyrt3623 bool - if yyl3623 > cap(yyv3623) { + } else if yyl3642 > 0 { + var yyrr3642, yyrl3642 int + var yyrt3642 bool + if yyl3642 > cap(yyv3642) { - yyrg3623 := len(yyv3623) > 0 - yyv23623 := yyv3623 - yyrl3623, yyrt3623 = z.DecInferLen(yyl3623, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3623 { - if yyrl3623 <= cap(yyv3623) { - yyv3623 = yyv3623[:yyrl3623] + yyrg3642 := len(yyv3642) > 0 + yyv23642 := yyv3642 + yyrl3642, yyrt3642 = z.DecInferLen(yyl3642, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3642 { + if yyrl3642 <= cap(yyv3642) { + yyv3642 = yyv3642[:yyrl3642] } else { - yyv3623 = make([]ContainerPort, yyrl3623) + yyv3642 = make([]ContainerPort, yyrl3642) } } else { - yyv3623 = make([]ContainerPort, yyrl3623) + yyv3642 = make([]ContainerPort, yyrl3642) } - yyc3623 = true - yyrr3623 = len(yyv3623) - if yyrg3623 { - copy(yyv3623, yyv23623) + yyc3642 = true + yyrr3642 = len(yyv3642) + if yyrg3642 { + copy(yyv3642, yyv23642) } - } else if yyl3623 != len(yyv3623) { - yyv3623 = yyv3623[:yyl3623] - yyc3623 = true + } else if yyl3642 != len(yyv3642) { + yyv3642 = yyv3642[:yyl3642] + yyc3642 = true } - yyj3623 := 0 - for ; yyj3623 < yyrr3623; yyj3623++ { - yyh3623.ElemContainerState(yyj3623) + yyj3642 := 0 + for ; yyj3642 < yyrr3642; yyj3642++ { + yyh3642.ElemContainerState(yyj3642) if r.TryDecodeAsNil() { - yyv3623[yyj3623] = ContainerPort{} + yyv3642[yyj3642] = ContainerPort{} } else { - yyv3624 := &yyv3623[yyj3623] - yyv3624.CodecDecodeSelf(d) + yyv3643 := &yyv3642[yyj3642] + yyv3643.CodecDecodeSelf(d) } } - if yyrt3623 { - for ; yyj3623 < yyl3623; yyj3623++ { - yyv3623 = append(yyv3623, ContainerPort{}) - yyh3623.ElemContainerState(yyj3623) + if yyrt3642 { + for ; yyj3642 < yyl3642; yyj3642++ { + yyv3642 = append(yyv3642, ContainerPort{}) + yyh3642.ElemContainerState(yyj3642) if r.TryDecodeAsNil() { - yyv3623[yyj3623] = ContainerPort{} + yyv3642[yyj3642] = ContainerPort{} } else { - yyv3625 := &yyv3623[yyj3623] - yyv3625.CodecDecodeSelf(d) + yyv3644 := &yyv3642[yyj3642] + yyv3644.CodecDecodeSelf(d) } } } } else { - yyj3623 := 0 - for ; !r.CheckBreak(); yyj3623++ { + yyj3642 := 0 + for ; !r.CheckBreak(); yyj3642++ { - if yyj3623 >= len(yyv3623) { - yyv3623 = append(yyv3623, ContainerPort{}) // var yyz3623 ContainerPort - yyc3623 = true + if yyj3642 >= len(yyv3642) { + yyv3642 = append(yyv3642, ContainerPort{}) // var yyz3642 ContainerPort + yyc3642 = true } - yyh3623.ElemContainerState(yyj3623) - if yyj3623 < len(yyv3623) { + yyh3642.ElemContainerState(yyj3642) + if yyj3642 < len(yyv3642) { if r.TryDecodeAsNil() { - yyv3623[yyj3623] = ContainerPort{} + yyv3642[yyj3642] = ContainerPort{} } else { - yyv3626 := &yyv3623[yyj3623] - yyv3626.CodecDecodeSelf(d) + yyv3645 := &yyv3642[yyj3642] + yyv3645.CodecDecodeSelf(d) } } else { @@ -45078,17 +45344,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj3623 < len(yyv3623) { - yyv3623 = yyv3623[:yyj3623] - yyc3623 = true - } else if yyj3623 == 0 && yyv3623 == nil { - yyv3623 = []ContainerPort{} - yyc3623 = true + if yyj3642 < len(yyv3642) { + yyv3642 = yyv3642[:yyj3642] + yyc3642 = true + } else if yyj3642 == 0 && yyv3642 == nil { + yyv3642 = []ContainerPort{} + yyc3642 = true } } - yyh3623.End() - if yyc3623 { - *v = yyv3623 + yyh3642.End() + if yyc3642 { + *v = yyv3642 } } @@ -45097,10 +45363,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3627 := range v { + for _, yyv3646 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3628 := &yyv3627 - yy3628.CodecEncodeSelf(e) + yy3647 := &yyv3646 + yy3647.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45110,83 +45376,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3629 := *v - yyh3629, yyl3629 := z.DecSliceHelperStart() - var yyc3629 bool - if yyl3629 == 0 { - if yyv3629 == nil { - yyv3629 = []EnvVar{} - yyc3629 = true - } else if len(yyv3629) != 0 { - yyv3629 = yyv3629[:0] - yyc3629 = true + yyv3648 := *v + yyh3648, yyl3648 := z.DecSliceHelperStart() + var yyc3648 bool + if yyl3648 == 0 { + if yyv3648 == nil { + yyv3648 = []EnvVar{} + yyc3648 = true + } else if len(yyv3648) != 0 { + yyv3648 = yyv3648[:0] + yyc3648 = true } - } else if yyl3629 > 0 { - var yyrr3629, yyrl3629 int - var yyrt3629 bool - if yyl3629 > cap(yyv3629) { + } else if yyl3648 > 0 { + var yyrr3648, yyrl3648 int + var yyrt3648 bool + if yyl3648 > cap(yyv3648) { - yyrg3629 := len(yyv3629) > 0 - yyv23629 := yyv3629 - yyrl3629, yyrt3629 = z.DecInferLen(yyl3629, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3629 { - if yyrl3629 <= cap(yyv3629) { - yyv3629 = yyv3629[:yyrl3629] + yyrg3648 := len(yyv3648) > 0 + yyv23648 := yyv3648 + yyrl3648, yyrt3648 = z.DecInferLen(yyl3648, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3648 { + if yyrl3648 <= cap(yyv3648) { + yyv3648 = yyv3648[:yyrl3648] } else { - yyv3629 = make([]EnvVar, yyrl3629) + yyv3648 = make([]EnvVar, yyrl3648) } } else { - yyv3629 = make([]EnvVar, yyrl3629) + yyv3648 = make([]EnvVar, yyrl3648) } - yyc3629 = true - yyrr3629 = len(yyv3629) - if yyrg3629 { - copy(yyv3629, yyv23629) + yyc3648 = true + yyrr3648 = len(yyv3648) + if yyrg3648 { + copy(yyv3648, yyv23648) } - } else if yyl3629 != len(yyv3629) { - yyv3629 = yyv3629[:yyl3629] - yyc3629 = true + } else if yyl3648 != len(yyv3648) { + yyv3648 = yyv3648[:yyl3648] + yyc3648 = true } - yyj3629 := 0 - for ; yyj3629 < yyrr3629; yyj3629++ { - yyh3629.ElemContainerState(yyj3629) + yyj3648 := 0 + for ; yyj3648 < yyrr3648; yyj3648++ { + yyh3648.ElemContainerState(yyj3648) if r.TryDecodeAsNil() { - yyv3629[yyj3629] = EnvVar{} + yyv3648[yyj3648] = EnvVar{} } else { - yyv3630 := &yyv3629[yyj3629] - yyv3630.CodecDecodeSelf(d) + yyv3649 := &yyv3648[yyj3648] + yyv3649.CodecDecodeSelf(d) } } - if yyrt3629 { - for ; yyj3629 < yyl3629; yyj3629++ { - yyv3629 = append(yyv3629, EnvVar{}) - yyh3629.ElemContainerState(yyj3629) + if yyrt3648 { + for ; yyj3648 < yyl3648; yyj3648++ { + yyv3648 = append(yyv3648, EnvVar{}) + yyh3648.ElemContainerState(yyj3648) if r.TryDecodeAsNil() { - yyv3629[yyj3629] = EnvVar{} + yyv3648[yyj3648] = EnvVar{} } else { - yyv3631 := &yyv3629[yyj3629] - yyv3631.CodecDecodeSelf(d) + yyv3650 := &yyv3648[yyj3648] + yyv3650.CodecDecodeSelf(d) } } } } else { - yyj3629 := 0 - for ; !r.CheckBreak(); yyj3629++ { + yyj3648 := 0 + for ; !r.CheckBreak(); yyj3648++ { - if yyj3629 >= len(yyv3629) { - yyv3629 = append(yyv3629, EnvVar{}) // var yyz3629 EnvVar - yyc3629 = true + if yyj3648 >= len(yyv3648) { + yyv3648 = append(yyv3648, EnvVar{}) // var yyz3648 EnvVar + yyc3648 = true } - yyh3629.ElemContainerState(yyj3629) - if yyj3629 < len(yyv3629) { + yyh3648.ElemContainerState(yyj3648) + if yyj3648 < len(yyv3648) { if r.TryDecodeAsNil() { - yyv3629[yyj3629] = EnvVar{} + yyv3648[yyj3648] = EnvVar{} } else { - yyv3632 := &yyv3629[yyj3629] - yyv3632.CodecDecodeSelf(d) + yyv3651 := &yyv3648[yyj3648] + yyv3651.CodecDecodeSelf(d) } } else { @@ -45194,17 +45460,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj3629 < len(yyv3629) { - yyv3629 = yyv3629[:yyj3629] - yyc3629 = true - } else if yyj3629 == 0 && yyv3629 == nil { - yyv3629 = []EnvVar{} - yyc3629 = true + if yyj3648 < len(yyv3648) { + yyv3648 = yyv3648[:yyj3648] + yyc3648 = true + } else if yyj3648 == 0 && yyv3648 == nil { + yyv3648 = []EnvVar{} + yyc3648 = true } } - yyh3629.End() - if yyc3629 { - *v = yyv3629 + yyh3648.End() + if yyc3648 { + *v = yyv3648 } } @@ -45213,10 +45479,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3633 := range v { + for _, yyv3652 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3634 := &yyv3633 - yy3634.CodecEncodeSelf(e) + yy3653 := &yyv3652 + yy3653.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45226,83 +45492,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3635 := *v - yyh3635, yyl3635 := z.DecSliceHelperStart() - var yyc3635 bool - if yyl3635 == 0 { - if yyv3635 == nil { - yyv3635 = []VolumeMount{} - yyc3635 = true - } else if len(yyv3635) != 0 { - yyv3635 = yyv3635[:0] - yyc3635 = true + yyv3654 := *v + yyh3654, yyl3654 := z.DecSliceHelperStart() + var yyc3654 bool + if yyl3654 == 0 { + if yyv3654 == nil { + yyv3654 = []VolumeMount{} + yyc3654 = true + } else if len(yyv3654) != 0 { + yyv3654 = yyv3654[:0] + yyc3654 = true } - } else if yyl3635 > 0 { - var yyrr3635, yyrl3635 int - var yyrt3635 bool - if yyl3635 > cap(yyv3635) { + } else if yyl3654 > 0 { + var yyrr3654, yyrl3654 int + var yyrt3654 bool + if yyl3654 > cap(yyv3654) { - yyrg3635 := len(yyv3635) > 0 - yyv23635 := yyv3635 - yyrl3635, yyrt3635 = z.DecInferLen(yyl3635, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3635 { - if yyrl3635 <= cap(yyv3635) { - yyv3635 = yyv3635[:yyrl3635] + yyrg3654 := len(yyv3654) > 0 + yyv23654 := yyv3654 + yyrl3654, yyrt3654 = z.DecInferLen(yyl3654, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3654 { + if yyrl3654 <= cap(yyv3654) { + yyv3654 = yyv3654[:yyrl3654] } else { - yyv3635 = make([]VolumeMount, yyrl3635) + yyv3654 = make([]VolumeMount, yyrl3654) } } else { - yyv3635 = make([]VolumeMount, yyrl3635) + yyv3654 = make([]VolumeMount, yyrl3654) } - yyc3635 = true - yyrr3635 = len(yyv3635) - if yyrg3635 { - copy(yyv3635, yyv23635) + yyc3654 = true + yyrr3654 = len(yyv3654) + if yyrg3654 { + copy(yyv3654, yyv23654) } - } else if yyl3635 != len(yyv3635) { - yyv3635 = yyv3635[:yyl3635] - yyc3635 = true + } else if yyl3654 != len(yyv3654) { + yyv3654 = yyv3654[:yyl3654] + yyc3654 = true } - yyj3635 := 0 - for ; yyj3635 < yyrr3635; yyj3635++ { - yyh3635.ElemContainerState(yyj3635) + yyj3654 := 0 + for ; yyj3654 < yyrr3654; yyj3654++ { + yyh3654.ElemContainerState(yyj3654) if r.TryDecodeAsNil() { - yyv3635[yyj3635] = VolumeMount{} + yyv3654[yyj3654] = VolumeMount{} } else { - yyv3636 := &yyv3635[yyj3635] - yyv3636.CodecDecodeSelf(d) + yyv3655 := &yyv3654[yyj3654] + yyv3655.CodecDecodeSelf(d) } } - if yyrt3635 { - for ; yyj3635 < yyl3635; yyj3635++ { - yyv3635 = append(yyv3635, VolumeMount{}) - yyh3635.ElemContainerState(yyj3635) + if yyrt3654 { + for ; yyj3654 < yyl3654; yyj3654++ { + yyv3654 = append(yyv3654, VolumeMount{}) + yyh3654.ElemContainerState(yyj3654) if r.TryDecodeAsNil() { - yyv3635[yyj3635] = VolumeMount{} + yyv3654[yyj3654] = VolumeMount{} } else { - yyv3637 := &yyv3635[yyj3635] - yyv3637.CodecDecodeSelf(d) + yyv3656 := &yyv3654[yyj3654] + yyv3656.CodecDecodeSelf(d) } } } } else { - yyj3635 := 0 - for ; !r.CheckBreak(); yyj3635++ { + yyj3654 := 0 + for ; !r.CheckBreak(); yyj3654++ { - if yyj3635 >= len(yyv3635) { - yyv3635 = append(yyv3635, VolumeMount{}) // var yyz3635 VolumeMount - yyc3635 = true + if yyj3654 >= len(yyv3654) { + yyv3654 = append(yyv3654, VolumeMount{}) // var yyz3654 VolumeMount + yyc3654 = true } - yyh3635.ElemContainerState(yyj3635) - if yyj3635 < len(yyv3635) { + yyh3654.ElemContainerState(yyj3654) + if yyj3654 < len(yyv3654) { if r.TryDecodeAsNil() { - yyv3635[yyj3635] = VolumeMount{} + yyv3654[yyj3654] = VolumeMount{} } else { - yyv3638 := &yyv3635[yyj3635] - yyv3638.CodecDecodeSelf(d) + yyv3657 := &yyv3654[yyj3654] + yyv3657.CodecDecodeSelf(d) } } else { @@ -45310,17 +45576,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj3635 < len(yyv3635) { - yyv3635 = yyv3635[:yyj3635] - yyc3635 = true - } else if yyj3635 == 0 && yyv3635 == nil { - yyv3635 = []VolumeMount{} - yyc3635 = true + if yyj3654 < len(yyv3654) { + yyv3654 = yyv3654[:yyj3654] + yyc3654 = true + } else if yyj3654 == 0 && yyv3654 == nil { + yyv3654 = []VolumeMount{} + yyc3654 = true } } - yyh3635.End() - if yyc3635 { - *v = yyv3635 + yyh3654.End() + if yyc3654 { + *v = yyv3654 } } @@ -45329,10 +45595,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3639 := range v { + for _, yyv3658 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3640 := &yyv3639 - yy3640.CodecEncodeSelf(e) + yy3659 := &yyv3658 + yy3659.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45342,83 +45608,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3641 := *v - yyh3641, yyl3641 := z.DecSliceHelperStart() - var yyc3641 bool - if yyl3641 == 0 { - if yyv3641 == nil { - yyv3641 = []Pod{} - yyc3641 = true - } else if len(yyv3641) != 0 { - yyv3641 = yyv3641[:0] - yyc3641 = true + yyv3660 := *v + yyh3660, yyl3660 := z.DecSliceHelperStart() + var yyc3660 bool + if yyl3660 == 0 { + if yyv3660 == nil { + yyv3660 = []Pod{} + yyc3660 = true + } else if len(yyv3660) != 0 { + yyv3660 = yyv3660[:0] + yyc3660 = true } - } else if yyl3641 > 0 { - var yyrr3641, yyrl3641 int - var yyrt3641 bool - if yyl3641 > cap(yyv3641) { + } else if yyl3660 > 0 { + var yyrr3660, yyrl3660 int + var yyrt3660 bool + if yyl3660 > cap(yyv3660) { - yyrg3641 := len(yyv3641) > 0 - yyv23641 := yyv3641 - yyrl3641, yyrt3641 = z.DecInferLen(yyl3641, z.DecBasicHandle().MaxInitLen, 496) - if yyrt3641 { - if yyrl3641 <= cap(yyv3641) { - yyv3641 = yyv3641[:yyrl3641] + yyrg3660 := len(yyv3660) > 0 + yyv23660 := yyv3660 + yyrl3660, yyrt3660 = z.DecInferLen(yyl3660, z.DecBasicHandle().MaxInitLen, 496) + if yyrt3660 { + if yyrl3660 <= cap(yyv3660) { + yyv3660 = yyv3660[:yyrl3660] } else { - yyv3641 = make([]Pod, yyrl3641) + yyv3660 = make([]Pod, yyrl3660) } } else { - yyv3641 = make([]Pod, yyrl3641) + yyv3660 = make([]Pod, yyrl3660) } - yyc3641 = true - yyrr3641 = len(yyv3641) - if yyrg3641 { - copy(yyv3641, yyv23641) + yyc3660 = true + yyrr3660 = len(yyv3660) + if yyrg3660 { + copy(yyv3660, yyv23660) } - } else if yyl3641 != len(yyv3641) { - yyv3641 = yyv3641[:yyl3641] - yyc3641 = true + } else if yyl3660 != len(yyv3660) { + yyv3660 = yyv3660[:yyl3660] + yyc3660 = true } - yyj3641 := 0 - for ; yyj3641 < yyrr3641; yyj3641++ { - yyh3641.ElemContainerState(yyj3641) + yyj3660 := 0 + for ; yyj3660 < yyrr3660; yyj3660++ { + yyh3660.ElemContainerState(yyj3660) if r.TryDecodeAsNil() { - yyv3641[yyj3641] = Pod{} + yyv3660[yyj3660] = Pod{} } else { - yyv3642 := &yyv3641[yyj3641] - yyv3642.CodecDecodeSelf(d) + yyv3661 := &yyv3660[yyj3660] + yyv3661.CodecDecodeSelf(d) } } - if yyrt3641 { - for ; yyj3641 < yyl3641; yyj3641++ { - yyv3641 = append(yyv3641, Pod{}) - yyh3641.ElemContainerState(yyj3641) + if yyrt3660 { + for ; yyj3660 < yyl3660; yyj3660++ { + yyv3660 = append(yyv3660, Pod{}) + yyh3660.ElemContainerState(yyj3660) if r.TryDecodeAsNil() { - yyv3641[yyj3641] = Pod{} + yyv3660[yyj3660] = Pod{} } else { - yyv3643 := &yyv3641[yyj3641] - yyv3643.CodecDecodeSelf(d) + yyv3662 := &yyv3660[yyj3660] + yyv3662.CodecDecodeSelf(d) } } } } else { - yyj3641 := 0 - for ; !r.CheckBreak(); yyj3641++ { + yyj3660 := 0 + for ; !r.CheckBreak(); yyj3660++ { - if yyj3641 >= len(yyv3641) { - yyv3641 = append(yyv3641, Pod{}) // var yyz3641 Pod - yyc3641 = true + if yyj3660 >= len(yyv3660) { + yyv3660 = append(yyv3660, Pod{}) // var yyz3660 Pod + yyc3660 = true } - yyh3641.ElemContainerState(yyj3641) - if yyj3641 < len(yyv3641) { + yyh3660.ElemContainerState(yyj3660) + if yyj3660 < len(yyv3660) { if r.TryDecodeAsNil() { - yyv3641[yyj3641] = Pod{} + yyv3660[yyj3660] = Pod{} } else { - yyv3644 := &yyv3641[yyj3641] - yyv3644.CodecDecodeSelf(d) + yyv3663 := &yyv3660[yyj3660] + yyv3663.CodecDecodeSelf(d) } } else { @@ -45426,17 +45692,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj3641 < len(yyv3641) { - yyv3641 = yyv3641[:yyj3641] - yyc3641 = true - } else if yyj3641 == 0 && yyv3641 == nil { - yyv3641 = []Pod{} - yyc3641 = true + if yyj3660 < len(yyv3660) { + yyv3660 = yyv3660[:yyj3660] + yyc3660 = true + } else if yyj3660 == 0 && yyv3660 == nil { + yyv3660 = []Pod{} + yyc3660 = true } } - yyh3641.End() - if yyc3641 { - *v = yyv3641 + yyh3660.End() + if yyc3660 { + *v = yyv3660 } } @@ -45445,10 +45711,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3645 := range v { + for _, yyv3664 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3646 := &yyv3645 - yy3646.CodecEncodeSelf(e) + yy3665 := &yyv3664 + yy3665.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45458,83 +45724,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3647 := *v - yyh3647, yyl3647 := z.DecSliceHelperStart() - var yyc3647 bool - if yyl3647 == 0 { - if yyv3647 == nil { - yyv3647 = []Volume{} - yyc3647 = true - } else if len(yyv3647) != 0 { - yyv3647 = yyv3647[:0] - yyc3647 = true + yyv3666 := *v + yyh3666, yyl3666 := z.DecSliceHelperStart() + var yyc3666 bool + if yyl3666 == 0 { + if yyv3666 == nil { + yyv3666 = []Volume{} + yyc3666 = true + } else if len(yyv3666) != 0 { + yyv3666 = yyv3666[:0] + yyc3666 = true } - } else if yyl3647 > 0 { - var yyrr3647, yyrl3647 int - var yyrt3647 bool - if yyl3647 > cap(yyv3647) { + } else if yyl3666 > 0 { + var yyrr3666, yyrl3666 int + var yyrt3666 bool + if yyl3666 > cap(yyv3666) { - yyrg3647 := len(yyv3647) > 0 - yyv23647 := yyv3647 - yyrl3647, yyrt3647 = z.DecInferLen(yyl3647, z.DecBasicHandle().MaxInitLen, 152) - if yyrt3647 { - if yyrl3647 <= cap(yyv3647) { - yyv3647 = yyv3647[:yyrl3647] + yyrg3666 := len(yyv3666) > 0 + yyv23666 := yyv3666 + yyrl3666, yyrt3666 = z.DecInferLen(yyl3666, z.DecBasicHandle().MaxInitLen, 152) + if yyrt3666 { + if yyrl3666 <= cap(yyv3666) { + yyv3666 = yyv3666[:yyrl3666] } else { - yyv3647 = make([]Volume, yyrl3647) + yyv3666 = make([]Volume, yyrl3666) } } else { - yyv3647 = make([]Volume, yyrl3647) + yyv3666 = make([]Volume, yyrl3666) } - yyc3647 = true - yyrr3647 = len(yyv3647) - if yyrg3647 { - copy(yyv3647, yyv23647) + yyc3666 = true + yyrr3666 = len(yyv3666) + if yyrg3666 { + copy(yyv3666, yyv23666) } - } else if yyl3647 != len(yyv3647) { - yyv3647 = yyv3647[:yyl3647] - yyc3647 = true + } else if yyl3666 != len(yyv3666) { + yyv3666 = yyv3666[:yyl3666] + yyc3666 = true } - yyj3647 := 0 - for ; yyj3647 < yyrr3647; yyj3647++ { - yyh3647.ElemContainerState(yyj3647) + yyj3666 := 0 + for ; yyj3666 < yyrr3666; yyj3666++ { + yyh3666.ElemContainerState(yyj3666) if r.TryDecodeAsNil() { - yyv3647[yyj3647] = Volume{} + yyv3666[yyj3666] = Volume{} } else { - yyv3648 := &yyv3647[yyj3647] - yyv3648.CodecDecodeSelf(d) + yyv3667 := &yyv3666[yyj3666] + yyv3667.CodecDecodeSelf(d) } } - if yyrt3647 { - for ; yyj3647 < yyl3647; yyj3647++ { - yyv3647 = append(yyv3647, Volume{}) - yyh3647.ElemContainerState(yyj3647) + if yyrt3666 { + for ; yyj3666 < yyl3666; yyj3666++ { + yyv3666 = append(yyv3666, Volume{}) + yyh3666.ElemContainerState(yyj3666) if r.TryDecodeAsNil() { - yyv3647[yyj3647] = Volume{} + yyv3666[yyj3666] = Volume{} } else { - yyv3649 := &yyv3647[yyj3647] - yyv3649.CodecDecodeSelf(d) + yyv3668 := &yyv3666[yyj3666] + yyv3668.CodecDecodeSelf(d) } } } } else { - yyj3647 := 0 - for ; !r.CheckBreak(); yyj3647++ { + yyj3666 := 0 + for ; !r.CheckBreak(); yyj3666++ { - if yyj3647 >= len(yyv3647) { - yyv3647 = append(yyv3647, Volume{}) // var yyz3647 Volume - yyc3647 = true + if yyj3666 >= len(yyv3666) { + yyv3666 = append(yyv3666, Volume{}) // var yyz3666 Volume + yyc3666 = true } - yyh3647.ElemContainerState(yyj3647) - if yyj3647 < len(yyv3647) { + yyh3666.ElemContainerState(yyj3666) + if yyj3666 < len(yyv3666) { if r.TryDecodeAsNil() { - yyv3647[yyj3647] = Volume{} + yyv3666[yyj3666] = Volume{} } else { - yyv3650 := &yyv3647[yyj3647] - yyv3650.CodecDecodeSelf(d) + yyv3669 := &yyv3666[yyj3666] + yyv3669.CodecDecodeSelf(d) } } else { @@ -45542,17 +45808,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3647 < len(yyv3647) { - yyv3647 = yyv3647[:yyj3647] - yyc3647 = true - } else if yyj3647 == 0 && yyv3647 == nil { - yyv3647 = []Volume{} - yyc3647 = true + if yyj3666 < len(yyv3666) { + yyv3666 = yyv3666[:yyj3666] + yyc3666 = true + } else if yyj3666 == 0 && yyv3666 == nil { + yyv3666 = []Volume{} + yyc3666 = true } } - yyh3647.End() - if yyc3647 { - *v = yyv3647 + yyh3666.End() + if yyc3666 { + *v = yyv3666 } } @@ -45561,10 +45827,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3651 := range v { + for _, yyv3670 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3652 := &yyv3651 - yy3652.CodecEncodeSelf(e) + yy3671 := &yyv3670 + yy3671.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45574,83 +45840,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3653 := *v - yyh3653, yyl3653 := z.DecSliceHelperStart() - var yyc3653 bool - if yyl3653 == 0 { - if yyv3653 == nil { - yyv3653 = []Container{} - yyc3653 = true - } else if len(yyv3653) != 0 { - yyv3653 = yyv3653[:0] - yyc3653 = true + yyv3672 := *v + yyh3672, yyl3672 := z.DecSliceHelperStart() + var yyc3672 bool + if yyl3672 == 0 { + if yyv3672 == nil { + yyv3672 = []Container{} + yyc3672 = true + } else if len(yyv3672) != 0 { + yyv3672 = yyv3672[:0] + yyc3672 = true } - } else if yyl3653 > 0 { - var yyrr3653, yyrl3653 int - var yyrt3653 bool - if yyl3653 > cap(yyv3653) { + } else if yyl3672 > 0 { + var yyrr3672, yyrl3672 int + var yyrt3672 bool + if yyl3672 > cap(yyv3672) { - yyrg3653 := len(yyv3653) > 0 - yyv23653 := yyv3653 - yyrl3653, yyrt3653 = z.DecInferLen(yyl3653, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3653 { - if yyrl3653 <= cap(yyv3653) { - yyv3653 = yyv3653[:yyrl3653] + yyrg3672 := len(yyv3672) > 0 + yyv23672 := yyv3672 + yyrl3672, yyrt3672 = z.DecInferLen(yyl3672, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3672 { + if yyrl3672 <= cap(yyv3672) { + yyv3672 = yyv3672[:yyrl3672] } else { - yyv3653 = make([]Container, yyrl3653) + yyv3672 = make([]Container, yyrl3672) } } else { - yyv3653 = make([]Container, yyrl3653) + yyv3672 = make([]Container, yyrl3672) } - yyc3653 = true - yyrr3653 = len(yyv3653) - if yyrg3653 { - copy(yyv3653, yyv23653) + yyc3672 = true + yyrr3672 = len(yyv3672) + if yyrg3672 { + copy(yyv3672, yyv23672) } - } else if yyl3653 != len(yyv3653) { - yyv3653 = yyv3653[:yyl3653] - yyc3653 = true + } else if yyl3672 != len(yyv3672) { + yyv3672 = yyv3672[:yyl3672] + yyc3672 = true } - yyj3653 := 0 - for ; yyj3653 < yyrr3653; yyj3653++ { - yyh3653.ElemContainerState(yyj3653) + yyj3672 := 0 + for ; yyj3672 < yyrr3672; yyj3672++ { + yyh3672.ElemContainerState(yyj3672) if r.TryDecodeAsNil() { - yyv3653[yyj3653] = Container{} + yyv3672[yyj3672] = Container{} } else { - yyv3654 := &yyv3653[yyj3653] - yyv3654.CodecDecodeSelf(d) + yyv3673 := &yyv3672[yyj3672] + yyv3673.CodecDecodeSelf(d) } } - if yyrt3653 { - for ; yyj3653 < yyl3653; yyj3653++ { - yyv3653 = append(yyv3653, Container{}) - yyh3653.ElemContainerState(yyj3653) + if yyrt3672 { + for ; yyj3672 < yyl3672; yyj3672++ { + yyv3672 = append(yyv3672, Container{}) + yyh3672.ElemContainerState(yyj3672) if r.TryDecodeAsNil() { - yyv3653[yyj3653] = Container{} + yyv3672[yyj3672] = Container{} } else { - yyv3655 := &yyv3653[yyj3653] - yyv3655.CodecDecodeSelf(d) + yyv3674 := &yyv3672[yyj3672] + yyv3674.CodecDecodeSelf(d) } } } } else { - yyj3653 := 0 - for ; !r.CheckBreak(); yyj3653++ { + yyj3672 := 0 + for ; !r.CheckBreak(); yyj3672++ { - if yyj3653 >= len(yyv3653) { - yyv3653 = append(yyv3653, Container{}) // var yyz3653 Container - yyc3653 = true + if yyj3672 >= len(yyv3672) { + yyv3672 = append(yyv3672, Container{}) // var yyz3672 Container + yyc3672 = true } - yyh3653.ElemContainerState(yyj3653) - if yyj3653 < len(yyv3653) { + yyh3672.ElemContainerState(yyj3672) + if yyj3672 < len(yyv3672) { if r.TryDecodeAsNil() { - yyv3653[yyj3653] = Container{} + yyv3672[yyj3672] = Container{} } else { - yyv3656 := &yyv3653[yyj3653] - yyv3656.CodecDecodeSelf(d) + yyv3675 := &yyv3672[yyj3672] + yyv3675.CodecDecodeSelf(d) } } else { @@ -45658,17 +45924,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3653 < len(yyv3653) { - yyv3653 = yyv3653[:yyj3653] - yyc3653 = true - } else if yyj3653 == 0 && yyv3653 == nil { - yyv3653 = []Container{} - yyc3653 = true + if yyj3672 < len(yyv3672) { + yyv3672 = yyv3672[:yyj3672] + yyc3672 = true + } else if yyj3672 == 0 && yyv3672 == nil { + yyv3672 = []Container{} + yyc3672 = true } } - yyh3653.End() - if yyc3653 { - *v = yyv3653 + yyh3672.End() + if yyc3672 { + *v = yyv3672 } } @@ -45677,10 +45943,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3657 := range v { + for _, yyv3676 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3658 := &yyv3657 - yy3658.CodecEncodeSelf(e) + yy3677 := &yyv3676 + yy3677.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45690,83 +45956,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3659 := *v - yyh3659, yyl3659 := z.DecSliceHelperStart() - var yyc3659 bool - if yyl3659 == 0 { - if yyv3659 == nil { - yyv3659 = []LocalObjectReference{} - yyc3659 = true - } else if len(yyv3659) != 0 { - yyv3659 = yyv3659[:0] - yyc3659 = true + yyv3678 := *v + yyh3678, yyl3678 := z.DecSliceHelperStart() + var yyc3678 bool + if yyl3678 == 0 { + if yyv3678 == nil { + yyv3678 = []LocalObjectReference{} + yyc3678 = true + } else if len(yyv3678) != 0 { + yyv3678 = yyv3678[:0] + yyc3678 = true } - } else if yyl3659 > 0 { - var yyrr3659, yyrl3659 int - var yyrt3659 bool - if yyl3659 > cap(yyv3659) { + } else if yyl3678 > 0 { + var yyrr3678, yyrl3678 int + var yyrt3678 bool + if yyl3678 > cap(yyv3678) { - yyrg3659 := len(yyv3659) > 0 - yyv23659 := yyv3659 - yyrl3659, yyrt3659 = z.DecInferLen(yyl3659, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3659 { - if yyrl3659 <= cap(yyv3659) { - yyv3659 = yyv3659[:yyrl3659] + yyrg3678 := len(yyv3678) > 0 + yyv23678 := yyv3678 + yyrl3678, yyrt3678 = z.DecInferLen(yyl3678, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3678 { + if yyrl3678 <= cap(yyv3678) { + yyv3678 = yyv3678[:yyrl3678] } else { - yyv3659 = make([]LocalObjectReference, yyrl3659) + yyv3678 = make([]LocalObjectReference, yyrl3678) } } else { - yyv3659 = make([]LocalObjectReference, yyrl3659) + yyv3678 = make([]LocalObjectReference, yyrl3678) } - yyc3659 = true - yyrr3659 = len(yyv3659) - if yyrg3659 { - copy(yyv3659, yyv23659) + yyc3678 = true + yyrr3678 = len(yyv3678) + if yyrg3678 { + copy(yyv3678, yyv23678) } - } else if yyl3659 != len(yyv3659) { - yyv3659 = yyv3659[:yyl3659] - yyc3659 = true + } else if yyl3678 != len(yyv3678) { + yyv3678 = yyv3678[:yyl3678] + yyc3678 = true } - yyj3659 := 0 - for ; yyj3659 < yyrr3659; yyj3659++ { - yyh3659.ElemContainerState(yyj3659) + yyj3678 := 0 + for ; yyj3678 < yyrr3678; yyj3678++ { + yyh3678.ElemContainerState(yyj3678) if r.TryDecodeAsNil() { - yyv3659[yyj3659] = LocalObjectReference{} + yyv3678[yyj3678] = LocalObjectReference{} } else { - yyv3660 := &yyv3659[yyj3659] - yyv3660.CodecDecodeSelf(d) + yyv3679 := &yyv3678[yyj3678] + yyv3679.CodecDecodeSelf(d) } } - if yyrt3659 { - for ; yyj3659 < yyl3659; yyj3659++ { - yyv3659 = append(yyv3659, LocalObjectReference{}) - yyh3659.ElemContainerState(yyj3659) + if yyrt3678 { + for ; yyj3678 < yyl3678; yyj3678++ { + yyv3678 = append(yyv3678, LocalObjectReference{}) + yyh3678.ElemContainerState(yyj3678) if r.TryDecodeAsNil() { - yyv3659[yyj3659] = LocalObjectReference{} + yyv3678[yyj3678] = LocalObjectReference{} } else { - yyv3661 := &yyv3659[yyj3659] - yyv3661.CodecDecodeSelf(d) + yyv3680 := &yyv3678[yyj3678] + yyv3680.CodecDecodeSelf(d) } } } } else { - yyj3659 := 0 - for ; !r.CheckBreak(); yyj3659++ { + yyj3678 := 0 + for ; !r.CheckBreak(); yyj3678++ { - if yyj3659 >= len(yyv3659) { - yyv3659 = append(yyv3659, LocalObjectReference{}) // var yyz3659 LocalObjectReference - yyc3659 = true + if yyj3678 >= len(yyv3678) { + yyv3678 = append(yyv3678, LocalObjectReference{}) // var yyz3678 LocalObjectReference + yyc3678 = true } - yyh3659.ElemContainerState(yyj3659) - if yyj3659 < len(yyv3659) { + yyh3678.ElemContainerState(yyj3678) + if yyj3678 < len(yyv3678) { if r.TryDecodeAsNil() { - yyv3659[yyj3659] = LocalObjectReference{} + yyv3678[yyj3678] = LocalObjectReference{} } else { - yyv3662 := &yyv3659[yyj3659] - yyv3662.CodecDecodeSelf(d) + yyv3681 := &yyv3678[yyj3678] + yyv3681.CodecDecodeSelf(d) } } else { @@ -45774,17 +46040,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3659 < len(yyv3659) { - yyv3659 = yyv3659[:yyj3659] - yyc3659 = true - } else if yyj3659 == 0 && yyv3659 == nil { - yyv3659 = []LocalObjectReference{} - yyc3659 = true + if yyj3678 < len(yyv3678) { + yyv3678 = yyv3678[:yyj3678] + yyc3678 = true + } else if yyj3678 == 0 && yyv3678 == nil { + yyv3678 = []LocalObjectReference{} + yyc3678 = true } } - yyh3659.End() - if yyc3659 { - *v = yyv3659 + yyh3678.End() + if yyc3678 { + *v = yyv3678 } } @@ -45793,10 +46059,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3663 := range v { + for _, yyv3682 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3664 := &yyv3663 - yy3664.CodecEncodeSelf(e) + yy3683 := &yyv3682 + yy3683.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45806,83 +46072,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3665 := *v - yyh3665, yyl3665 := z.DecSliceHelperStart() - var yyc3665 bool - if yyl3665 == 0 { - if yyv3665 == nil { - yyv3665 = []PodCondition{} - yyc3665 = true - } else if len(yyv3665) != 0 { - yyv3665 = yyv3665[:0] - yyc3665 = true + yyv3684 := *v + yyh3684, yyl3684 := z.DecSliceHelperStart() + var yyc3684 bool + if yyl3684 == 0 { + if yyv3684 == nil { + yyv3684 = []PodCondition{} + yyc3684 = true + } else if len(yyv3684) != 0 { + yyv3684 = yyv3684[:0] + yyc3684 = true } - } else if yyl3665 > 0 { - var yyrr3665, yyrl3665 int - var yyrt3665 bool - if yyl3665 > cap(yyv3665) { + } else if yyl3684 > 0 { + var yyrr3684, yyrl3684 int + var yyrt3684 bool + if yyl3684 > cap(yyv3684) { - yyrg3665 := len(yyv3665) > 0 - yyv23665 := yyv3665 - yyrl3665, yyrt3665 = z.DecInferLen(yyl3665, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3665 { - if yyrl3665 <= cap(yyv3665) { - yyv3665 = yyv3665[:yyrl3665] + yyrg3684 := len(yyv3684) > 0 + yyv23684 := yyv3684 + yyrl3684, yyrt3684 = z.DecInferLen(yyl3684, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3684 { + if yyrl3684 <= cap(yyv3684) { + yyv3684 = yyv3684[:yyrl3684] } else { - yyv3665 = make([]PodCondition, yyrl3665) + yyv3684 = make([]PodCondition, yyrl3684) } } else { - yyv3665 = make([]PodCondition, yyrl3665) + yyv3684 = make([]PodCondition, yyrl3684) } - yyc3665 = true - yyrr3665 = len(yyv3665) - if yyrg3665 { - copy(yyv3665, yyv23665) + yyc3684 = true + yyrr3684 = len(yyv3684) + if yyrg3684 { + copy(yyv3684, yyv23684) } - } else if yyl3665 != len(yyv3665) { - yyv3665 = yyv3665[:yyl3665] - yyc3665 = true + } else if yyl3684 != len(yyv3684) { + yyv3684 = yyv3684[:yyl3684] + yyc3684 = true } - yyj3665 := 0 - for ; yyj3665 < yyrr3665; yyj3665++ { - yyh3665.ElemContainerState(yyj3665) + yyj3684 := 0 + for ; yyj3684 < yyrr3684; yyj3684++ { + yyh3684.ElemContainerState(yyj3684) if r.TryDecodeAsNil() { - yyv3665[yyj3665] = PodCondition{} + yyv3684[yyj3684] = PodCondition{} } else { - yyv3666 := &yyv3665[yyj3665] - yyv3666.CodecDecodeSelf(d) + yyv3685 := &yyv3684[yyj3684] + yyv3685.CodecDecodeSelf(d) } } - if yyrt3665 { - for ; yyj3665 < yyl3665; yyj3665++ { - yyv3665 = append(yyv3665, PodCondition{}) - yyh3665.ElemContainerState(yyj3665) + if yyrt3684 { + for ; yyj3684 < yyl3684; yyj3684++ { + yyv3684 = append(yyv3684, PodCondition{}) + yyh3684.ElemContainerState(yyj3684) if r.TryDecodeAsNil() { - yyv3665[yyj3665] = PodCondition{} + yyv3684[yyj3684] = PodCondition{} } else { - yyv3667 := &yyv3665[yyj3665] - yyv3667.CodecDecodeSelf(d) + yyv3686 := &yyv3684[yyj3684] + yyv3686.CodecDecodeSelf(d) } } } } else { - yyj3665 := 0 - for ; !r.CheckBreak(); yyj3665++ { + yyj3684 := 0 + for ; !r.CheckBreak(); yyj3684++ { - if yyj3665 >= len(yyv3665) { - yyv3665 = append(yyv3665, PodCondition{}) // var yyz3665 PodCondition - yyc3665 = true + if yyj3684 >= len(yyv3684) { + yyv3684 = append(yyv3684, PodCondition{}) // var yyz3684 PodCondition + yyc3684 = true } - yyh3665.ElemContainerState(yyj3665) - if yyj3665 < len(yyv3665) { + yyh3684.ElemContainerState(yyj3684) + if yyj3684 < len(yyv3684) { if r.TryDecodeAsNil() { - yyv3665[yyj3665] = PodCondition{} + yyv3684[yyj3684] = PodCondition{} } else { - yyv3668 := &yyv3665[yyj3665] - yyv3668.CodecDecodeSelf(d) + yyv3687 := &yyv3684[yyj3684] + yyv3687.CodecDecodeSelf(d) } } else { @@ -45890,17 +46156,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3665 < len(yyv3665) { - yyv3665 = yyv3665[:yyj3665] - yyc3665 = true - } else if yyj3665 == 0 && yyv3665 == nil { - yyv3665 = []PodCondition{} - yyc3665 = true + if yyj3684 < len(yyv3684) { + yyv3684 = yyv3684[:yyj3684] + yyc3684 = true + } else if yyj3684 == 0 && yyv3684 == nil { + yyv3684 = []PodCondition{} + yyc3684 = true } } - yyh3665.End() - if yyc3665 { - *v = yyv3665 + yyh3684.End() + if yyc3684 { + *v = yyv3684 } } @@ -45909,10 +46175,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3669 := range v { + for _, yyv3688 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3670 := &yyv3669 - yy3670.CodecEncodeSelf(e) + yy3689 := &yyv3688 + yy3689.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45922,83 +46188,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3671 := *v - yyh3671, yyl3671 := z.DecSliceHelperStart() - var yyc3671 bool - if yyl3671 == 0 { - if yyv3671 == nil { - yyv3671 = []ContainerStatus{} - yyc3671 = true - } else if len(yyv3671) != 0 { - yyv3671 = yyv3671[:0] - yyc3671 = true + yyv3690 := *v + yyh3690, yyl3690 := z.DecSliceHelperStart() + var yyc3690 bool + if yyl3690 == 0 { + if yyv3690 == nil { + yyv3690 = []ContainerStatus{} + yyc3690 = true + } else if len(yyv3690) != 0 { + yyv3690 = yyv3690[:0] + yyc3690 = true } - } else if yyl3671 > 0 { - var yyrr3671, yyrl3671 int - var yyrt3671 bool - if yyl3671 > cap(yyv3671) { + } else if yyl3690 > 0 { + var yyrr3690, yyrl3690 int + var yyrt3690 bool + if yyl3690 > cap(yyv3690) { - yyrg3671 := len(yyv3671) > 0 - yyv23671 := yyv3671 - yyrl3671, yyrt3671 = z.DecInferLen(yyl3671, z.DecBasicHandle().MaxInitLen, 128) - if yyrt3671 { - if yyrl3671 <= cap(yyv3671) { - yyv3671 = yyv3671[:yyrl3671] + yyrg3690 := len(yyv3690) > 0 + yyv23690 := yyv3690 + yyrl3690, yyrt3690 = z.DecInferLen(yyl3690, z.DecBasicHandle().MaxInitLen, 128) + if yyrt3690 { + if yyrl3690 <= cap(yyv3690) { + yyv3690 = yyv3690[:yyrl3690] } else { - yyv3671 = make([]ContainerStatus, yyrl3671) + yyv3690 = make([]ContainerStatus, yyrl3690) } } else { - yyv3671 = make([]ContainerStatus, yyrl3671) + yyv3690 = make([]ContainerStatus, yyrl3690) } - yyc3671 = true - yyrr3671 = len(yyv3671) - if yyrg3671 { - copy(yyv3671, yyv23671) + yyc3690 = true + yyrr3690 = len(yyv3690) + if yyrg3690 { + copy(yyv3690, yyv23690) } - } else if yyl3671 != len(yyv3671) { - yyv3671 = yyv3671[:yyl3671] - yyc3671 = true + } else if yyl3690 != len(yyv3690) { + yyv3690 = yyv3690[:yyl3690] + yyc3690 = true } - yyj3671 := 0 - for ; yyj3671 < yyrr3671; yyj3671++ { - yyh3671.ElemContainerState(yyj3671) + yyj3690 := 0 + for ; yyj3690 < yyrr3690; yyj3690++ { + yyh3690.ElemContainerState(yyj3690) if r.TryDecodeAsNil() { - yyv3671[yyj3671] = ContainerStatus{} + yyv3690[yyj3690] = ContainerStatus{} } else { - yyv3672 := &yyv3671[yyj3671] - yyv3672.CodecDecodeSelf(d) + yyv3691 := &yyv3690[yyj3690] + yyv3691.CodecDecodeSelf(d) } } - if yyrt3671 { - for ; yyj3671 < yyl3671; yyj3671++ { - yyv3671 = append(yyv3671, ContainerStatus{}) - yyh3671.ElemContainerState(yyj3671) + if yyrt3690 { + for ; yyj3690 < yyl3690; yyj3690++ { + yyv3690 = append(yyv3690, ContainerStatus{}) + yyh3690.ElemContainerState(yyj3690) if r.TryDecodeAsNil() { - yyv3671[yyj3671] = ContainerStatus{} + yyv3690[yyj3690] = ContainerStatus{} } else { - yyv3673 := &yyv3671[yyj3671] - yyv3673.CodecDecodeSelf(d) + yyv3692 := &yyv3690[yyj3690] + yyv3692.CodecDecodeSelf(d) } } } } else { - yyj3671 := 0 - for ; !r.CheckBreak(); yyj3671++ { + yyj3690 := 0 + for ; !r.CheckBreak(); yyj3690++ { - if yyj3671 >= len(yyv3671) { - yyv3671 = append(yyv3671, ContainerStatus{}) // var yyz3671 ContainerStatus - yyc3671 = true + if yyj3690 >= len(yyv3690) { + yyv3690 = append(yyv3690, ContainerStatus{}) // var yyz3690 ContainerStatus + yyc3690 = true } - yyh3671.ElemContainerState(yyj3671) - if yyj3671 < len(yyv3671) { + yyh3690.ElemContainerState(yyj3690) + if yyj3690 < len(yyv3690) { if r.TryDecodeAsNil() { - yyv3671[yyj3671] = ContainerStatus{} + yyv3690[yyj3690] = ContainerStatus{} } else { - yyv3674 := &yyv3671[yyj3671] - yyv3674.CodecDecodeSelf(d) + yyv3693 := &yyv3690[yyj3690] + yyv3693.CodecDecodeSelf(d) } } else { @@ -46006,17 +46272,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3671 < len(yyv3671) { - yyv3671 = yyv3671[:yyj3671] - yyc3671 = true - } else if yyj3671 == 0 && yyv3671 == nil { - yyv3671 = []ContainerStatus{} - yyc3671 = true + if yyj3690 < len(yyv3690) { + yyv3690 = yyv3690[:yyj3690] + yyc3690 = true + } else if yyj3690 == 0 && yyv3690 == nil { + yyv3690 = []ContainerStatus{} + yyc3690 = true } } - yyh3671.End() - if yyc3671 { - *v = yyv3671 + yyh3690.End() + if yyc3690 { + *v = yyv3690 } } @@ -46025,10 +46291,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3675 := range v { + for _, yyv3694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3676 := &yyv3675 - yy3676.CodecEncodeSelf(e) + yy3695 := &yyv3694 + yy3695.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46038,83 +46304,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3677 := *v - yyh3677, yyl3677 := z.DecSliceHelperStart() - var yyc3677 bool - if yyl3677 == 0 { - if yyv3677 == nil { - yyv3677 = []PodTemplate{} - yyc3677 = true - } else if len(yyv3677) != 0 { - yyv3677 = yyv3677[:0] - yyc3677 = true + yyv3696 := *v + yyh3696, yyl3696 := z.DecSliceHelperStart() + var yyc3696 bool + if yyl3696 == 0 { + if yyv3696 == nil { + yyv3696 = []PodTemplate{} + yyc3696 = true + } else if len(yyv3696) != 0 { + yyv3696 = yyv3696[:0] + yyc3696 = true } - } else if yyl3677 > 0 { - var yyrr3677, yyrl3677 int - var yyrt3677 bool - if yyl3677 > cap(yyv3677) { + } else if yyl3696 > 0 { + var yyrr3696, yyrl3696 int + var yyrt3696 bool + if yyl3696 > cap(yyv3696) { - yyrg3677 := len(yyv3677) > 0 - yyv23677 := yyv3677 - yyrl3677, yyrt3677 = z.DecInferLen(yyl3677, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3677 { - if yyrl3677 <= cap(yyv3677) { - yyv3677 = yyv3677[:yyrl3677] + yyrg3696 := len(yyv3696) > 0 + yyv23696 := yyv3696 + yyrl3696, yyrt3696 = z.DecInferLen(yyl3696, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3696 { + if yyrl3696 <= cap(yyv3696) { + yyv3696 = yyv3696[:yyrl3696] } else { - yyv3677 = make([]PodTemplate, yyrl3677) + yyv3696 = make([]PodTemplate, yyrl3696) } } else { - yyv3677 = make([]PodTemplate, yyrl3677) + yyv3696 = make([]PodTemplate, yyrl3696) } - yyc3677 = true - yyrr3677 = len(yyv3677) - if yyrg3677 { - copy(yyv3677, yyv23677) + yyc3696 = true + yyrr3696 = len(yyv3696) + if yyrg3696 { + copy(yyv3696, yyv23696) } - } else if yyl3677 != len(yyv3677) { - yyv3677 = yyv3677[:yyl3677] - yyc3677 = true + } else if yyl3696 != len(yyv3696) { + yyv3696 = yyv3696[:yyl3696] + yyc3696 = true } - yyj3677 := 0 - for ; yyj3677 < yyrr3677; yyj3677++ { - yyh3677.ElemContainerState(yyj3677) + yyj3696 := 0 + for ; yyj3696 < yyrr3696; yyj3696++ { + yyh3696.ElemContainerState(yyj3696) if r.TryDecodeAsNil() { - yyv3677[yyj3677] = PodTemplate{} + yyv3696[yyj3696] = PodTemplate{} } else { - yyv3678 := &yyv3677[yyj3677] - yyv3678.CodecDecodeSelf(d) + yyv3697 := &yyv3696[yyj3696] + yyv3697.CodecDecodeSelf(d) } } - if yyrt3677 { - for ; yyj3677 < yyl3677; yyj3677++ { - yyv3677 = append(yyv3677, PodTemplate{}) - yyh3677.ElemContainerState(yyj3677) + if yyrt3696 { + for ; yyj3696 < yyl3696; yyj3696++ { + yyv3696 = append(yyv3696, PodTemplate{}) + yyh3696.ElemContainerState(yyj3696) if r.TryDecodeAsNil() { - yyv3677[yyj3677] = PodTemplate{} + yyv3696[yyj3696] = PodTemplate{} } else { - yyv3679 := &yyv3677[yyj3677] - yyv3679.CodecDecodeSelf(d) + yyv3698 := &yyv3696[yyj3696] + yyv3698.CodecDecodeSelf(d) } } } } else { - yyj3677 := 0 - for ; !r.CheckBreak(); yyj3677++ { + yyj3696 := 0 + for ; !r.CheckBreak(); yyj3696++ { - if yyj3677 >= len(yyv3677) { - yyv3677 = append(yyv3677, PodTemplate{}) // var yyz3677 PodTemplate - yyc3677 = true + if yyj3696 >= len(yyv3696) { + yyv3696 = append(yyv3696, PodTemplate{}) // var yyz3696 PodTemplate + yyc3696 = true } - yyh3677.ElemContainerState(yyj3677) - if yyj3677 < len(yyv3677) { + yyh3696.ElemContainerState(yyj3696) + if yyj3696 < len(yyv3696) { if r.TryDecodeAsNil() { - yyv3677[yyj3677] = PodTemplate{} + yyv3696[yyj3696] = PodTemplate{} } else { - yyv3680 := &yyv3677[yyj3677] - yyv3680.CodecDecodeSelf(d) + yyv3699 := &yyv3696[yyj3696] + yyv3699.CodecDecodeSelf(d) } } else { @@ -46122,17 +46388,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3677 < len(yyv3677) { - yyv3677 = yyv3677[:yyj3677] - yyc3677 = true - } else if yyj3677 == 0 && yyv3677 == nil { - yyv3677 = []PodTemplate{} - yyc3677 = true + if yyj3696 < len(yyv3696) { + yyv3696 = yyv3696[:yyj3696] + yyc3696 = true + } else if yyj3696 == 0 && yyv3696 == nil { + yyv3696 = []PodTemplate{} + yyc3696 = true } } - yyh3677.End() - if yyc3677 { - *v = yyv3677 + yyh3696.End() + if yyc3696 { + *v = yyv3696 } } @@ -46141,10 +46407,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3681 := range v { + for _, yyv3700 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3682 := &yyv3681 - yy3682.CodecEncodeSelf(e) + yy3701 := &yyv3700 + yy3701.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46154,83 +46420,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3683 := *v - yyh3683, yyl3683 := z.DecSliceHelperStart() - var yyc3683 bool - if yyl3683 == 0 { - if yyv3683 == nil { - yyv3683 = []ReplicationController{} - yyc3683 = true - } else if len(yyv3683) != 0 { - yyv3683 = yyv3683[:0] - yyc3683 = true + yyv3702 := *v + yyh3702, yyl3702 := z.DecSliceHelperStart() + var yyc3702 bool + if yyl3702 == 0 { + if yyv3702 == nil { + yyv3702 = []ReplicationController{} + yyc3702 = true + } else if len(yyv3702) != 0 { + yyv3702 = yyv3702[:0] + yyc3702 = true } - } else if yyl3683 > 0 { - var yyrr3683, yyrl3683 int - var yyrt3683 bool - if yyl3683 > cap(yyv3683) { + } else if yyl3702 > 0 { + var yyrr3702, yyrl3702 int + var yyrt3702 bool + if yyl3702 > cap(yyv3702) { - yyrg3683 := len(yyv3683) > 0 - yyv23683 := yyv3683 - yyrl3683, yyrt3683 = z.DecInferLen(yyl3683, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3683 { - if yyrl3683 <= cap(yyv3683) { - yyv3683 = yyv3683[:yyrl3683] + yyrg3702 := len(yyv3702) > 0 + yyv23702 := yyv3702 + yyrl3702, yyrt3702 = z.DecInferLen(yyl3702, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3702 { + if yyrl3702 <= cap(yyv3702) { + yyv3702 = yyv3702[:yyrl3702] } else { - yyv3683 = make([]ReplicationController, yyrl3683) + yyv3702 = make([]ReplicationController, yyrl3702) } } else { - yyv3683 = make([]ReplicationController, yyrl3683) + yyv3702 = make([]ReplicationController, yyrl3702) } - yyc3683 = true - yyrr3683 = len(yyv3683) - if yyrg3683 { - copy(yyv3683, yyv23683) + yyc3702 = true + yyrr3702 = len(yyv3702) + if yyrg3702 { + copy(yyv3702, yyv23702) } - } else if yyl3683 != len(yyv3683) { - yyv3683 = yyv3683[:yyl3683] - yyc3683 = true + } else if yyl3702 != len(yyv3702) { + yyv3702 = yyv3702[:yyl3702] + yyc3702 = true } - yyj3683 := 0 - for ; yyj3683 < yyrr3683; yyj3683++ { - yyh3683.ElemContainerState(yyj3683) + yyj3702 := 0 + for ; yyj3702 < yyrr3702; yyj3702++ { + yyh3702.ElemContainerState(yyj3702) if r.TryDecodeAsNil() { - yyv3683[yyj3683] = ReplicationController{} + yyv3702[yyj3702] = ReplicationController{} } else { - yyv3684 := &yyv3683[yyj3683] - yyv3684.CodecDecodeSelf(d) + yyv3703 := &yyv3702[yyj3702] + yyv3703.CodecDecodeSelf(d) } } - if yyrt3683 { - for ; yyj3683 < yyl3683; yyj3683++ { - yyv3683 = append(yyv3683, ReplicationController{}) - yyh3683.ElemContainerState(yyj3683) + if yyrt3702 { + for ; yyj3702 < yyl3702; yyj3702++ { + yyv3702 = append(yyv3702, ReplicationController{}) + yyh3702.ElemContainerState(yyj3702) if r.TryDecodeAsNil() { - yyv3683[yyj3683] = ReplicationController{} + yyv3702[yyj3702] = ReplicationController{} } else { - yyv3685 := &yyv3683[yyj3683] - yyv3685.CodecDecodeSelf(d) + yyv3704 := &yyv3702[yyj3702] + yyv3704.CodecDecodeSelf(d) } } } } else { - yyj3683 := 0 - for ; !r.CheckBreak(); yyj3683++ { + yyj3702 := 0 + for ; !r.CheckBreak(); yyj3702++ { - if yyj3683 >= len(yyv3683) { - yyv3683 = append(yyv3683, ReplicationController{}) // var yyz3683 ReplicationController - yyc3683 = true + if yyj3702 >= len(yyv3702) { + yyv3702 = append(yyv3702, ReplicationController{}) // var yyz3702 ReplicationController + yyc3702 = true } - yyh3683.ElemContainerState(yyj3683) - if yyj3683 < len(yyv3683) { + yyh3702.ElemContainerState(yyj3702) + if yyj3702 < len(yyv3702) { if r.TryDecodeAsNil() { - yyv3683[yyj3683] = ReplicationController{} + yyv3702[yyj3702] = ReplicationController{} } else { - yyv3686 := &yyv3683[yyj3683] - yyv3686.CodecDecodeSelf(d) + yyv3705 := &yyv3702[yyj3702] + yyv3705.CodecDecodeSelf(d) } } else { @@ -46238,17 +46504,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3683 < len(yyv3683) { - yyv3683 = yyv3683[:yyj3683] - yyc3683 = true - } else if yyj3683 == 0 && yyv3683 == nil { - yyv3683 = []ReplicationController{} - yyc3683 = true + if yyj3702 < len(yyv3702) { + yyv3702 = yyv3702[:yyj3702] + yyc3702 = true + } else if yyj3702 == 0 && yyv3702 == nil { + yyv3702 = []ReplicationController{} + yyc3702 = true } } - yyh3683.End() - if yyc3683 { - *v = yyv3683 + yyh3702.End() + if yyc3702 { + *v = yyv3702 } } @@ -46257,10 +46523,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3687 := range v { + for _, yyv3706 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3688 := &yyv3687 - yy3688.CodecEncodeSelf(e) + yy3707 := &yyv3706 + yy3707.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46270,83 +46536,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3689 := *v - yyh3689, yyl3689 := z.DecSliceHelperStart() - var yyc3689 bool - if yyl3689 == 0 { - if yyv3689 == nil { - yyv3689 = []Service{} - yyc3689 = true - } else if len(yyv3689) != 0 { - yyv3689 = yyv3689[:0] - yyc3689 = true + yyv3708 := *v + yyh3708, yyl3708 := z.DecSliceHelperStart() + var yyc3708 bool + if yyl3708 == 0 { + if yyv3708 == nil { + yyv3708 = []Service{} + yyc3708 = true + } else if len(yyv3708) != 0 { + yyv3708 = yyv3708[:0] + yyc3708 = true } - } else if yyl3689 > 0 { - var yyrr3689, yyrl3689 int - var yyrt3689 bool - if yyl3689 > cap(yyv3689) { + } else if yyl3708 > 0 { + var yyrr3708, yyrl3708 int + var yyrt3708 bool + if yyl3708 > cap(yyv3708) { - yyrg3689 := len(yyv3689) > 0 - yyv23689 := yyv3689 - yyrl3689, yyrt3689 = z.DecInferLen(yyl3689, z.DecBasicHandle().MaxInitLen, 336) - if yyrt3689 { - if yyrl3689 <= cap(yyv3689) { - yyv3689 = yyv3689[:yyrl3689] + yyrg3708 := len(yyv3708) > 0 + yyv23708 := yyv3708 + yyrl3708, yyrt3708 = z.DecInferLen(yyl3708, z.DecBasicHandle().MaxInitLen, 336) + if yyrt3708 { + if yyrl3708 <= cap(yyv3708) { + yyv3708 = yyv3708[:yyrl3708] } else { - yyv3689 = make([]Service, yyrl3689) + yyv3708 = make([]Service, yyrl3708) } } else { - yyv3689 = make([]Service, yyrl3689) + yyv3708 = make([]Service, yyrl3708) } - yyc3689 = true - yyrr3689 = len(yyv3689) - if yyrg3689 { - copy(yyv3689, yyv23689) + yyc3708 = true + yyrr3708 = len(yyv3708) + if yyrg3708 { + copy(yyv3708, yyv23708) } - } else if yyl3689 != len(yyv3689) { - yyv3689 = yyv3689[:yyl3689] - yyc3689 = true + } else if yyl3708 != len(yyv3708) { + yyv3708 = yyv3708[:yyl3708] + yyc3708 = true } - yyj3689 := 0 - for ; yyj3689 < yyrr3689; yyj3689++ { - yyh3689.ElemContainerState(yyj3689) + yyj3708 := 0 + for ; yyj3708 < yyrr3708; yyj3708++ { + yyh3708.ElemContainerState(yyj3708) if r.TryDecodeAsNil() { - yyv3689[yyj3689] = Service{} + yyv3708[yyj3708] = Service{} } else { - yyv3690 := &yyv3689[yyj3689] - yyv3690.CodecDecodeSelf(d) + yyv3709 := &yyv3708[yyj3708] + yyv3709.CodecDecodeSelf(d) } } - if yyrt3689 { - for ; yyj3689 < yyl3689; yyj3689++ { - yyv3689 = append(yyv3689, Service{}) - yyh3689.ElemContainerState(yyj3689) + if yyrt3708 { + for ; yyj3708 < yyl3708; yyj3708++ { + yyv3708 = append(yyv3708, Service{}) + yyh3708.ElemContainerState(yyj3708) if r.TryDecodeAsNil() { - yyv3689[yyj3689] = Service{} + yyv3708[yyj3708] = Service{} } else { - yyv3691 := &yyv3689[yyj3689] - yyv3691.CodecDecodeSelf(d) + yyv3710 := &yyv3708[yyj3708] + yyv3710.CodecDecodeSelf(d) } } } } else { - yyj3689 := 0 - for ; !r.CheckBreak(); yyj3689++ { + yyj3708 := 0 + for ; !r.CheckBreak(); yyj3708++ { - if yyj3689 >= len(yyv3689) { - yyv3689 = append(yyv3689, Service{}) // var yyz3689 Service - yyc3689 = true + if yyj3708 >= len(yyv3708) { + yyv3708 = append(yyv3708, Service{}) // var yyz3708 Service + yyc3708 = true } - yyh3689.ElemContainerState(yyj3689) - if yyj3689 < len(yyv3689) { + yyh3708.ElemContainerState(yyj3708) + if yyj3708 < len(yyv3708) { if r.TryDecodeAsNil() { - yyv3689[yyj3689] = Service{} + yyv3708[yyj3708] = Service{} } else { - yyv3692 := &yyv3689[yyj3689] - yyv3692.CodecDecodeSelf(d) + yyv3711 := &yyv3708[yyj3708] + yyv3711.CodecDecodeSelf(d) } } else { @@ -46354,17 +46620,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3689 < len(yyv3689) { - yyv3689 = yyv3689[:yyj3689] - yyc3689 = true - } else if yyj3689 == 0 && yyv3689 == nil { - yyv3689 = []Service{} - yyc3689 = true + if yyj3708 < len(yyv3708) { + yyv3708 = yyv3708[:yyj3708] + yyc3708 = true + } else if yyj3708 == 0 && yyv3708 == nil { + yyv3708 = []Service{} + yyc3708 = true } } - yyh3689.End() - if yyc3689 { - *v = yyv3689 + yyh3708.End() + if yyc3708 { + *v = yyv3708 } } @@ -46373,10 +46639,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3693 := range v { + for _, yyv3712 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3694 := &yyv3693 - yy3694.CodecEncodeSelf(e) + yy3713 := &yyv3712 + yy3713.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46386,83 +46652,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3695 := *v - yyh3695, yyl3695 := z.DecSliceHelperStart() - var yyc3695 bool - if yyl3695 == 0 { - if yyv3695 == nil { - yyv3695 = []LoadBalancerIngress{} - yyc3695 = true - } else if len(yyv3695) != 0 { - yyv3695 = yyv3695[:0] - yyc3695 = true + yyv3714 := *v + yyh3714, yyl3714 := z.DecSliceHelperStart() + var yyc3714 bool + if yyl3714 == 0 { + if yyv3714 == nil { + yyv3714 = []LoadBalancerIngress{} + yyc3714 = true + } else if len(yyv3714) != 0 { + yyv3714 = yyv3714[:0] + yyc3714 = true } - } else if yyl3695 > 0 { - var yyrr3695, yyrl3695 int - var yyrt3695 bool - if yyl3695 > cap(yyv3695) { + } else if yyl3714 > 0 { + var yyrr3714, yyrl3714 int + var yyrt3714 bool + if yyl3714 > cap(yyv3714) { - yyrg3695 := len(yyv3695) > 0 - yyv23695 := yyv3695 - yyrl3695, yyrt3695 = z.DecInferLen(yyl3695, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3695 { - if yyrl3695 <= cap(yyv3695) { - yyv3695 = yyv3695[:yyrl3695] + yyrg3714 := len(yyv3714) > 0 + yyv23714 := yyv3714 + yyrl3714, yyrt3714 = z.DecInferLen(yyl3714, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3714 { + if yyrl3714 <= cap(yyv3714) { + yyv3714 = yyv3714[:yyrl3714] } else { - yyv3695 = make([]LoadBalancerIngress, yyrl3695) + yyv3714 = make([]LoadBalancerIngress, yyrl3714) } } else { - yyv3695 = make([]LoadBalancerIngress, yyrl3695) + yyv3714 = make([]LoadBalancerIngress, yyrl3714) } - yyc3695 = true - yyrr3695 = len(yyv3695) - if yyrg3695 { - copy(yyv3695, yyv23695) + yyc3714 = true + yyrr3714 = len(yyv3714) + if yyrg3714 { + copy(yyv3714, yyv23714) } - } else if yyl3695 != len(yyv3695) { - yyv3695 = yyv3695[:yyl3695] - yyc3695 = true + } else if yyl3714 != len(yyv3714) { + yyv3714 = yyv3714[:yyl3714] + yyc3714 = true } - yyj3695 := 0 - for ; yyj3695 < yyrr3695; yyj3695++ { - yyh3695.ElemContainerState(yyj3695) + yyj3714 := 0 + for ; yyj3714 < yyrr3714; yyj3714++ { + yyh3714.ElemContainerState(yyj3714) if r.TryDecodeAsNil() { - yyv3695[yyj3695] = LoadBalancerIngress{} + yyv3714[yyj3714] = LoadBalancerIngress{} } else { - yyv3696 := &yyv3695[yyj3695] - yyv3696.CodecDecodeSelf(d) + yyv3715 := &yyv3714[yyj3714] + yyv3715.CodecDecodeSelf(d) } } - if yyrt3695 { - for ; yyj3695 < yyl3695; yyj3695++ { - yyv3695 = append(yyv3695, LoadBalancerIngress{}) - yyh3695.ElemContainerState(yyj3695) + if yyrt3714 { + for ; yyj3714 < yyl3714; yyj3714++ { + yyv3714 = append(yyv3714, LoadBalancerIngress{}) + yyh3714.ElemContainerState(yyj3714) if r.TryDecodeAsNil() { - yyv3695[yyj3695] = LoadBalancerIngress{} + yyv3714[yyj3714] = LoadBalancerIngress{} } else { - yyv3697 := &yyv3695[yyj3695] - yyv3697.CodecDecodeSelf(d) + yyv3716 := &yyv3714[yyj3714] + yyv3716.CodecDecodeSelf(d) } } } } else { - yyj3695 := 0 - for ; !r.CheckBreak(); yyj3695++ { + yyj3714 := 0 + for ; !r.CheckBreak(); yyj3714++ { - if yyj3695 >= len(yyv3695) { - yyv3695 = append(yyv3695, LoadBalancerIngress{}) // var yyz3695 LoadBalancerIngress - yyc3695 = true + if yyj3714 >= len(yyv3714) { + yyv3714 = append(yyv3714, LoadBalancerIngress{}) // var yyz3714 LoadBalancerIngress + yyc3714 = true } - yyh3695.ElemContainerState(yyj3695) - if yyj3695 < len(yyv3695) { + yyh3714.ElemContainerState(yyj3714) + if yyj3714 < len(yyv3714) { if r.TryDecodeAsNil() { - yyv3695[yyj3695] = LoadBalancerIngress{} + yyv3714[yyj3714] = LoadBalancerIngress{} } else { - yyv3698 := &yyv3695[yyj3695] - yyv3698.CodecDecodeSelf(d) + yyv3717 := &yyv3714[yyj3714] + yyv3717.CodecDecodeSelf(d) } } else { @@ -46470,17 +46736,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3695 < len(yyv3695) { - yyv3695 = yyv3695[:yyj3695] - yyc3695 = true - } else if yyj3695 == 0 && yyv3695 == nil { - yyv3695 = []LoadBalancerIngress{} - yyc3695 = true + if yyj3714 < len(yyv3714) { + yyv3714 = yyv3714[:yyj3714] + yyc3714 = true + } else if yyj3714 == 0 && yyv3714 == nil { + yyv3714 = []LoadBalancerIngress{} + yyc3714 = true } } - yyh3695.End() - if yyc3695 { - *v = yyv3695 + yyh3714.End() + if yyc3714 { + *v = yyv3714 } } @@ -46489,10 +46755,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3699 := range v { + for _, yyv3718 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3700 := &yyv3699 - yy3700.CodecEncodeSelf(e) + yy3719 := &yyv3718 + yy3719.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46502,83 +46768,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3701 := *v - yyh3701, yyl3701 := z.DecSliceHelperStart() - var yyc3701 bool - if yyl3701 == 0 { - if yyv3701 == nil { - yyv3701 = []ServicePort{} - yyc3701 = true - } else if len(yyv3701) != 0 { - yyv3701 = yyv3701[:0] - yyc3701 = true + yyv3720 := *v + yyh3720, yyl3720 := z.DecSliceHelperStart() + var yyc3720 bool + if yyl3720 == 0 { + if yyv3720 == nil { + yyv3720 = []ServicePort{} + yyc3720 = true + } else if len(yyv3720) != 0 { + yyv3720 = yyv3720[:0] + yyc3720 = true } - } else if yyl3701 > 0 { - var yyrr3701, yyrl3701 int - var yyrt3701 bool - if yyl3701 > cap(yyv3701) { + } else if yyl3720 > 0 { + var yyrr3720, yyrl3720 int + var yyrt3720 bool + if yyl3720 > cap(yyv3720) { - yyrg3701 := len(yyv3701) > 0 - yyv23701 := yyv3701 - yyrl3701, yyrt3701 = z.DecInferLen(yyl3701, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3701 { - if yyrl3701 <= cap(yyv3701) { - yyv3701 = yyv3701[:yyrl3701] + yyrg3720 := len(yyv3720) > 0 + yyv23720 := yyv3720 + yyrl3720, yyrt3720 = z.DecInferLen(yyl3720, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3720 { + if yyrl3720 <= cap(yyv3720) { + yyv3720 = yyv3720[:yyrl3720] } else { - yyv3701 = make([]ServicePort, yyrl3701) + yyv3720 = make([]ServicePort, yyrl3720) } } else { - yyv3701 = make([]ServicePort, yyrl3701) + yyv3720 = make([]ServicePort, yyrl3720) } - yyc3701 = true - yyrr3701 = len(yyv3701) - if yyrg3701 { - copy(yyv3701, yyv23701) + yyc3720 = true + yyrr3720 = len(yyv3720) + if yyrg3720 { + copy(yyv3720, yyv23720) } - } else if yyl3701 != len(yyv3701) { - yyv3701 = yyv3701[:yyl3701] - yyc3701 = true + } else if yyl3720 != len(yyv3720) { + yyv3720 = yyv3720[:yyl3720] + yyc3720 = true } - yyj3701 := 0 - for ; yyj3701 < yyrr3701; yyj3701++ { - yyh3701.ElemContainerState(yyj3701) + yyj3720 := 0 + for ; yyj3720 < yyrr3720; yyj3720++ { + yyh3720.ElemContainerState(yyj3720) if r.TryDecodeAsNil() { - yyv3701[yyj3701] = ServicePort{} + yyv3720[yyj3720] = ServicePort{} } else { - yyv3702 := &yyv3701[yyj3701] - yyv3702.CodecDecodeSelf(d) + yyv3721 := &yyv3720[yyj3720] + yyv3721.CodecDecodeSelf(d) } } - if yyrt3701 { - for ; yyj3701 < yyl3701; yyj3701++ { - yyv3701 = append(yyv3701, ServicePort{}) - yyh3701.ElemContainerState(yyj3701) + if yyrt3720 { + for ; yyj3720 < yyl3720; yyj3720++ { + yyv3720 = append(yyv3720, ServicePort{}) + yyh3720.ElemContainerState(yyj3720) if r.TryDecodeAsNil() { - yyv3701[yyj3701] = ServicePort{} + yyv3720[yyj3720] = ServicePort{} } else { - yyv3703 := &yyv3701[yyj3701] - yyv3703.CodecDecodeSelf(d) + yyv3722 := &yyv3720[yyj3720] + yyv3722.CodecDecodeSelf(d) } } } } else { - yyj3701 := 0 - for ; !r.CheckBreak(); yyj3701++ { + yyj3720 := 0 + for ; !r.CheckBreak(); yyj3720++ { - if yyj3701 >= len(yyv3701) { - yyv3701 = append(yyv3701, ServicePort{}) // var yyz3701 ServicePort - yyc3701 = true + if yyj3720 >= len(yyv3720) { + yyv3720 = append(yyv3720, ServicePort{}) // var yyz3720 ServicePort + yyc3720 = true } - yyh3701.ElemContainerState(yyj3701) - if yyj3701 < len(yyv3701) { + yyh3720.ElemContainerState(yyj3720) + if yyj3720 < len(yyv3720) { if r.TryDecodeAsNil() { - yyv3701[yyj3701] = ServicePort{} + yyv3720[yyj3720] = ServicePort{} } else { - yyv3704 := &yyv3701[yyj3701] - yyv3704.CodecDecodeSelf(d) + yyv3723 := &yyv3720[yyj3720] + yyv3723.CodecDecodeSelf(d) } } else { @@ -46586,17 +46852,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3701 < len(yyv3701) { - yyv3701 = yyv3701[:yyj3701] - yyc3701 = true - } else if yyj3701 == 0 && yyv3701 == nil { - yyv3701 = []ServicePort{} - yyc3701 = true + if yyj3720 < len(yyv3720) { + yyv3720 = yyv3720[:yyj3720] + yyc3720 = true + } else if yyj3720 == 0 && yyv3720 == nil { + yyv3720 = []ServicePort{} + yyc3720 = true } } - yyh3701.End() - if yyc3701 { - *v = yyv3701 + yyh3720.End() + if yyc3720 { + *v = yyv3720 } } @@ -46605,10 +46871,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3705 := range v { + for _, yyv3724 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3706 := &yyv3705 - yy3706.CodecEncodeSelf(e) + yy3725 := &yyv3724 + yy3725.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46618,83 +46884,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3707 := *v - yyh3707, yyl3707 := z.DecSliceHelperStart() - var yyc3707 bool - if yyl3707 == 0 { - if yyv3707 == nil { - yyv3707 = []ObjectReference{} - yyc3707 = true - } else if len(yyv3707) != 0 { - yyv3707 = yyv3707[:0] - yyc3707 = true + yyv3726 := *v + yyh3726, yyl3726 := z.DecSliceHelperStart() + var yyc3726 bool + if yyl3726 == 0 { + if yyv3726 == nil { + yyv3726 = []ObjectReference{} + yyc3726 = true + } else if len(yyv3726) != 0 { + yyv3726 = yyv3726[:0] + yyc3726 = true } - } else if yyl3707 > 0 { - var yyrr3707, yyrl3707 int - var yyrt3707 bool - if yyl3707 > cap(yyv3707) { + } else if yyl3726 > 0 { + var yyrr3726, yyrl3726 int + var yyrt3726 bool + if yyl3726 > cap(yyv3726) { - yyrg3707 := len(yyv3707) > 0 - yyv23707 := yyv3707 - yyrl3707, yyrt3707 = z.DecInferLen(yyl3707, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3707 { - if yyrl3707 <= cap(yyv3707) { - yyv3707 = yyv3707[:yyrl3707] + yyrg3726 := len(yyv3726) > 0 + yyv23726 := yyv3726 + yyrl3726, yyrt3726 = z.DecInferLen(yyl3726, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3726 { + if yyrl3726 <= cap(yyv3726) { + yyv3726 = yyv3726[:yyrl3726] } else { - yyv3707 = make([]ObjectReference, yyrl3707) + yyv3726 = make([]ObjectReference, yyrl3726) } } else { - yyv3707 = make([]ObjectReference, yyrl3707) + yyv3726 = make([]ObjectReference, yyrl3726) } - yyc3707 = true - yyrr3707 = len(yyv3707) - if yyrg3707 { - copy(yyv3707, yyv23707) + yyc3726 = true + yyrr3726 = len(yyv3726) + if yyrg3726 { + copy(yyv3726, yyv23726) } - } else if yyl3707 != len(yyv3707) { - yyv3707 = yyv3707[:yyl3707] - yyc3707 = true + } else if yyl3726 != len(yyv3726) { + yyv3726 = yyv3726[:yyl3726] + yyc3726 = true } - yyj3707 := 0 - for ; yyj3707 < yyrr3707; yyj3707++ { - yyh3707.ElemContainerState(yyj3707) + yyj3726 := 0 + for ; yyj3726 < yyrr3726; yyj3726++ { + yyh3726.ElemContainerState(yyj3726) if r.TryDecodeAsNil() { - yyv3707[yyj3707] = ObjectReference{} + yyv3726[yyj3726] = ObjectReference{} } else { - yyv3708 := &yyv3707[yyj3707] - yyv3708.CodecDecodeSelf(d) + yyv3727 := &yyv3726[yyj3726] + yyv3727.CodecDecodeSelf(d) } } - if yyrt3707 { - for ; yyj3707 < yyl3707; yyj3707++ { - yyv3707 = append(yyv3707, ObjectReference{}) - yyh3707.ElemContainerState(yyj3707) + if yyrt3726 { + for ; yyj3726 < yyl3726; yyj3726++ { + yyv3726 = append(yyv3726, ObjectReference{}) + yyh3726.ElemContainerState(yyj3726) if r.TryDecodeAsNil() { - yyv3707[yyj3707] = ObjectReference{} + yyv3726[yyj3726] = ObjectReference{} } else { - yyv3709 := &yyv3707[yyj3707] - yyv3709.CodecDecodeSelf(d) + yyv3728 := &yyv3726[yyj3726] + yyv3728.CodecDecodeSelf(d) } } } } else { - yyj3707 := 0 - for ; !r.CheckBreak(); yyj3707++ { + yyj3726 := 0 + for ; !r.CheckBreak(); yyj3726++ { - if yyj3707 >= len(yyv3707) { - yyv3707 = append(yyv3707, ObjectReference{}) // var yyz3707 ObjectReference - yyc3707 = true + if yyj3726 >= len(yyv3726) { + yyv3726 = append(yyv3726, ObjectReference{}) // var yyz3726 ObjectReference + yyc3726 = true } - yyh3707.ElemContainerState(yyj3707) - if yyj3707 < len(yyv3707) { + yyh3726.ElemContainerState(yyj3726) + if yyj3726 < len(yyv3726) { if r.TryDecodeAsNil() { - yyv3707[yyj3707] = ObjectReference{} + yyv3726[yyj3726] = ObjectReference{} } else { - yyv3710 := &yyv3707[yyj3707] - yyv3710.CodecDecodeSelf(d) + yyv3729 := &yyv3726[yyj3726] + yyv3729.CodecDecodeSelf(d) } } else { @@ -46702,17 +46968,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3707 < len(yyv3707) { - yyv3707 = yyv3707[:yyj3707] - yyc3707 = true - } else if yyj3707 == 0 && yyv3707 == nil { - yyv3707 = []ObjectReference{} - yyc3707 = true + if yyj3726 < len(yyv3726) { + yyv3726 = yyv3726[:yyj3726] + yyc3726 = true + } else if yyj3726 == 0 && yyv3726 == nil { + yyv3726 = []ObjectReference{} + yyc3726 = true } } - yyh3707.End() - if yyc3707 { - *v = yyv3707 + yyh3726.End() + if yyc3726 { + *v = yyv3726 } } @@ -46721,10 +46987,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3711 := range v { + for _, yyv3730 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3712 := &yyv3711 - yy3712.CodecEncodeSelf(e) + yy3731 := &yyv3730 + yy3731.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46734,83 +47000,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3713 := *v - yyh3713, yyl3713 := z.DecSliceHelperStart() - var yyc3713 bool - if yyl3713 == 0 { - if yyv3713 == nil { - yyv3713 = []ServiceAccount{} - yyc3713 = true - } else if len(yyv3713) != 0 { - yyv3713 = yyv3713[:0] - yyc3713 = true + yyv3732 := *v + yyh3732, yyl3732 := z.DecSliceHelperStart() + var yyc3732 bool + if yyl3732 == 0 { + if yyv3732 == nil { + yyv3732 = []ServiceAccount{} + yyc3732 = true + } else if len(yyv3732) != 0 { + yyv3732 = yyv3732[:0] + yyc3732 = true } - } else if yyl3713 > 0 { - var yyrr3713, yyrl3713 int - var yyrt3713 bool - if yyl3713 > cap(yyv3713) { + } else if yyl3732 > 0 { + var yyrr3732, yyrl3732 int + var yyrt3732 bool + if yyl3732 > cap(yyv3732) { - yyrg3713 := len(yyv3713) > 0 - yyv23713 := yyv3713 - yyrl3713, yyrt3713 = z.DecInferLen(yyl3713, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3713 { - if yyrl3713 <= cap(yyv3713) { - yyv3713 = yyv3713[:yyrl3713] + yyrg3732 := len(yyv3732) > 0 + yyv23732 := yyv3732 + yyrl3732, yyrt3732 = z.DecInferLen(yyl3732, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3732 { + if yyrl3732 <= cap(yyv3732) { + yyv3732 = yyv3732[:yyrl3732] } else { - yyv3713 = make([]ServiceAccount, yyrl3713) + yyv3732 = make([]ServiceAccount, yyrl3732) } } else { - yyv3713 = make([]ServiceAccount, yyrl3713) + yyv3732 = make([]ServiceAccount, yyrl3732) } - yyc3713 = true - yyrr3713 = len(yyv3713) - if yyrg3713 { - copy(yyv3713, yyv23713) + yyc3732 = true + yyrr3732 = len(yyv3732) + if yyrg3732 { + copy(yyv3732, yyv23732) } - } else if yyl3713 != len(yyv3713) { - yyv3713 = yyv3713[:yyl3713] - yyc3713 = true + } else if yyl3732 != len(yyv3732) { + yyv3732 = yyv3732[:yyl3732] + yyc3732 = true } - yyj3713 := 0 - for ; yyj3713 < yyrr3713; yyj3713++ { - yyh3713.ElemContainerState(yyj3713) + yyj3732 := 0 + for ; yyj3732 < yyrr3732; yyj3732++ { + yyh3732.ElemContainerState(yyj3732) if r.TryDecodeAsNil() { - yyv3713[yyj3713] = ServiceAccount{} + yyv3732[yyj3732] = ServiceAccount{} } else { - yyv3714 := &yyv3713[yyj3713] - yyv3714.CodecDecodeSelf(d) + yyv3733 := &yyv3732[yyj3732] + yyv3733.CodecDecodeSelf(d) } } - if yyrt3713 { - for ; yyj3713 < yyl3713; yyj3713++ { - yyv3713 = append(yyv3713, ServiceAccount{}) - yyh3713.ElemContainerState(yyj3713) + if yyrt3732 { + for ; yyj3732 < yyl3732; yyj3732++ { + yyv3732 = append(yyv3732, ServiceAccount{}) + yyh3732.ElemContainerState(yyj3732) if r.TryDecodeAsNil() { - yyv3713[yyj3713] = ServiceAccount{} + yyv3732[yyj3732] = ServiceAccount{} } else { - yyv3715 := &yyv3713[yyj3713] - yyv3715.CodecDecodeSelf(d) + yyv3734 := &yyv3732[yyj3732] + yyv3734.CodecDecodeSelf(d) } } } } else { - yyj3713 := 0 - for ; !r.CheckBreak(); yyj3713++ { + yyj3732 := 0 + for ; !r.CheckBreak(); yyj3732++ { - if yyj3713 >= len(yyv3713) { - yyv3713 = append(yyv3713, ServiceAccount{}) // var yyz3713 ServiceAccount - yyc3713 = true + if yyj3732 >= len(yyv3732) { + yyv3732 = append(yyv3732, ServiceAccount{}) // var yyz3732 ServiceAccount + yyc3732 = true } - yyh3713.ElemContainerState(yyj3713) - if yyj3713 < len(yyv3713) { + yyh3732.ElemContainerState(yyj3732) + if yyj3732 < len(yyv3732) { if r.TryDecodeAsNil() { - yyv3713[yyj3713] = ServiceAccount{} + yyv3732[yyj3732] = ServiceAccount{} } else { - yyv3716 := &yyv3713[yyj3713] - yyv3716.CodecDecodeSelf(d) + yyv3735 := &yyv3732[yyj3732] + yyv3735.CodecDecodeSelf(d) } } else { @@ -46818,17 +47084,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3713 < len(yyv3713) { - yyv3713 = yyv3713[:yyj3713] - yyc3713 = true - } else if yyj3713 == 0 && yyv3713 == nil { - yyv3713 = []ServiceAccount{} - yyc3713 = true + if yyj3732 < len(yyv3732) { + yyv3732 = yyv3732[:yyj3732] + yyc3732 = true + } else if yyj3732 == 0 && yyv3732 == nil { + yyv3732 = []ServiceAccount{} + yyc3732 = true } } - yyh3713.End() - if yyc3713 { - *v = yyv3713 + yyh3732.End() + if yyc3732 { + *v = yyv3732 } } @@ -46837,10 +47103,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3717 := range v { + for _, yyv3736 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3718 := &yyv3717 - yy3718.CodecEncodeSelf(e) + yy3737 := &yyv3736 + yy3737.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46850,83 +47116,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3719 := *v - yyh3719, yyl3719 := z.DecSliceHelperStart() - var yyc3719 bool - if yyl3719 == 0 { - if yyv3719 == nil { - yyv3719 = []EndpointSubset{} - yyc3719 = true - } else if len(yyv3719) != 0 { - yyv3719 = yyv3719[:0] - yyc3719 = true + yyv3738 := *v + yyh3738, yyl3738 := z.DecSliceHelperStart() + var yyc3738 bool + if yyl3738 == 0 { + if yyv3738 == nil { + yyv3738 = []EndpointSubset{} + yyc3738 = true + } else if len(yyv3738) != 0 { + yyv3738 = yyv3738[:0] + yyc3738 = true } - } else if yyl3719 > 0 { - var yyrr3719, yyrl3719 int - var yyrt3719 bool - if yyl3719 > cap(yyv3719) { + } else if yyl3738 > 0 { + var yyrr3738, yyrl3738 int + var yyrt3738 bool + if yyl3738 > cap(yyv3738) { - yyrg3719 := len(yyv3719) > 0 - yyv23719 := yyv3719 - yyrl3719, yyrt3719 = z.DecInferLen(yyl3719, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3719 { - if yyrl3719 <= cap(yyv3719) { - yyv3719 = yyv3719[:yyrl3719] + yyrg3738 := len(yyv3738) > 0 + yyv23738 := yyv3738 + yyrl3738, yyrt3738 = z.DecInferLen(yyl3738, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3738 { + if yyrl3738 <= cap(yyv3738) { + yyv3738 = yyv3738[:yyrl3738] } else { - yyv3719 = make([]EndpointSubset, yyrl3719) + yyv3738 = make([]EndpointSubset, yyrl3738) } } else { - yyv3719 = make([]EndpointSubset, yyrl3719) + yyv3738 = make([]EndpointSubset, yyrl3738) } - yyc3719 = true - yyrr3719 = len(yyv3719) - if yyrg3719 { - copy(yyv3719, yyv23719) + yyc3738 = true + yyrr3738 = len(yyv3738) + if yyrg3738 { + copy(yyv3738, yyv23738) } - } else if yyl3719 != len(yyv3719) { - yyv3719 = yyv3719[:yyl3719] - yyc3719 = true + } else if yyl3738 != len(yyv3738) { + yyv3738 = yyv3738[:yyl3738] + yyc3738 = true } - yyj3719 := 0 - for ; yyj3719 < yyrr3719; yyj3719++ { - yyh3719.ElemContainerState(yyj3719) + yyj3738 := 0 + for ; yyj3738 < yyrr3738; yyj3738++ { + yyh3738.ElemContainerState(yyj3738) if r.TryDecodeAsNil() { - yyv3719[yyj3719] = EndpointSubset{} + yyv3738[yyj3738] = EndpointSubset{} } else { - yyv3720 := &yyv3719[yyj3719] - yyv3720.CodecDecodeSelf(d) + yyv3739 := &yyv3738[yyj3738] + yyv3739.CodecDecodeSelf(d) } } - if yyrt3719 { - for ; yyj3719 < yyl3719; yyj3719++ { - yyv3719 = append(yyv3719, EndpointSubset{}) - yyh3719.ElemContainerState(yyj3719) + if yyrt3738 { + for ; yyj3738 < yyl3738; yyj3738++ { + yyv3738 = append(yyv3738, EndpointSubset{}) + yyh3738.ElemContainerState(yyj3738) if r.TryDecodeAsNil() { - yyv3719[yyj3719] = EndpointSubset{} + yyv3738[yyj3738] = EndpointSubset{} } else { - yyv3721 := &yyv3719[yyj3719] - yyv3721.CodecDecodeSelf(d) + yyv3740 := &yyv3738[yyj3738] + yyv3740.CodecDecodeSelf(d) } } } } else { - yyj3719 := 0 - for ; !r.CheckBreak(); yyj3719++ { + yyj3738 := 0 + for ; !r.CheckBreak(); yyj3738++ { - if yyj3719 >= len(yyv3719) { - yyv3719 = append(yyv3719, EndpointSubset{}) // var yyz3719 EndpointSubset - yyc3719 = true + if yyj3738 >= len(yyv3738) { + yyv3738 = append(yyv3738, EndpointSubset{}) // var yyz3738 EndpointSubset + yyc3738 = true } - yyh3719.ElemContainerState(yyj3719) - if yyj3719 < len(yyv3719) { + yyh3738.ElemContainerState(yyj3738) + if yyj3738 < len(yyv3738) { if r.TryDecodeAsNil() { - yyv3719[yyj3719] = EndpointSubset{} + yyv3738[yyj3738] = EndpointSubset{} } else { - yyv3722 := &yyv3719[yyj3719] - yyv3722.CodecDecodeSelf(d) + yyv3741 := &yyv3738[yyj3738] + yyv3741.CodecDecodeSelf(d) } } else { @@ -46934,17 +47200,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3719 < len(yyv3719) { - yyv3719 = yyv3719[:yyj3719] - yyc3719 = true - } else if yyj3719 == 0 && yyv3719 == nil { - yyv3719 = []EndpointSubset{} - yyc3719 = true + if yyj3738 < len(yyv3738) { + yyv3738 = yyv3738[:yyj3738] + yyc3738 = true + } else if yyj3738 == 0 && yyv3738 == nil { + yyv3738 = []EndpointSubset{} + yyc3738 = true } } - yyh3719.End() - if yyc3719 { - *v = yyv3719 + yyh3738.End() + if yyc3738 { + *v = yyv3738 } } @@ -46953,10 +47219,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3723 := range v { + for _, yyv3742 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3724 := &yyv3723 - yy3724.CodecEncodeSelf(e) + yy3743 := &yyv3742 + yy3743.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46966,83 +47232,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3725 := *v - yyh3725, yyl3725 := z.DecSliceHelperStart() - var yyc3725 bool - if yyl3725 == 0 { - if yyv3725 == nil { - yyv3725 = []EndpointAddress{} - yyc3725 = true - } else if len(yyv3725) != 0 { - yyv3725 = yyv3725[:0] - yyc3725 = true + yyv3744 := *v + yyh3744, yyl3744 := z.DecSliceHelperStart() + var yyc3744 bool + if yyl3744 == 0 { + if yyv3744 == nil { + yyv3744 = []EndpointAddress{} + yyc3744 = true + } else if len(yyv3744) != 0 { + yyv3744 = yyv3744[:0] + yyc3744 = true } - } else if yyl3725 > 0 { - var yyrr3725, yyrl3725 int - var yyrt3725 bool - if yyl3725 > cap(yyv3725) { + } else if yyl3744 > 0 { + var yyrr3744, yyrl3744 int + var yyrt3744 bool + if yyl3744 > cap(yyv3744) { - yyrg3725 := len(yyv3725) > 0 - yyv23725 := yyv3725 - yyrl3725, yyrt3725 = z.DecInferLen(yyl3725, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3725 { - if yyrl3725 <= cap(yyv3725) { - yyv3725 = yyv3725[:yyrl3725] + yyrg3744 := len(yyv3744) > 0 + yyv23744 := yyv3744 + yyrl3744, yyrt3744 = z.DecInferLen(yyl3744, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3744 { + if yyrl3744 <= cap(yyv3744) { + yyv3744 = yyv3744[:yyrl3744] } else { - yyv3725 = make([]EndpointAddress, yyrl3725) + yyv3744 = make([]EndpointAddress, yyrl3744) } } else { - yyv3725 = make([]EndpointAddress, yyrl3725) + yyv3744 = make([]EndpointAddress, yyrl3744) } - yyc3725 = true - yyrr3725 = len(yyv3725) - if yyrg3725 { - copy(yyv3725, yyv23725) + yyc3744 = true + yyrr3744 = len(yyv3744) + if yyrg3744 { + copy(yyv3744, yyv23744) } - } else if yyl3725 != len(yyv3725) { - yyv3725 = yyv3725[:yyl3725] - yyc3725 = true + } else if yyl3744 != len(yyv3744) { + yyv3744 = yyv3744[:yyl3744] + yyc3744 = true } - yyj3725 := 0 - for ; yyj3725 < yyrr3725; yyj3725++ { - yyh3725.ElemContainerState(yyj3725) + yyj3744 := 0 + for ; yyj3744 < yyrr3744; yyj3744++ { + yyh3744.ElemContainerState(yyj3744) if r.TryDecodeAsNil() { - yyv3725[yyj3725] = EndpointAddress{} + yyv3744[yyj3744] = EndpointAddress{} } else { - yyv3726 := &yyv3725[yyj3725] - yyv3726.CodecDecodeSelf(d) + yyv3745 := &yyv3744[yyj3744] + yyv3745.CodecDecodeSelf(d) } } - if yyrt3725 { - for ; yyj3725 < yyl3725; yyj3725++ { - yyv3725 = append(yyv3725, EndpointAddress{}) - yyh3725.ElemContainerState(yyj3725) + if yyrt3744 { + for ; yyj3744 < yyl3744; yyj3744++ { + yyv3744 = append(yyv3744, EndpointAddress{}) + yyh3744.ElemContainerState(yyj3744) if r.TryDecodeAsNil() { - yyv3725[yyj3725] = EndpointAddress{} + yyv3744[yyj3744] = EndpointAddress{} } else { - yyv3727 := &yyv3725[yyj3725] - yyv3727.CodecDecodeSelf(d) + yyv3746 := &yyv3744[yyj3744] + yyv3746.CodecDecodeSelf(d) } } } } else { - yyj3725 := 0 - for ; !r.CheckBreak(); yyj3725++ { + yyj3744 := 0 + for ; !r.CheckBreak(); yyj3744++ { - if yyj3725 >= len(yyv3725) { - yyv3725 = append(yyv3725, EndpointAddress{}) // var yyz3725 EndpointAddress - yyc3725 = true + if yyj3744 >= len(yyv3744) { + yyv3744 = append(yyv3744, EndpointAddress{}) // var yyz3744 EndpointAddress + yyc3744 = true } - yyh3725.ElemContainerState(yyj3725) - if yyj3725 < len(yyv3725) { + yyh3744.ElemContainerState(yyj3744) + if yyj3744 < len(yyv3744) { if r.TryDecodeAsNil() { - yyv3725[yyj3725] = EndpointAddress{} + yyv3744[yyj3744] = EndpointAddress{} } else { - yyv3728 := &yyv3725[yyj3725] - yyv3728.CodecDecodeSelf(d) + yyv3747 := &yyv3744[yyj3744] + yyv3747.CodecDecodeSelf(d) } } else { @@ -47050,17 +47316,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3725 < len(yyv3725) { - yyv3725 = yyv3725[:yyj3725] - yyc3725 = true - } else if yyj3725 == 0 && yyv3725 == nil { - yyv3725 = []EndpointAddress{} - yyc3725 = true + if yyj3744 < len(yyv3744) { + yyv3744 = yyv3744[:yyj3744] + yyc3744 = true + } else if yyj3744 == 0 && yyv3744 == nil { + yyv3744 = []EndpointAddress{} + yyc3744 = true } } - yyh3725.End() - if yyc3725 { - *v = yyv3725 + yyh3744.End() + if yyc3744 { + *v = yyv3744 } } @@ -47069,10 +47335,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3729 := range v { + for _, yyv3748 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3730 := &yyv3729 - yy3730.CodecEncodeSelf(e) + yy3749 := &yyv3748 + yy3749.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47082,83 +47348,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3731 := *v - yyh3731, yyl3731 := z.DecSliceHelperStart() - var yyc3731 bool - if yyl3731 == 0 { - if yyv3731 == nil { - yyv3731 = []EndpointPort{} - yyc3731 = true - } else if len(yyv3731) != 0 { - yyv3731 = yyv3731[:0] - yyc3731 = true + yyv3750 := *v + yyh3750, yyl3750 := z.DecSliceHelperStart() + var yyc3750 bool + if yyl3750 == 0 { + if yyv3750 == nil { + yyv3750 = []EndpointPort{} + yyc3750 = true + } else if len(yyv3750) != 0 { + yyv3750 = yyv3750[:0] + yyc3750 = true } - } else if yyl3731 > 0 { - var yyrr3731, yyrl3731 int - var yyrt3731 bool - if yyl3731 > cap(yyv3731) { + } else if yyl3750 > 0 { + var yyrr3750, yyrl3750 int + var yyrt3750 bool + if yyl3750 > cap(yyv3750) { - yyrg3731 := len(yyv3731) > 0 - yyv23731 := yyv3731 - yyrl3731, yyrt3731 = z.DecInferLen(yyl3731, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3731 { - if yyrl3731 <= cap(yyv3731) { - yyv3731 = yyv3731[:yyrl3731] + yyrg3750 := len(yyv3750) > 0 + yyv23750 := yyv3750 + yyrl3750, yyrt3750 = z.DecInferLen(yyl3750, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3750 { + if yyrl3750 <= cap(yyv3750) { + yyv3750 = yyv3750[:yyrl3750] } else { - yyv3731 = make([]EndpointPort, yyrl3731) + yyv3750 = make([]EndpointPort, yyrl3750) } } else { - yyv3731 = make([]EndpointPort, yyrl3731) + yyv3750 = make([]EndpointPort, yyrl3750) } - yyc3731 = true - yyrr3731 = len(yyv3731) - if yyrg3731 { - copy(yyv3731, yyv23731) + yyc3750 = true + yyrr3750 = len(yyv3750) + if yyrg3750 { + copy(yyv3750, yyv23750) } - } else if yyl3731 != len(yyv3731) { - yyv3731 = yyv3731[:yyl3731] - yyc3731 = true + } else if yyl3750 != len(yyv3750) { + yyv3750 = yyv3750[:yyl3750] + yyc3750 = true } - yyj3731 := 0 - for ; yyj3731 < yyrr3731; yyj3731++ { - yyh3731.ElemContainerState(yyj3731) + yyj3750 := 0 + for ; yyj3750 < yyrr3750; yyj3750++ { + yyh3750.ElemContainerState(yyj3750) if r.TryDecodeAsNil() { - yyv3731[yyj3731] = EndpointPort{} + yyv3750[yyj3750] = EndpointPort{} } else { - yyv3732 := &yyv3731[yyj3731] - yyv3732.CodecDecodeSelf(d) + yyv3751 := &yyv3750[yyj3750] + yyv3751.CodecDecodeSelf(d) } } - if yyrt3731 { - for ; yyj3731 < yyl3731; yyj3731++ { - yyv3731 = append(yyv3731, EndpointPort{}) - yyh3731.ElemContainerState(yyj3731) + if yyrt3750 { + for ; yyj3750 < yyl3750; yyj3750++ { + yyv3750 = append(yyv3750, EndpointPort{}) + yyh3750.ElemContainerState(yyj3750) if r.TryDecodeAsNil() { - yyv3731[yyj3731] = EndpointPort{} + yyv3750[yyj3750] = EndpointPort{} } else { - yyv3733 := &yyv3731[yyj3731] - yyv3733.CodecDecodeSelf(d) + yyv3752 := &yyv3750[yyj3750] + yyv3752.CodecDecodeSelf(d) } } } } else { - yyj3731 := 0 - for ; !r.CheckBreak(); yyj3731++ { + yyj3750 := 0 + for ; !r.CheckBreak(); yyj3750++ { - if yyj3731 >= len(yyv3731) { - yyv3731 = append(yyv3731, EndpointPort{}) // var yyz3731 EndpointPort - yyc3731 = true + if yyj3750 >= len(yyv3750) { + yyv3750 = append(yyv3750, EndpointPort{}) // var yyz3750 EndpointPort + yyc3750 = true } - yyh3731.ElemContainerState(yyj3731) - if yyj3731 < len(yyv3731) { + yyh3750.ElemContainerState(yyj3750) + if yyj3750 < len(yyv3750) { if r.TryDecodeAsNil() { - yyv3731[yyj3731] = EndpointPort{} + yyv3750[yyj3750] = EndpointPort{} } else { - yyv3734 := &yyv3731[yyj3731] - yyv3734.CodecDecodeSelf(d) + yyv3753 := &yyv3750[yyj3750] + yyv3753.CodecDecodeSelf(d) } } else { @@ -47166,17 +47432,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3731 < len(yyv3731) { - yyv3731 = yyv3731[:yyj3731] - yyc3731 = true - } else if yyj3731 == 0 && yyv3731 == nil { - yyv3731 = []EndpointPort{} - yyc3731 = true + if yyj3750 < len(yyv3750) { + yyv3750 = yyv3750[:yyj3750] + yyc3750 = true + } else if yyj3750 == 0 && yyv3750 == nil { + yyv3750 = []EndpointPort{} + yyc3750 = true } } - yyh3731.End() - if yyc3731 { - *v = yyv3731 + yyh3750.End() + if yyc3750 { + *v = yyv3750 } } @@ -47185,10 +47451,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3735 := range v { + for _, yyv3754 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3736 := &yyv3735 - yy3736.CodecEncodeSelf(e) + yy3755 := &yyv3754 + yy3755.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47198,83 +47464,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3737 := *v - yyh3737, yyl3737 := z.DecSliceHelperStart() - var yyc3737 bool - if yyl3737 == 0 { - if yyv3737 == nil { - yyv3737 = []Endpoints{} - yyc3737 = true - } else if len(yyv3737) != 0 { - yyv3737 = yyv3737[:0] - yyc3737 = true + yyv3756 := *v + yyh3756, yyl3756 := z.DecSliceHelperStart() + var yyc3756 bool + if yyl3756 == 0 { + if yyv3756 == nil { + yyv3756 = []Endpoints{} + yyc3756 = true + } else if len(yyv3756) != 0 { + yyv3756 = yyv3756[:0] + yyc3756 = true } - } else if yyl3737 > 0 { - var yyrr3737, yyrl3737 int - var yyrt3737 bool - if yyl3737 > cap(yyv3737) { + } else if yyl3756 > 0 { + var yyrr3756, yyrl3756 int + var yyrt3756 bool + if yyl3756 > cap(yyv3756) { - yyrg3737 := len(yyv3737) > 0 - yyv23737 := yyv3737 - yyrl3737, yyrt3737 = z.DecInferLen(yyl3737, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3737 { - if yyrl3737 <= cap(yyv3737) { - yyv3737 = yyv3737[:yyrl3737] + yyrg3756 := len(yyv3756) > 0 + yyv23756 := yyv3756 + yyrl3756, yyrt3756 = z.DecInferLen(yyl3756, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3756 { + if yyrl3756 <= cap(yyv3756) { + yyv3756 = yyv3756[:yyrl3756] } else { - yyv3737 = make([]Endpoints, yyrl3737) + yyv3756 = make([]Endpoints, yyrl3756) } } else { - yyv3737 = make([]Endpoints, yyrl3737) + yyv3756 = make([]Endpoints, yyrl3756) } - yyc3737 = true - yyrr3737 = len(yyv3737) - if yyrg3737 { - copy(yyv3737, yyv23737) + yyc3756 = true + yyrr3756 = len(yyv3756) + if yyrg3756 { + copy(yyv3756, yyv23756) } - } else if yyl3737 != len(yyv3737) { - yyv3737 = yyv3737[:yyl3737] - yyc3737 = true + } else if yyl3756 != len(yyv3756) { + yyv3756 = yyv3756[:yyl3756] + yyc3756 = true } - yyj3737 := 0 - for ; yyj3737 < yyrr3737; yyj3737++ { - yyh3737.ElemContainerState(yyj3737) + yyj3756 := 0 + for ; yyj3756 < yyrr3756; yyj3756++ { + yyh3756.ElemContainerState(yyj3756) if r.TryDecodeAsNil() { - yyv3737[yyj3737] = Endpoints{} + yyv3756[yyj3756] = Endpoints{} } else { - yyv3738 := &yyv3737[yyj3737] - yyv3738.CodecDecodeSelf(d) + yyv3757 := &yyv3756[yyj3756] + yyv3757.CodecDecodeSelf(d) } } - if yyrt3737 { - for ; yyj3737 < yyl3737; yyj3737++ { - yyv3737 = append(yyv3737, Endpoints{}) - yyh3737.ElemContainerState(yyj3737) + if yyrt3756 { + for ; yyj3756 < yyl3756; yyj3756++ { + yyv3756 = append(yyv3756, Endpoints{}) + yyh3756.ElemContainerState(yyj3756) if r.TryDecodeAsNil() { - yyv3737[yyj3737] = Endpoints{} + yyv3756[yyj3756] = Endpoints{} } else { - yyv3739 := &yyv3737[yyj3737] - yyv3739.CodecDecodeSelf(d) + yyv3758 := &yyv3756[yyj3756] + yyv3758.CodecDecodeSelf(d) } } } } else { - yyj3737 := 0 - for ; !r.CheckBreak(); yyj3737++ { + yyj3756 := 0 + for ; !r.CheckBreak(); yyj3756++ { - if yyj3737 >= len(yyv3737) { - yyv3737 = append(yyv3737, Endpoints{}) // var yyz3737 Endpoints - yyc3737 = true + if yyj3756 >= len(yyv3756) { + yyv3756 = append(yyv3756, Endpoints{}) // var yyz3756 Endpoints + yyc3756 = true } - yyh3737.ElemContainerState(yyj3737) - if yyj3737 < len(yyv3737) { + yyh3756.ElemContainerState(yyj3756) + if yyj3756 < len(yyv3756) { if r.TryDecodeAsNil() { - yyv3737[yyj3737] = Endpoints{} + yyv3756[yyj3756] = Endpoints{} } else { - yyv3740 := &yyv3737[yyj3737] - yyv3740.CodecDecodeSelf(d) + yyv3759 := &yyv3756[yyj3756] + yyv3759.CodecDecodeSelf(d) } } else { @@ -47282,17 +47548,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3737 < len(yyv3737) { - yyv3737 = yyv3737[:yyj3737] - yyc3737 = true - } else if yyj3737 == 0 && yyv3737 == nil { - yyv3737 = []Endpoints{} - yyc3737 = true + if yyj3756 < len(yyv3756) { + yyv3756 = yyv3756[:yyj3756] + yyc3756 = true + } else if yyj3756 == 0 && yyv3756 == nil { + yyv3756 = []Endpoints{} + yyc3756 = true } } - yyh3737.End() - if yyc3737 { - *v = yyv3737 + yyh3756.End() + if yyc3756 { + *v = yyv3756 } } @@ -47301,10 +47567,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3741 := range v { + for _, yyv3760 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3742 := &yyv3741 - yy3742.CodecEncodeSelf(e) + yy3761 := &yyv3760 + yy3761.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47314,83 +47580,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3743 := *v - yyh3743, yyl3743 := z.DecSliceHelperStart() - var yyc3743 bool - if yyl3743 == 0 { - if yyv3743 == nil { - yyv3743 = []NodeCondition{} - yyc3743 = true - } else if len(yyv3743) != 0 { - yyv3743 = yyv3743[:0] - yyc3743 = true + yyv3762 := *v + yyh3762, yyl3762 := z.DecSliceHelperStart() + var yyc3762 bool + if yyl3762 == 0 { + if yyv3762 == nil { + yyv3762 = []NodeCondition{} + yyc3762 = true + } else if len(yyv3762) != 0 { + yyv3762 = yyv3762[:0] + yyc3762 = true } - } else if yyl3743 > 0 { - var yyrr3743, yyrl3743 int - var yyrt3743 bool - if yyl3743 > cap(yyv3743) { + } else if yyl3762 > 0 { + var yyrr3762, yyrl3762 int + var yyrt3762 bool + if yyl3762 > cap(yyv3762) { - yyrg3743 := len(yyv3743) > 0 - yyv23743 := yyv3743 - yyrl3743, yyrt3743 = z.DecInferLen(yyl3743, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3743 { - if yyrl3743 <= cap(yyv3743) { - yyv3743 = yyv3743[:yyrl3743] + yyrg3762 := len(yyv3762) > 0 + yyv23762 := yyv3762 + yyrl3762, yyrt3762 = z.DecInferLen(yyl3762, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3762 { + if yyrl3762 <= cap(yyv3762) { + yyv3762 = yyv3762[:yyrl3762] } else { - yyv3743 = make([]NodeCondition, yyrl3743) + yyv3762 = make([]NodeCondition, yyrl3762) } } else { - yyv3743 = make([]NodeCondition, yyrl3743) + yyv3762 = make([]NodeCondition, yyrl3762) } - yyc3743 = true - yyrr3743 = len(yyv3743) - if yyrg3743 { - copy(yyv3743, yyv23743) + yyc3762 = true + yyrr3762 = len(yyv3762) + if yyrg3762 { + copy(yyv3762, yyv23762) } - } else if yyl3743 != len(yyv3743) { - yyv3743 = yyv3743[:yyl3743] - yyc3743 = true + } else if yyl3762 != len(yyv3762) { + yyv3762 = yyv3762[:yyl3762] + yyc3762 = true } - yyj3743 := 0 - for ; yyj3743 < yyrr3743; yyj3743++ { - yyh3743.ElemContainerState(yyj3743) + yyj3762 := 0 + for ; yyj3762 < yyrr3762; yyj3762++ { + yyh3762.ElemContainerState(yyj3762) if r.TryDecodeAsNil() { - yyv3743[yyj3743] = NodeCondition{} + yyv3762[yyj3762] = NodeCondition{} } else { - yyv3744 := &yyv3743[yyj3743] - yyv3744.CodecDecodeSelf(d) + yyv3763 := &yyv3762[yyj3762] + yyv3763.CodecDecodeSelf(d) } } - if yyrt3743 { - for ; yyj3743 < yyl3743; yyj3743++ { - yyv3743 = append(yyv3743, NodeCondition{}) - yyh3743.ElemContainerState(yyj3743) + if yyrt3762 { + for ; yyj3762 < yyl3762; yyj3762++ { + yyv3762 = append(yyv3762, NodeCondition{}) + yyh3762.ElemContainerState(yyj3762) if r.TryDecodeAsNil() { - yyv3743[yyj3743] = NodeCondition{} + yyv3762[yyj3762] = NodeCondition{} } else { - yyv3745 := &yyv3743[yyj3743] - yyv3745.CodecDecodeSelf(d) + yyv3764 := &yyv3762[yyj3762] + yyv3764.CodecDecodeSelf(d) } } } } else { - yyj3743 := 0 - for ; !r.CheckBreak(); yyj3743++ { + yyj3762 := 0 + for ; !r.CheckBreak(); yyj3762++ { - if yyj3743 >= len(yyv3743) { - yyv3743 = append(yyv3743, NodeCondition{}) // var yyz3743 NodeCondition - yyc3743 = true + if yyj3762 >= len(yyv3762) { + yyv3762 = append(yyv3762, NodeCondition{}) // var yyz3762 NodeCondition + yyc3762 = true } - yyh3743.ElemContainerState(yyj3743) - if yyj3743 < len(yyv3743) { + yyh3762.ElemContainerState(yyj3762) + if yyj3762 < len(yyv3762) { if r.TryDecodeAsNil() { - yyv3743[yyj3743] = NodeCondition{} + yyv3762[yyj3762] = NodeCondition{} } else { - yyv3746 := &yyv3743[yyj3743] - yyv3746.CodecDecodeSelf(d) + yyv3765 := &yyv3762[yyj3762] + yyv3765.CodecDecodeSelf(d) } } else { @@ -47398,17 +47664,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3743 < len(yyv3743) { - yyv3743 = yyv3743[:yyj3743] - yyc3743 = true - } else if yyj3743 == 0 && yyv3743 == nil { - yyv3743 = []NodeCondition{} - yyc3743 = true + if yyj3762 < len(yyv3762) { + yyv3762 = yyv3762[:yyj3762] + yyc3762 = true + } else if yyj3762 == 0 && yyv3762 == nil { + yyv3762 = []NodeCondition{} + yyc3762 = true } } - yyh3743.End() - if yyc3743 { - *v = yyv3743 + yyh3762.End() + if yyc3762 { + *v = yyv3762 } } @@ -47417,10 +47683,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3747 := range v { + for _, yyv3766 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3748 := &yyv3747 - yy3748.CodecEncodeSelf(e) + yy3767 := &yyv3766 + yy3767.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47430,83 +47696,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3749 := *v - yyh3749, yyl3749 := z.DecSliceHelperStart() - var yyc3749 bool - if yyl3749 == 0 { - if yyv3749 == nil { - yyv3749 = []NodeAddress{} - yyc3749 = true - } else if len(yyv3749) != 0 { - yyv3749 = yyv3749[:0] - yyc3749 = true + yyv3768 := *v + yyh3768, yyl3768 := z.DecSliceHelperStart() + var yyc3768 bool + if yyl3768 == 0 { + if yyv3768 == nil { + yyv3768 = []NodeAddress{} + yyc3768 = true + } else if len(yyv3768) != 0 { + yyv3768 = yyv3768[:0] + yyc3768 = true } - } else if yyl3749 > 0 { - var yyrr3749, yyrl3749 int - var yyrt3749 bool - if yyl3749 > cap(yyv3749) { + } else if yyl3768 > 0 { + var yyrr3768, yyrl3768 int + var yyrt3768 bool + if yyl3768 > cap(yyv3768) { - yyrg3749 := len(yyv3749) > 0 - yyv23749 := yyv3749 - yyrl3749, yyrt3749 = z.DecInferLen(yyl3749, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3749 { - if yyrl3749 <= cap(yyv3749) { - yyv3749 = yyv3749[:yyrl3749] + yyrg3768 := len(yyv3768) > 0 + yyv23768 := yyv3768 + yyrl3768, yyrt3768 = z.DecInferLen(yyl3768, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3768 { + if yyrl3768 <= cap(yyv3768) { + yyv3768 = yyv3768[:yyrl3768] } else { - yyv3749 = make([]NodeAddress, yyrl3749) + yyv3768 = make([]NodeAddress, yyrl3768) } } else { - yyv3749 = make([]NodeAddress, yyrl3749) + yyv3768 = make([]NodeAddress, yyrl3768) } - yyc3749 = true - yyrr3749 = len(yyv3749) - if yyrg3749 { - copy(yyv3749, yyv23749) + yyc3768 = true + yyrr3768 = len(yyv3768) + if yyrg3768 { + copy(yyv3768, yyv23768) } - } else if yyl3749 != len(yyv3749) { - yyv3749 = yyv3749[:yyl3749] - yyc3749 = true + } else if yyl3768 != len(yyv3768) { + yyv3768 = yyv3768[:yyl3768] + yyc3768 = true } - yyj3749 := 0 - for ; yyj3749 < yyrr3749; yyj3749++ { - yyh3749.ElemContainerState(yyj3749) + yyj3768 := 0 + for ; yyj3768 < yyrr3768; yyj3768++ { + yyh3768.ElemContainerState(yyj3768) if r.TryDecodeAsNil() { - yyv3749[yyj3749] = NodeAddress{} + yyv3768[yyj3768] = NodeAddress{} } else { - yyv3750 := &yyv3749[yyj3749] - yyv3750.CodecDecodeSelf(d) + yyv3769 := &yyv3768[yyj3768] + yyv3769.CodecDecodeSelf(d) } } - if yyrt3749 { - for ; yyj3749 < yyl3749; yyj3749++ { - yyv3749 = append(yyv3749, NodeAddress{}) - yyh3749.ElemContainerState(yyj3749) + if yyrt3768 { + for ; yyj3768 < yyl3768; yyj3768++ { + yyv3768 = append(yyv3768, NodeAddress{}) + yyh3768.ElemContainerState(yyj3768) if r.TryDecodeAsNil() { - yyv3749[yyj3749] = NodeAddress{} + yyv3768[yyj3768] = NodeAddress{} } else { - yyv3751 := &yyv3749[yyj3749] - yyv3751.CodecDecodeSelf(d) + yyv3770 := &yyv3768[yyj3768] + yyv3770.CodecDecodeSelf(d) } } } } else { - yyj3749 := 0 - for ; !r.CheckBreak(); yyj3749++ { + yyj3768 := 0 + for ; !r.CheckBreak(); yyj3768++ { - if yyj3749 >= len(yyv3749) { - yyv3749 = append(yyv3749, NodeAddress{}) // var yyz3749 NodeAddress - yyc3749 = true + if yyj3768 >= len(yyv3768) { + yyv3768 = append(yyv3768, NodeAddress{}) // var yyz3768 NodeAddress + yyc3768 = true } - yyh3749.ElemContainerState(yyj3749) - if yyj3749 < len(yyv3749) { + yyh3768.ElemContainerState(yyj3768) + if yyj3768 < len(yyv3768) { if r.TryDecodeAsNil() { - yyv3749[yyj3749] = NodeAddress{} + yyv3768[yyj3768] = NodeAddress{} } else { - yyv3752 := &yyv3749[yyj3749] - yyv3752.CodecDecodeSelf(d) + yyv3771 := &yyv3768[yyj3768] + yyv3771.CodecDecodeSelf(d) } } else { @@ -47514,17 +47780,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3749 < len(yyv3749) { - yyv3749 = yyv3749[:yyj3749] - yyc3749 = true - } else if yyj3749 == 0 && yyv3749 == nil { - yyv3749 = []NodeAddress{} - yyc3749 = true + if yyj3768 < len(yyv3768) { + yyv3768 = yyv3768[:yyj3768] + yyc3768 = true + } else if yyj3768 == 0 && yyv3768 == nil { + yyv3768 = []NodeAddress{} + yyc3768 = true } } - yyh3749.End() - if yyc3749 { - *v = yyv3749 + yyh3768.End() + if yyc3768 { + *v = yyv3768 } } @@ -47533,10 +47799,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3753 := range v { + for _, yyv3772 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3754 := &yyv3753 - yy3754.CodecEncodeSelf(e) + yy3773 := &yyv3772 + yy3773.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47546,83 +47812,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3755 := *v - yyh3755, yyl3755 := z.DecSliceHelperStart() - var yyc3755 bool - if yyl3755 == 0 { - if yyv3755 == nil { - yyv3755 = []ContainerImage{} - yyc3755 = true - } else if len(yyv3755) != 0 { - yyv3755 = yyv3755[:0] - yyc3755 = true + yyv3774 := *v + yyh3774, yyl3774 := z.DecSliceHelperStart() + var yyc3774 bool + if yyl3774 == 0 { + if yyv3774 == nil { + yyv3774 = []ContainerImage{} + yyc3774 = true + } else if len(yyv3774) != 0 { + yyv3774 = yyv3774[:0] + yyc3774 = true } - } else if yyl3755 > 0 { - var yyrr3755, yyrl3755 int - var yyrt3755 bool - if yyl3755 > cap(yyv3755) { + } else if yyl3774 > 0 { + var yyrr3774, yyrl3774 int + var yyrt3774 bool + if yyl3774 > cap(yyv3774) { - yyrg3755 := len(yyv3755) > 0 - yyv23755 := yyv3755 - yyrl3755, yyrt3755 = z.DecInferLen(yyl3755, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3755 { - if yyrl3755 <= cap(yyv3755) { - yyv3755 = yyv3755[:yyrl3755] + yyrg3774 := len(yyv3774) > 0 + yyv23774 := yyv3774 + yyrl3774, yyrt3774 = z.DecInferLen(yyl3774, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3774 { + if yyrl3774 <= cap(yyv3774) { + yyv3774 = yyv3774[:yyrl3774] } else { - yyv3755 = make([]ContainerImage, yyrl3755) + yyv3774 = make([]ContainerImage, yyrl3774) } } else { - yyv3755 = make([]ContainerImage, yyrl3755) + yyv3774 = make([]ContainerImage, yyrl3774) } - yyc3755 = true - yyrr3755 = len(yyv3755) - if yyrg3755 { - copy(yyv3755, yyv23755) + yyc3774 = true + yyrr3774 = len(yyv3774) + if yyrg3774 { + copy(yyv3774, yyv23774) } - } else if yyl3755 != len(yyv3755) { - yyv3755 = yyv3755[:yyl3755] - yyc3755 = true + } else if yyl3774 != len(yyv3774) { + yyv3774 = yyv3774[:yyl3774] + yyc3774 = true } - yyj3755 := 0 - for ; yyj3755 < yyrr3755; yyj3755++ { - yyh3755.ElemContainerState(yyj3755) + yyj3774 := 0 + for ; yyj3774 < yyrr3774; yyj3774++ { + yyh3774.ElemContainerState(yyj3774) if r.TryDecodeAsNil() { - yyv3755[yyj3755] = ContainerImage{} + yyv3774[yyj3774] = ContainerImage{} } else { - yyv3756 := &yyv3755[yyj3755] - yyv3756.CodecDecodeSelf(d) + yyv3775 := &yyv3774[yyj3774] + yyv3775.CodecDecodeSelf(d) } } - if yyrt3755 { - for ; yyj3755 < yyl3755; yyj3755++ { - yyv3755 = append(yyv3755, ContainerImage{}) - yyh3755.ElemContainerState(yyj3755) + if yyrt3774 { + for ; yyj3774 < yyl3774; yyj3774++ { + yyv3774 = append(yyv3774, ContainerImage{}) + yyh3774.ElemContainerState(yyj3774) if r.TryDecodeAsNil() { - yyv3755[yyj3755] = ContainerImage{} + yyv3774[yyj3774] = ContainerImage{} } else { - yyv3757 := &yyv3755[yyj3755] - yyv3757.CodecDecodeSelf(d) + yyv3776 := &yyv3774[yyj3774] + yyv3776.CodecDecodeSelf(d) } } } } else { - yyj3755 := 0 - for ; !r.CheckBreak(); yyj3755++ { + yyj3774 := 0 + for ; !r.CheckBreak(); yyj3774++ { - if yyj3755 >= len(yyv3755) { - yyv3755 = append(yyv3755, ContainerImage{}) // var yyz3755 ContainerImage - yyc3755 = true + if yyj3774 >= len(yyv3774) { + yyv3774 = append(yyv3774, ContainerImage{}) // var yyz3774 ContainerImage + yyc3774 = true } - yyh3755.ElemContainerState(yyj3755) - if yyj3755 < len(yyv3755) { + yyh3774.ElemContainerState(yyj3774) + if yyj3774 < len(yyv3774) { if r.TryDecodeAsNil() { - yyv3755[yyj3755] = ContainerImage{} + yyv3774[yyj3774] = ContainerImage{} } else { - yyv3758 := &yyv3755[yyj3755] - yyv3758.CodecDecodeSelf(d) + yyv3777 := &yyv3774[yyj3774] + yyv3777.CodecDecodeSelf(d) } } else { @@ -47630,17 +47896,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj3755 < len(yyv3755) { - yyv3755 = yyv3755[:yyj3755] - yyc3755 = true - } else if yyj3755 == 0 && yyv3755 == nil { - yyv3755 = []ContainerImage{} - yyc3755 = true + if yyj3774 < len(yyv3774) { + yyv3774 = yyv3774[:yyj3774] + yyc3774 = true + } else if yyj3774 == 0 && yyv3774 == nil { + yyv3774 = []ContainerImage{} + yyc3774 = true } } - yyh3755.End() - if yyc3755 { - *v = yyv3755 + yyh3774.End() + if yyc3774 { + *v = yyv3774 } } @@ -47649,19 +47915,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3759, yyv3759 := range v { + for yyk3778, yyv3778 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3759.CodecEncodeSelf(e) + yyk3778.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3760 := &yyv3759 - yym3761 := z.EncBinary() - _ = yym3761 + yy3779 := &yyv3778 + yym3780 := z.EncBinary() + _ = yym3780 if false { - } else if z.HasExtensions() && z.EncExt(yy3760) { - } else if !yym3761 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3760) + } else if z.HasExtensions() && z.EncExt(yy3779) { + } else if !yym3780 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3779) } else { - z.EncFallback(yy3760) + z.EncFallback(yy3779) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47672,86 +47938,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3762 := *v - yyl3762 := r.ReadMapStart() - yybh3762 := z.DecBasicHandle() - if yyv3762 == nil { - yyrl3762, _ := z.DecInferLen(yyl3762, yybh3762.MaxInitLen, 40) - yyv3762 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3762) - *v = yyv3762 + yyv3781 := *v + yyl3781 := r.ReadMapStart() + yybh3781 := z.DecBasicHandle() + if yyv3781 == nil { + yyrl3781, _ := z.DecInferLen(yyl3781, yybh3781.MaxInitLen, 40) + yyv3781 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3781) + *v = yyv3781 } - var yymk3762 ResourceName - var yymv3762 pkg3_resource.Quantity - var yymg3762 bool - if yybh3762.MapValueReset { - yymg3762 = true + var yymk3781 ResourceName + var yymv3781 pkg3_resource.Quantity + var yymg3781 bool + if yybh3781.MapValueReset { + yymg3781 = true } - if yyl3762 > 0 { - for yyj3762 := 0; yyj3762 < yyl3762; yyj3762++ { + if yyl3781 > 0 { + for yyj3781 := 0; yyj3781 < yyl3781; yyj3781++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3762 = "" + yymk3781 = "" } else { - yymk3762 = ResourceName(r.DecodeString()) + yymk3781 = ResourceName(r.DecodeString()) } - if yymg3762 { - yymv3762 = yyv3762[yymk3762] + if yymg3781 { + yymv3781 = yyv3781[yymk3781] } else { - yymv3762 = pkg3_resource.Quantity{} + yymv3781 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3762 = pkg3_resource.Quantity{} + yymv3781 = pkg3_resource.Quantity{} } else { - yyv3764 := &yymv3762 - yym3765 := z.DecBinary() - _ = yym3765 + yyv3783 := &yymv3781 + yym3784 := z.DecBinary() + _ = yym3784 if false { - } else if z.HasExtensions() && z.DecExt(yyv3764) { - } else if !yym3765 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3764) + } else if z.HasExtensions() && z.DecExt(yyv3783) { + } else if !yym3784 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3783) } else { - z.DecFallback(yyv3764, false) + z.DecFallback(yyv3783, false) } } - if yyv3762 != nil { - yyv3762[yymk3762] = yymv3762 + if yyv3781 != nil { + yyv3781[yymk3781] = yymv3781 } } - } else if yyl3762 < 0 { - for yyj3762 := 0; !r.CheckBreak(); yyj3762++ { + } else if yyl3781 < 0 { + for yyj3781 := 0; !r.CheckBreak(); yyj3781++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3762 = "" + yymk3781 = "" } else { - yymk3762 = ResourceName(r.DecodeString()) + yymk3781 = ResourceName(r.DecodeString()) } - if yymg3762 { - yymv3762 = yyv3762[yymk3762] + if yymg3781 { + yymv3781 = yyv3781[yymk3781] } else { - yymv3762 = pkg3_resource.Quantity{} + yymv3781 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3762 = pkg3_resource.Quantity{} + yymv3781 = pkg3_resource.Quantity{} } else { - yyv3767 := &yymv3762 - yym3768 := z.DecBinary() - _ = yym3768 + yyv3786 := &yymv3781 + yym3787 := z.DecBinary() + _ = yym3787 if false { - } else if z.HasExtensions() && z.DecExt(yyv3767) { - } else if !yym3768 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3767) + } else if z.HasExtensions() && z.DecExt(yyv3786) { + } else if !yym3787 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3786) } else { - z.DecFallback(yyv3767, false) + z.DecFallback(yyv3786, false) } } - if yyv3762 != nil { - yyv3762[yymk3762] = yymv3762 + if yyv3781 != nil { + yyv3781[yymk3781] = yymv3781 } } } // else len==0: TODO: Should we clear map entries? @@ -47763,10 +48029,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3769 := range v { + for _, yyv3788 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3770 := &yyv3769 - yy3770.CodecEncodeSelf(e) + yy3789 := &yyv3788 + yy3789.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47776,83 +48042,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3771 := *v - yyh3771, yyl3771 := z.DecSliceHelperStart() - var yyc3771 bool - if yyl3771 == 0 { - if yyv3771 == nil { - yyv3771 = []Node{} - yyc3771 = true - } else if len(yyv3771) != 0 { - yyv3771 = yyv3771[:0] - yyc3771 = true + yyv3790 := *v + yyh3790, yyl3790 := z.DecSliceHelperStart() + var yyc3790 bool + if yyl3790 == 0 { + if yyv3790 == nil { + yyv3790 = []Node{} + yyc3790 = true + } else if len(yyv3790) != 0 { + yyv3790 = yyv3790[:0] + yyc3790 = true } - } else if yyl3771 > 0 { - var yyrr3771, yyrl3771 int - var yyrt3771 bool - if yyl3771 > cap(yyv3771) { + } else if yyl3790 > 0 { + var yyrr3790, yyrl3790 int + var yyrt3790 bool + if yyl3790 > cap(yyv3790) { - yyrg3771 := len(yyv3771) > 0 - yyv23771 := yyv3771 - yyrl3771, yyrt3771 = z.DecInferLen(yyl3771, z.DecBasicHandle().MaxInitLen, 488) - if yyrt3771 { - if yyrl3771 <= cap(yyv3771) { - yyv3771 = yyv3771[:yyrl3771] + yyrg3790 := len(yyv3790) > 0 + yyv23790 := yyv3790 + yyrl3790, yyrt3790 = z.DecInferLen(yyl3790, z.DecBasicHandle().MaxInitLen, 488) + if yyrt3790 { + if yyrl3790 <= cap(yyv3790) { + yyv3790 = yyv3790[:yyrl3790] } else { - yyv3771 = make([]Node, yyrl3771) + yyv3790 = make([]Node, yyrl3790) } } else { - yyv3771 = make([]Node, yyrl3771) + yyv3790 = make([]Node, yyrl3790) } - yyc3771 = true - yyrr3771 = len(yyv3771) - if yyrg3771 { - copy(yyv3771, yyv23771) + yyc3790 = true + yyrr3790 = len(yyv3790) + if yyrg3790 { + copy(yyv3790, yyv23790) } - } else if yyl3771 != len(yyv3771) { - yyv3771 = yyv3771[:yyl3771] - yyc3771 = true + } else if yyl3790 != len(yyv3790) { + yyv3790 = yyv3790[:yyl3790] + yyc3790 = true } - yyj3771 := 0 - for ; yyj3771 < yyrr3771; yyj3771++ { - yyh3771.ElemContainerState(yyj3771) + yyj3790 := 0 + for ; yyj3790 < yyrr3790; yyj3790++ { + yyh3790.ElemContainerState(yyj3790) if r.TryDecodeAsNil() { - yyv3771[yyj3771] = Node{} + yyv3790[yyj3790] = Node{} } else { - yyv3772 := &yyv3771[yyj3771] - yyv3772.CodecDecodeSelf(d) + yyv3791 := &yyv3790[yyj3790] + yyv3791.CodecDecodeSelf(d) } } - if yyrt3771 { - for ; yyj3771 < yyl3771; yyj3771++ { - yyv3771 = append(yyv3771, Node{}) - yyh3771.ElemContainerState(yyj3771) + if yyrt3790 { + for ; yyj3790 < yyl3790; yyj3790++ { + yyv3790 = append(yyv3790, Node{}) + yyh3790.ElemContainerState(yyj3790) if r.TryDecodeAsNil() { - yyv3771[yyj3771] = Node{} + yyv3790[yyj3790] = Node{} } else { - yyv3773 := &yyv3771[yyj3771] - yyv3773.CodecDecodeSelf(d) + yyv3792 := &yyv3790[yyj3790] + yyv3792.CodecDecodeSelf(d) } } } } else { - yyj3771 := 0 - for ; !r.CheckBreak(); yyj3771++ { + yyj3790 := 0 + for ; !r.CheckBreak(); yyj3790++ { - if yyj3771 >= len(yyv3771) { - yyv3771 = append(yyv3771, Node{}) // var yyz3771 Node - yyc3771 = true + if yyj3790 >= len(yyv3790) { + yyv3790 = append(yyv3790, Node{}) // var yyz3790 Node + yyc3790 = true } - yyh3771.ElemContainerState(yyj3771) - if yyj3771 < len(yyv3771) { + yyh3790.ElemContainerState(yyj3790) + if yyj3790 < len(yyv3790) { if r.TryDecodeAsNil() { - yyv3771[yyj3771] = Node{} + yyv3790[yyj3790] = Node{} } else { - yyv3774 := &yyv3771[yyj3771] - yyv3774.CodecDecodeSelf(d) + yyv3793 := &yyv3790[yyj3790] + yyv3793.CodecDecodeSelf(d) } } else { @@ -47860,17 +48126,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj3771 < len(yyv3771) { - yyv3771 = yyv3771[:yyj3771] - yyc3771 = true - } else if yyj3771 == 0 && yyv3771 == nil { - yyv3771 = []Node{} - yyc3771 = true + if yyj3790 < len(yyv3790) { + yyv3790 = yyv3790[:yyj3790] + yyc3790 = true + } else if yyj3790 == 0 && yyv3790 == nil { + yyv3790 = []Node{} + yyc3790 = true } } - yyh3771.End() - if yyc3771 { - *v = yyv3771 + yyh3790.End() + if yyc3790 { + *v = yyv3790 } } @@ -47879,9 +48145,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3775 := range v { + for _, yyv3794 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3775.CodecEncodeSelf(e) + yyv3794.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47891,75 +48157,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3776 := *v - yyh3776, yyl3776 := z.DecSliceHelperStart() - var yyc3776 bool - if yyl3776 == 0 { - if yyv3776 == nil { - yyv3776 = []FinalizerName{} - yyc3776 = true - } else if len(yyv3776) != 0 { - yyv3776 = yyv3776[:0] - yyc3776 = true + yyv3795 := *v + yyh3795, yyl3795 := z.DecSliceHelperStart() + var yyc3795 bool + if yyl3795 == 0 { + if yyv3795 == nil { + yyv3795 = []FinalizerName{} + yyc3795 = true + } else if len(yyv3795) != 0 { + yyv3795 = yyv3795[:0] + yyc3795 = true } - } else if yyl3776 > 0 { - var yyrr3776, yyrl3776 int - var yyrt3776 bool - if yyl3776 > cap(yyv3776) { + } else if yyl3795 > 0 { + var yyrr3795, yyrl3795 int + var yyrt3795 bool + if yyl3795 > cap(yyv3795) { - yyrl3776, yyrt3776 = z.DecInferLen(yyl3776, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3776 { - if yyrl3776 <= cap(yyv3776) { - yyv3776 = yyv3776[:yyrl3776] + yyrl3795, yyrt3795 = z.DecInferLen(yyl3795, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3795 { + if yyrl3795 <= cap(yyv3795) { + yyv3795 = yyv3795[:yyrl3795] } else { - yyv3776 = make([]FinalizerName, yyrl3776) + yyv3795 = make([]FinalizerName, yyrl3795) } } else { - yyv3776 = make([]FinalizerName, yyrl3776) + yyv3795 = make([]FinalizerName, yyrl3795) } - yyc3776 = true - yyrr3776 = len(yyv3776) - } else if yyl3776 != len(yyv3776) { - yyv3776 = yyv3776[:yyl3776] - yyc3776 = true + yyc3795 = true + yyrr3795 = len(yyv3795) + } else if yyl3795 != len(yyv3795) { + yyv3795 = yyv3795[:yyl3795] + yyc3795 = true } - yyj3776 := 0 - for ; yyj3776 < yyrr3776; yyj3776++ { - yyh3776.ElemContainerState(yyj3776) + yyj3795 := 0 + for ; yyj3795 < yyrr3795; yyj3795++ { + yyh3795.ElemContainerState(yyj3795) if r.TryDecodeAsNil() { - yyv3776[yyj3776] = "" + yyv3795[yyj3795] = "" } else { - yyv3776[yyj3776] = FinalizerName(r.DecodeString()) + yyv3795[yyj3795] = FinalizerName(r.DecodeString()) } } - if yyrt3776 { - for ; yyj3776 < yyl3776; yyj3776++ { - yyv3776 = append(yyv3776, "") - yyh3776.ElemContainerState(yyj3776) + if yyrt3795 { + for ; yyj3795 < yyl3795; yyj3795++ { + yyv3795 = append(yyv3795, "") + yyh3795.ElemContainerState(yyj3795) if r.TryDecodeAsNil() { - yyv3776[yyj3776] = "" + yyv3795[yyj3795] = "" } else { - yyv3776[yyj3776] = FinalizerName(r.DecodeString()) + yyv3795[yyj3795] = FinalizerName(r.DecodeString()) } } } } else { - yyj3776 := 0 - for ; !r.CheckBreak(); yyj3776++ { + yyj3795 := 0 + for ; !r.CheckBreak(); yyj3795++ { - if yyj3776 >= len(yyv3776) { - yyv3776 = append(yyv3776, "") // var yyz3776 FinalizerName - yyc3776 = true + if yyj3795 >= len(yyv3795) { + yyv3795 = append(yyv3795, "") // var yyz3795 FinalizerName + yyc3795 = true } - yyh3776.ElemContainerState(yyj3776) - if yyj3776 < len(yyv3776) { + yyh3795.ElemContainerState(yyj3795) + if yyj3795 < len(yyv3795) { if r.TryDecodeAsNil() { - yyv3776[yyj3776] = "" + yyv3795[yyj3795] = "" } else { - yyv3776[yyj3776] = FinalizerName(r.DecodeString()) + yyv3795[yyj3795] = FinalizerName(r.DecodeString()) } } else { @@ -47967,17 +48233,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj3776 < len(yyv3776) { - yyv3776 = yyv3776[:yyj3776] - yyc3776 = true - } else if yyj3776 == 0 && yyv3776 == nil { - yyv3776 = []FinalizerName{} - yyc3776 = true + if yyj3795 < len(yyv3795) { + yyv3795 = yyv3795[:yyj3795] + yyc3795 = true + } else if yyj3795 == 0 && yyv3795 == nil { + yyv3795 = []FinalizerName{} + yyc3795 = true } } - yyh3776.End() - if yyc3776 { - *v = yyv3776 + yyh3795.End() + if yyc3795 { + *v = yyv3795 } } @@ -47986,10 +48252,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3780 := range v { + for _, yyv3799 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3781 := &yyv3780 - yy3781.CodecEncodeSelf(e) + yy3800 := &yyv3799 + yy3800.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47999,83 +48265,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3782 := *v - yyh3782, yyl3782 := z.DecSliceHelperStart() - var yyc3782 bool - if yyl3782 == 0 { - if yyv3782 == nil { - yyv3782 = []Namespace{} - yyc3782 = true - } else if len(yyv3782) != 0 { - yyv3782 = yyv3782[:0] - yyc3782 = true + yyv3801 := *v + yyh3801, yyl3801 := z.DecSliceHelperStart() + var yyc3801 bool + if yyl3801 == 0 { + if yyv3801 == nil { + yyv3801 = []Namespace{} + yyc3801 = true + } else if len(yyv3801) != 0 { + yyv3801 = yyv3801[:0] + yyc3801 = true } - } else if yyl3782 > 0 { - var yyrr3782, yyrl3782 int - var yyrt3782 bool - if yyl3782 > cap(yyv3782) { + } else if yyl3801 > 0 { + var yyrr3801, yyrl3801 int + var yyrt3801 bool + if yyl3801 > cap(yyv3801) { - yyrg3782 := len(yyv3782) > 0 - yyv23782 := yyv3782 - yyrl3782, yyrt3782 = z.DecInferLen(yyl3782, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3782 { - if yyrl3782 <= cap(yyv3782) { - yyv3782 = yyv3782[:yyrl3782] + yyrg3801 := len(yyv3801) > 0 + yyv23801 := yyv3801 + yyrl3801, yyrt3801 = z.DecInferLen(yyl3801, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3801 { + if yyrl3801 <= cap(yyv3801) { + yyv3801 = yyv3801[:yyrl3801] } else { - yyv3782 = make([]Namespace, yyrl3782) + yyv3801 = make([]Namespace, yyrl3801) } } else { - yyv3782 = make([]Namespace, yyrl3782) + yyv3801 = make([]Namespace, yyrl3801) } - yyc3782 = true - yyrr3782 = len(yyv3782) - if yyrg3782 { - copy(yyv3782, yyv23782) + yyc3801 = true + yyrr3801 = len(yyv3801) + if yyrg3801 { + copy(yyv3801, yyv23801) } - } else if yyl3782 != len(yyv3782) { - yyv3782 = yyv3782[:yyl3782] - yyc3782 = true + } else if yyl3801 != len(yyv3801) { + yyv3801 = yyv3801[:yyl3801] + yyc3801 = true } - yyj3782 := 0 - for ; yyj3782 < yyrr3782; yyj3782++ { - yyh3782.ElemContainerState(yyj3782) + yyj3801 := 0 + for ; yyj3801 < yyrr3801; yyj3801++ { + yyh3801.ElemContainerState(yyj3801) if r.TryDecodeAsNil() { - yyv3782[yyj3782] = Namespace{} + yyv3801[yyj3801] = Namespace{} } else { - yyv3783 := &yyv3782[yyj3782] - yyv3783.CodecDecodeSelf(d) + yyv3802 := &yyv3801[yyj3801] + yyv3802.CodecDecodeSelf(d) } } - if yyrt3782 { - for ; yyj3782 < yyl3782; yyj3782++ { - yyv3782 = append(yyv3782, Namespace{}) - yyh3782.ElemContainerState(yyj3782) + if yyrt3801 { + for ; yyj3801 < yyl3801; yyj3801++ { + yyv3801 = append(yyv3801, Namespace{}) + yyh3801.ElemContainerState(yyj3801) if r.TryDecodeAsNil() { - yyv3782[yyj3782] = Namespace{} + yyv3801[yyj3801] = Namespace{} } else { - yyv3784 := &yyv3782[yyj3782] - yyv3784.CodecDecodeSelf(d) + yyv3803 := &yyv3801[yyj3801] + yyv3803.CodecDecodeSelf(d) } } } } else { - yyj3782 := 0 - for ; !r.CheckBreak(); yyj3782++ { + yyj3801 := 0 + for ; !r.CheckBreak(); yyj3801++ { - if yyj3782 >= len(yyv3782) { - yyv3782 = append(yyv3782, Namespace{}) // var yyz3782 Namespace - yyc3782 = true + if yyj3801 >= len(yyv3801) { + yyv3801 = append(yyv3801, Namespace{}) // var yyz3801 Namespace + yyc3801 = true } - yyh3782.ElemContainerState(yyj3782) - if yyj3782 < len(yyv3782) { + yyh3801.ElemContainerState(yyj3801) + if yyj3801 < len(yyv3801) { if r.TryDecodeAsNil() { - yyv3782[yyj3782] = Namespace{} + yyv3801[yyj3801] = Namespace{} } else { - yyv3785 := &yyv3782[yyj3782] - yyv3785.CodecDecodeSelf(d) + yyv3804 := &yyv3801[yyj3801] + yyv3804.CodecDecodeSelf(d) } } else { @@ -48083,17 +48349,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj3782 < len(yyv3782) { - yyv3782 = yyv3782[:yyj3782] - yyc3782 = true - } else if yyj3782 == 0 && yyv3782 == nil { - yyv3782 = []Namespace{} - yyc3782 = true + if yyj3801 < len(yyv3801) { + yyv3801 = yyv3801[:yyj3801] + yyc3801 = true + } else if yyj3801 == 0 && yyv3801 == nil { + yyv3801 = []Namespace{} + yyc3801 = true } } - yyh3782.End() - if yyc3782 { - *v = yyv3782 + yyh3801.End() + if yyc3801 { + *v = yyv3801 } } @@ -48102,10 +48368,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3786 := range v { + for _, yyv3805 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3787 := &yyv3786 - yy3787.CodecEncodeSelf(e) + yy3806 := &yyv3805 + yy3806.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48115,83 +48381,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3788 := *v - yyh3788, yyl3788 := z.DecSliceHelperStart() - var yyc3788 bool - if yyl3788 == 0 { - if yyv3788 == nil { - yyv3788 = []Event{} - yyc3788 = true - } else if len(yyv3788) != 0 { - yyv3788 = yyv3788[:0] - yyc3788 = true + yyv3807 := *v + yyh3807, yyl3807 := z.DecSliceHelperStart() + var yyc3807 bool + if yyl3807 == 0 { + if yyv3807 == nil { + yyv3807 = []Event{} + yyc3807 = true + } else if len(yyv3807) != 0 { + yyv3807 = yyv3807[:0] + yyc3807 = true } - } else if yyl3788 > 0 { - var yyrr3788, yyrl3788 int - var yyrt3788 bool - if yyl3788 > cap(yyv3788) { + } else if yyl3807 > 0 { + var yyrr3807, yyrl3807 int + var yyrt3807 bool + if yyl3807 > cap(yyv3807) { - yyrg3788 := len(yyv3788) > 0 - yyv23788 := yyv3788 - yyrl3788, yyrt3788 = z.DecInferLen(yyl3788, z.DecBasicHandle().MaxInitLen, 440) - if yyrt3788 { - if yyrl3788 <= cap(yyv3788) { - yyv3788 = yyv3788[:yyrl3788] + yyrg3807 := len(yyv3807) > 0 + yyv23807 := yyv3807 + yyrl3807, yyrt3807 = z.DecInferLen(yyl3807, z.DecBasicHandle().MaxInitLen, 440) + if yyrt3807 { + if yyrl3807 <= cap(yyv3807) { + yyv3807 = yyv3807[:yyrl3807] } else { - yyv3788 = make([]Event, yyrl3788) + yyv3807 = make([]Event, yyrl3807) } } else { - yyv3788 = make([]Event, yyrl3788) + yyv3807 = make([]Event, yyrl3807) } - yyc3788 = true - yyrr3788 = len(yyv3788) - if yyrg3788 { - copy(yyv3788, yyv23788) + yyc3807 = true + yyrr3807 = len(yyv3807) + if yyrg3807 { + copy(yyv3807, yyv23807) } - } else if yyl3788 != len(yyv3788) { - yyv3788 = yyv3788[:yyl3788] - yyc3788 = true + } else if yyl3807 != len(yyv3807) { + yyv3807 = yyv3807[:yyl3807] + yyc3807 = true } - yyj3788 := 0 - for ; yyj3788 < yyrr3788; yyj3788++ { - yyh3788.ElemContainerState(yyj3788) + yyj3807 := 0 + for ; yyj3807 < yyrr3807; yyj3807++ { + yyh3807.ElemContainerState(yyj3807) if r.TryDecodeAsNil() { - yyv3788[yyj3788] = Event{} + yyv3807[yyj3807] = Event{} } else { - yyv3789 := &yyv3788[yyj3788] - yyv3789.CodecDecodeSelf(d) + yyv3808 := &yyv3807[yyj3807] + yyv3808.CodecDecodeSelf(d) } } - if yyrt3788 { - for ; yyj3788 < yyl3788; yyj3788++ { - yyv3788 = append(yyv3788, Event{}) - yyh3788.ElemContainerState(yyj3788) + if yyrt3807 { + for ; yyj3807 < yyl3807; yyj3807++ { + yyv3807 = append(yyv3807, Event{}) + yyh3807.ElemContainerState(yyj3807) if r.TryDecodeAsNil() { - yyv3788[yyj3788] = Event{} + yyv3807[yyj3807] = Event{} } else { - yyv3790 := &yyv3788[yyj3788] - yyv3790.CodecDecodeSelf(d) + yyv3809 := &yyv3807[yyj3807] + yyv3809.CodecDecodeSelf(d) } } } } else { - yyj3788 := 0 - for ; !r.CheckBreak(); yyj3788++ { + yyj3807 := 0 + for ; !r.CheckBreak(); yyj3807++ { - if yyj3788 >= len(yyv3788) { - yyv3788 = append(yyv3788, Event{}) // var yyz3788 Event - yyc3788 = true + if yyj3807 >= len(yyv3807) { + yyv3807 = append(yyv3807, Event{}) // var yyz3807 Event + yyc3807 = true } - yyh3788.ElemContainerState(yyj3788) - if yyj3788 < len(yyv3788) { + yyh3807.ElemContainerState(yyj3807) + if yyj3807 < len(yyv3807) { if r.TryDecodeAsNil() { - yyv3788[yyj3788] = Event{} + yyv3807[yyj3807] = Event{} } else { - yyv3791 := &yyv3788[yyj3788] - yyv3791.CodecDecodeSelf(d) + yyv3810 := &yyv3807[yyj3807] + yyv3810.CodecDecodeSelf(d) } } else { @@ -48199,17 +48465,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj3788 < len(yyv3788) { - yyv3788 = yyv3788[:yyj3788] - yyc3788 = true - } else if yyj3788 == 0 && yyv3788 == nil { - yyv3788 = []Event{} - yyc3788 = true + if yyj3807 < len(yyv3807) { + yyv3807 = yyv3807[:yyj3807] + yyc3807 = true + } else if yyj3807 == 0 && yyv3807 == nil { + yyv3807 = []Event{} + yyc3807 = true } } - yyh3788.End() - if yyc3788 { - *v = yyv3788 + yyh3807.End() + if yyc3807 { + *v = yyv3807 } } @@ -48218,17 +48484,17 @@ func (x codecSelfer1234) encSliceruntime_Object(v []pkg8_runtime.Object, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3792 := range v { + for _, yyv3811 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv3792 == nil { + if yyv3811 == nil { r.EncodeNil() } else { - yym3793 := z.EncBinary() - _ = yym3793 + yym3812 := z.EncBinary() + _ = yym3812 if false { - } else if z.HasExtensions() && z.EncExt(yyv3792) { + } else if z.HasExtensions() && z.EncExt(yyv3811) { } else { - z.EncFallback(yyv3792) + z.EncFallback(yyv3811) } } } @@ -48240,74 +48506,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3794 := *v - yyh3794, yyl3794 := z.DecSliceHelperStart() - var yyc3794 bool - if yyl3794 == 0 { - if yyv3794 == nil { - yyv3794 = []pkg8_runtime.Object{} - yyc3794 = true - } else if len(yyv3794) != 0 { - yyv3794 = yyv3794[:0] - yyc3794 = true + yyv3813 := *v + yyh3813, yyl3813 := z.DecSliceHelperStart() + var yyc3813 bool + if yyl3813 == 0 { + if yyv3813 == nil { + yyv3813 = []pkg8_runtime.Object{} + yyc3813 = true + } else if len(yyv3813) != 0 { + yyv3813 = yyv3813[:0] + yyc3813 = true } - } else if yyl3794 > 0 { - var yyrr3794, yyrl3794 int - var yyrt3794 bool - if yyl3794 > cap(yyv3794) { + } else if yyl3813 > 0 { + var yyrr3813, yyrl3813 int + var yyrt3813 bool + if yyl3813 > cap(yyv3813) { - yyrg3794 := len(yyv3794) > 0 - yyv23794 := yyv3794 - yyrl3794, yyrt3794 = z.DecInferLen(yyl3794, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3794 { - if yyrl3794 <= cap(yyv3794) { - yyv3794 = yyv3794[:yyrl3794] + yyrg3813 := len(yyv3813) > 0 + yyv23813 := yyv3813 + yyrl3813, yyrt3813 = z.DecInferLen(yyl3813, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3813 { + if yyrl3813 <= cap(yyv3813) { + yyv3813 = yyv3813[:yyrl3813] } else { - yyv3794 = make([]pkg8_runtime.Object, yyrl3794) + yyv3813 = make([]pkg8_runtime.Object, yyrl3813) } } else { - yyv3794 = make([]pkg8_runtime.Object, yyrl3794) + yyv3813 = make([]pkg8_runtime.Object, yyrl3813) } - yyc3794 = true - yyrr3794 = len(yyv3794) - if yyrg3794 { - copy(yyv3794, yyv23794) + yyc3813 = true + yyrr3813 = len(yyv3813) + if yyrg3813 { + copy(yyv3813, yyv23813) } - } else if yyl3794 != len(yyv3794) { - yyv3794 = yyv3794[:yyl3794] - yyc3794 = true + } else if yyl3813 != len(yyv3813) { + yyv3813 = yyv3813[:yyl3813] + yyc3813 = true } - yyj3794 := 0 - for ; yyj3794 < yyrr3794; yyj3794++ { - yyh3794.ElemContainerState(yyj3794) + yyj3813 := 0 + for ; yyj3813 < yyrr3813; yyj3813++ { + yyh3813.ElemContainerState(yyj3813) if r.TryDecodeAsNil() { - yyv3794[yyj3794] = nil + yyv3813[yyj3813] = nil } else { - yyv3795 := &yyv3794[yyj3794] - yym3796 := z.DecBinary() - _ = yym3796 + yyv3814 := &yyv3813[yyj3813] + yym3815 := z.DecBinary() + _ = yym3815 if false { - } else if z.HasExtensions() && z.DecExt(yyv3795) { + } else if z.HasExtensions() && z.DecExt(yyv3814) { } else { - z.DecFallback(yyv3795, true) + z.DecFallback(yyv3814, true) } } } - if yyrt3794 { - for ; yyj3794 < yyl3794; yyj3794++ { - yyv3794 = append(yyv3794, nil) - yyh3794.ElemContainerState(yyj3794) + if yyrt3813 { + for ; yyj3813 < yyl3813; yyj3813++ { + yyv3813 = append(yyv3813, nil) + yyh3813.ElemContainerState(yyj3813) if r.TryDecodeAsNil() { - yyv3794[yyj3794] = nil + yyv3813[yyj3813] = nil } else { - yyv3797 := &yyv3794[yyj3794] - yym3798 := z.DecBinary() - _ = yym3798 + yyv3816 := &yyv3813[yyj3813] + yym3817 := z.DecBinary() + _ = yym3817 if false { - } else if z.HasExtensions() && z.DecExt(yyv3797) { + } else if z.HasExtensions() && z.DecExt(yyv3816) { } else { - z.DecFallback(yyv3797, true) + z.DecFallback(yyv3816, true) } } @@ -48315,25 +48581,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod } } else { - yyj3794 := 0 - for ; !r.CheckBreak(); yyj3794++ { + yyj3813 := 0 + for ; !r.CheckBreak(); yyj3813++ { - if yyj3794 >= len(yyv3794) { - yyv3794 = append(yyv3794, nil) // var yyz3794 pkg8_runtime.Object - yyc3794 = true + if yyj3813 >= len(yyv3813) { + yyv3813 = append(yyv3813, nil) // var yyz3813 pkg8_runtime.Object + yyc3813 = true } - yyh3794.ElemContainerState(yyj3794) - if yyj3794 < len(yyv3794) { + yyh3813.ElemContainerState(yyj3813) + if yyj3813 < len(yyv3813) { if r.TryDecodeAsNil() { - yyv3794[yyj3794] = nil + yyv3813[yyj3813] = nil } else { - yyv3799 := &yyv3794[yyj3794] - yym3800 := z.DecBinary() - _ = yym3800 + yyv3818 := &yyv3813[yyj3813] + yym3819 := z.DecBinary() + _ = yym3819 if false { - } else if z.HasExtensions() && z.DecExt(yyv3799) { + } else if z.HasExtensions() && z.DecExt(yyv3818) { } else { - z.DecFallback(yyv3799, true) + z.DecFallback(yyv3818, true) } } @@ -48342,17 +48608,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg8_runtime.Object, d *cod } } - if yyj3794 < len(yyv3794) { - yyv3794 = yyv3794[:yyj3794] - yyc3794 = true - } else if yyj3794 == 0 && yyv3794 == nil { - yyv3794 = []pkg8_runtime.Object{} - yyc3794 = true + if yyj3813 < len(yyv3813) { + yyv3813 = yyv3813[:yyj3813] + yyc3813 = true + } else if yyj3813 == 0 && yyv3813 == nil { + yyv3813 = []pkg8_runtime.Object{} + yyc3813 = true } } - yyh3794.End() - if yyc3794 { - *v = yyv3794 + yyh3813.End() + if yyc3813 { + *v = yyv3813 } } @@ -48361,10 +48627,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3801 := range v { + for _, yyv3820 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3802 := &yyv3801 - yy3802.CodecEncodeSelf(e) + yy3821 := &yyv3820 + yy3821.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48374,83 +48640,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3803 := *v - yyh3803, yyl3803 := z.DecSliceHelperStart() - var yyc3803 bool - if yyl3803 == 0 { - if yyv3803 == nil { - yyv3803 = []LimitRangeItem{} - yyc3803 = true - } else if len(yyv3803) != 0 { - yyv3803 = yyv3803[:0] - yyc3803 = true + yyv3822 := *v + yyh3822, yyl3822 := z.DecSliceHelperStart() + var yyc3822 bool + if yyl3822 == 0 { + if yyv3822 == nil { + yyv3822 = []LimitRangeItem{} + yyc3822 = true + } else if len(yyv3822) != 0 { + yyv3822 = yyv3822[:0] + yyc3822 = true } - } else if yyl3803 > 0 { - var yyrr3803, yyrl3803 int - var yyrt3803 bool - if yyl3803 > cap(yyv3803) { + } else if yyl3822 > 0 { + var yyrr3822, yyrl3822 int + var yyrt3822 bool + if yyl3822 > cap(yyv3822) { - yyrg3803 := len(yyv3803) > 0 - yyv23803 := yyv3803 - yyrl3803, yyrt3803 = z.DecInferLen(yyl3803, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3803 { - if yyrl3803 <= cap(yyv3803) { - yyv3803 = yyv3803[:yyrl3803] + yyrg3822 := len(yyv3822) > 0 + yyv23822 := yyv3822 + yyrl3822, yyrt3822 = z.DecInferLen(yyl3822, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3822 { + if yyrl3822 <= cap(yyv3822) { + yyv3822 = yyv3822[:yyrl3822] } else { - yyv3803 = make([]LimitRangeItem, yyrl3803) + yyv3822 = make([]LimitRangeItem, yyrl3822) } } else { - yyv3803 = make([]LimitRangeItem, yyrl3803) + yyv3822 = make([]LimitRangeItem, yyrl3822) } - yyc3803 = true - yyrr3803 = len(yyv3803) - if yyrg3803 { - copy(yyv3803, yyv23803) + yyc3822 = true + yyrr3822 = len(yyv3822) + if yyrg3822 { + copy(yyv3822, yyv23822) } - } else if yyl3803 != len(yyv3803) { - yyv3803 = yyv3803[:yyl3803] - yyc3803 = true + } else if yyl3822 != len(yyv3822) { + yyv3822 = yyv3822[:yyl3822] + yyc3822 = true } - yyj3803 := 0 - for ; yyj3803 < yyrr3803; yyj3803++ { - yyh3803.ElemContainerState(yyj3803) + yyj3822 := 0 + for ; yyj3822 < yyrr3822; yyj3822++ { + yyh3822.ElemContainerState(yyj3822) if r.TryDecodeAsNil() { - yyv3803[yyj3803] = LimitRangeItem{} + yyv3822[yyj3822] = LimitRangeItem{} } else { - yyv3804 := &yyv3803[yyj3803] - yyv3804.CodecDecodeSelf(d) + yyv3823 := &yyv3822[yyj3822] + yyv3823.CodecDecodeSelf(d) } } - if yyrt3803 { - for ; yyj3803 < yyl3803; yyj3803++ { - yyv3803 = append(yyv3803, LimitRangeItem{}) - yyh3803.ElemContainerState(yyj3803) + if yyrt3822 { + for ; yyj3822 < yyl3822; yyj3822++ { + yyv3822 = append(yyv3822, LimitRangeItem{}) + yyh3822.ElemContainerState(yyj3822) if r.TryDecodeAsNil() { - yyv3803[yyj3803] = LimitRangeItem{} + yyv3822[yyj3822] = LimitRangeItem{} } else { - yyv3805 := &yyv3803[yyj3803] - yyv3805.CodecDecodeSelf(d) + yyv3824 := &yyv3822[yyj3822] + yyv3824.CodecDecodeSelf(d) } } } } else { - yyj3803 := 0 - for ; !r.CheckBreak(); yyj3803++ { + yyj3822 := 0 + for ; !r.CheckBreak(); yyj3822++ { - if yyj3803 >= len(yyv3803) { - yyv3803 = append(yyv3803, LimitRangeItem{}) // var yyz3803 LimitRangeItem - yyc3803 = true + if yyj3822 >= len(yyv3822) { + yyv3822 = append(yyv3822, LimitRangeItem{}) // var yyz3822 LimitRangeItem + yyc3822 = true } - yyh3803.ElemContainerState(yyj3803) - if yyj3803 < len(yyv3803) { + yyh3822.ElemContainerState(yyj3822) + if yyj3822 < len(yyv3822) { if r.TryDecodeAsNil() { - yyv3803[yyj3803] = LimitRangeItem{} + yyv3822[yyj3822] = LimitRangeItem{} } else { - yyv3806 := &yyv3803[yyj3803] - yyv3806.CodecDecodeSelf(d) + yyv3825 := &yyv3822[yyj3822] + yyv3825.CodecDecodeSelf(d) } } else { @@ -48458,17 +48724,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj3803 < len(yyv3803) { - yyv3803 = yyv3803[:yyj3803] - yyc3803 = true - } else if yyj3803 == 0 && yyv3803 == nil { - yyv3803 = []LimitRangeItem{} - yyc3803 = true + if yyj3822 < len(yyv3822) { + yyv3822 = yyv3822[:yyj3822] + yyc3822 = true + } else if yyj3822 == 0 && yyv3822 == nil { + yyv3822 = []LimitRangeItem{} + yyc3822 = true } } - yyh3803.End() - if yyc3803 { - *v = yyv3803 + yyh3822.End() + if yyc3822 { + *v = yyv3822 } } @@ -48477,10 +48743,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3807 := range v { + for _, yyv3826 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3808 := &yyv3807 - yy3808.CodecEncodeSelf(e) + yy3827 := &yyv3826 + yy3827.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48490,83 +48756,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3809 := *v - yyh3809, yyl3809 := z.DecSliceHelperStart() - var yyc3809 bool - if yyl3809 == 0 { - if yyv3809 == nil { - yyv3809 = []LimitRange{} - yyc3809 = true - } else if len(yyv3809) != 0 { - yyv3809 = yyv3809[:0] - yyc3809 = true + yyv3828 := *v + yyh3828, yyl3828 := z.DecSliceHelperStart() + var yyc3828 bool + if yyl3828 == 0 { + if yyv3828 == nil { + yyv3828 = []LimitRange{} + yyc3828 = true + } else if len(yyv3828) != 0 { + yyv3828 = yyv3828[:0] + yyc3828 = true } - } else if yyl3809 > 0 { - var yyrr3809, yyrl3809 int - var yyrt3809 bool - if yyl3809 > cap(yyv3809) { + } else if yyl3828 > 0 { + var yyrr3828, yyrl3828 int + var yyrt3828 bool + if yyl3828 > cap(yyv3828) { - yyrg3809 := len(yyv3809) > 0 - yyv23809 := yyv3809 - yyrl3809, yyrt3809 = z.DecInferLen(yyl3809, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3809 { - if yyrl3809 <= cap(yyv3809) { - yyv3809 = yyv3809[:yyrl3809] + yyrg3828 := len(yyv3828) > 0 + yyv23828 := yyv3828 + yyrl3828, yyrt3828 = z.DecInferLen(yyl3828, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3828 { + if yyrl3828 <= cap(yyv3828) { + yyv3828 = yyv3828[:yyrl3828] } else { - yyv3809 = make([]LimitRange, yyrl3809) + yyv3828 = make([]LimitRange, yyrl3828) } } else { - yyv3809 = make([]LimitRange, yyrl3809) + yyv3828 = make([]LimitRange, yyrl3828) } - yyc3809 = true - yyrr3809 = len(yyv3809) - if yyrg3809 { - copy(yyv3809, yyv23809) + yyc3828 = true + yyrr3828 = len(yyv3828) + if yyrg3828 { + copy(yyv3828, yyv23828) } - } else if yyl3809 != len(yyv3809) { - yyv3809 = yyv3809[:yyl3809] - yyc3809 = true + } else if yyl3828 != len(yyv3828) { + yyv3828 = yyv3828[:yyl3828] + yyc3828 = true } - yyj3809 := 0 - for ; yyj3809 < yyrr3809; yyj3809++ { - yyh3809.ElemContainerState(yyj3809) + yyj3828 := 0 + for ; yyj3828 < yyrr3828; yyj3828++ { + yyh3828.ElemContainerState(yyj3828) if r.TryDecodeAsNil() { - yyv3809[yyj3809] = LimitRange{} + yyv3828[yyj3828] = LimitRange{} } else { - yyv3810 := &yyv3809[yyj3809] - yyv3810.CodecDecodeSelf(d) + yyv3829 := &yyv3828[yyj3828] + yyv3829.CodecDecodeSelf(d) } } - if yyrt3809 { - for ; yyj3809 < yyl3809; yyj3809++ { - yyv3809 = append(yyv3809, LimitRange{}) - yyh3809.ElemContainerState(yyj3809) + if yyrt3828 { + for ; yyj3828 < yyl3828; yyj3828++ { + yyv3828 = append(yyv3828, LimitRange{}) + yyh3828.ElemContainerState(yyj3828) if r.TryDecodeAsNil() { - yyv3809[yyj3809] = LimitRange{} + yyv3828[yyj3828] = LimitRange{} } else { - yyv3811 := &yyv3809[yyj3809] - yyv3811.CodecDecodeSelf(d) + yyv3830 := &yyv3828[yyj3828] + yyv3830.CodecDecodeSelf(d) } } } } else { - yyj3809 := 0 - for ; !r.CheckBreak(); yyj3809++ { + yyj3828 := 0 + for ; !r.CheckBreak(); yyj3828++ { - if yyj3809 >= len(yyv3809) { - yyv3809 = append(yyv3809, LimitRange{}) // var yyz3809 LimitRange - yyc3809 = true + if yyj3828 >= len(yyv3828) { + yyv3828 = append(yyv3828, LimitRange{}) // var yyz3828 LimitRange + yyc3828 = true } - yyh3809.ElemContainerState(yyj3809) - if yyj3809 < len(yyv3809) { + yyh3828.ElemContainerState(yyj3828) + if yyj3828 < len(yyv3828) { if r.TryDecodeAsNil() { - yyv3809[yyj3809] = LimitRange{} + yyv3828[yyj3828] = LimitRange{} } else { - yyv3812 := &yyv3809[yyj3809] - yyv3812.CodecDecodeSelf(d) + yyv3831 := &yyv3828[yyj3828] + yyv3831.CodecDecodeSelf(d) } } else { @@ -48574,17 +48840,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj3809 < len(yyv3809) { - yyv3809 = yyv3809[:yyj3809] - yyc3809 = true - } else if yyj3809 == 0 && yyv3809 == nil { - yyv3809 = []LimitRange{} - yyc3809 = true + if yyj3828 < len(yyv3828) { + yyv3828 = yyv3828[:yyj3828] + yyc3828 = true + } else if yyj3828 == 0 && yyv3828 == nil { + yyv3828 = []LimitRange{} + yyc3828 = true } } - yyh3809.End() - if yyc3809 { - *v = yyv3809 + yyh3828.End() + if yyc3828 { + *v = yyv3828 } } @@ -48593,10 +48859,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3813 := range v { + for _, yyv3832 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3814 := &yyv3813 - yy3814.CodecEncodeSelf(e) + yy3833 := &yyv3832 + yy3833.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48606,83 +48872,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3815 := *v - yyh3815, yyl3815 := z.DecSliceHelperStart() - var yyc3815 bool - if yyl3815 == 0 { - if yyv3815 == nil { - yyv3815 = []ResourceQuota{} - yyc3815 = true - } else if len(yyv3815) != 0 { - yyv3815 = yyv3815[:0] - yyc3815 = true + yyv3834 := *v + yyh3834, yyl3834 := z.DecSliceHelperStart() + var yyc3834 bool + if yyl3834 == 0 { + if yyv3834 == nil { + yyv3834 = []ResourceQuota{} + yyc3834 = true + } else if len(yyv3834) != 0 { + yyv3834 = yyv3834[:0] + yyc3834 = true } - } else if yyl3815 > 0 { - var yyrr3815, yyrl3815 int - var yyrt3815 bool - if yyl3815 > cap(yyv3815) { + } else if yyl3834 > 0 { + var yyrr3834, yyrl3834 int + var yyrt3834 bool + if yyl3834 > cap(yyv3834) { - yyrg3815 := len(yyv3815) > 0 - yyv23815 := yyv3815 - yyrl3815, yyrt3815 = z.DecInferLen(yyl3815, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3815 { - if yyrl3815 <= cap(yyv3815) { - yyv3815 = yyv3815[:yyrl3815] + yyrg3834 := len(yyv3834) > 0 + yyv23834 := yyv3834 + yyrl3834, yyrt3834 = z.DecInferLen(yyl3834, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3834 { + if yyrl3834 <= cap(yyv3834) { + yyv3834 = yyv3834[:yyrl3834] } else { - yyv3815 = make([]ResourceQuota, yyrl3815) + yyv3834 = make([]ResourceQuota, yyrl3834) } } else { - yyv3815 = make([]ResourceQuota, yyrl3815) + yyv3834 = make([]ResourceQuota, yyrl3834) } - yyc3815 = true - yyrr3815 = len(yyv3815) - if yyrg3815 { - copy(yyv3815, yyv23815) + yyc3834 = true + yyrr3834 = len(yyv3834) + if yyrg3834 { + copy(yyv3834, yyv23834) } - } else if yyl3815 != len(yyv3815) { - yyv3815 = yyv3815[:yyl3815] - yyc3815 = true + } else if yyl3834 != len(yyv3834) { + yyv3834 = yyv3834[:yyl3834] + yyc3834 = true } - yyj3815 := 0 - for ; yyj3815 < yyrr3815; yyj3815++ { - yyh3815.ElemContainerState(yyj3815) + yyj3834 := 0 + for ; yyj3834 < yyrr3834; yyj3834++ { + yyh3834.ElemContainerState(yyj3834) if r.TryDecodeAsNil() { - yyv3815[yyj3815] = ResourceQuota{} + yyv3834[yyj3834] = ResourceQuota{} } else { - yyv3816 := &yyv3815[yyj3815] - yyv3816.CodecDecodeSelf(d) + yyv3835 := &yyv3834[yyj3834] + yyv3835.CodecDecodeSelf(d) } } - if yyrt3815 { - for ; yyj3815 < yyl3815; yyj3815++ { - yyv3815 = append(yyv3815, ResourceQuota{}) - yyh3815.ElemContainerState(yyj3815) + if yyrt3834 { + for ; yyj3834 < yyl3834; yyj3834++ { + yyv3834 = append(yyv3834, ResourceQuota{}) + yyh3834.ElemContainerState(yyj3834) if r.TryDecodeAsNil() { - yyv3815[yyj3815] = ResourceQuota{} + yyv3834[yyj3834] = ResourceQuota{} } else { - yyv3817 := &yyv3815[yyj3815] - yyv3817.CodecDecodeSelf(d) + yyv3836 := &yyv3834[yyj3834] + yyv3836.CodecDecodeSelf(d) } } } } else { - yyj3815 := 0 - for ; !r.CheckBreak(); yyj3815++ { + yyj3834 := 0 + for ; !r.CheckBreak(); yyj3834++ { - if yyj3815 >= len(yyv3815) { - yyv3815 = append(yyv3815, ResourceQuota{}) // var yyz3815 ResourceQuota - yyc3815 = true + if yyj3834 >= len(yyv3834) { + yyv3834 = append(yyv3834, ResourceQuota{}) // var yyz3834 ResourceQuota + yyc3834 = true } - yyh3815.ElemContainerState(yyj3815) - if yyj3815 < len(yyv3815) { + yyh3834.ElemContainerState(yyj3834) + if yyj3834 < len(yyv3834) { if r.TryDecodeAsNil() { - yyv3815[yyj3815] = ResourceQuota{} + yyv3834[yyj3834] = ResourceQuota{} } else { - yyv3818 := &yyv3815[yyj3815] - yyv3818.CodecDecodeSelf(d) + yyv3837 := &yyv3834[yyj3834] + yyv3837.CodecDecodeSelf(d) } } else { @@ -48690,17 +48956,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj3815 < len(yyv3815) { - yyv3815 = yyv3815[:yyj3815] - yyc3815 = true - } else if yyj3815 == 0 && yyv3815 == nil { - yyv3815 = []ResourceQuota{} - yyc3815 = true + if yyj3834 < len(yyv3834) { + yyv3834 = yyv3834[:yyj3834] + yyc3834 = true + } else if yyj3834 == 0 && yyv3834 == nil { + yyv3834 = []ResourceQuota{} + yyc3834 = true } } - yyh3815.End() - if yyc3815 { - *v = yyv3815 + yyh3834.End() + if yyc3834 { + *v = yyv3834 } } @@ -48709,23 +48975,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3819, yyv3819 := range v { + for yyk3838, yyv3838 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym3820 := z.EncBinary() - _ = yym3820 + yym3839 := z.EncBinary() + _ = yym3839 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk3819)) + r.EncodeString(codecSelferC_UTF81234, string(yyk3838)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv3819 == nil { + if yyv3838 == nil { r.EncodeNil() } else { - yym3821 := z.EncBinary() - _ = yym3821 + yym3840 := z.EncBinary() + _ = yym3840 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3819)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3838)) } } } @@ -48737,80 +49003,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3822 := *v - yyl3822 := r.ReadMapStart() - yybh3822 := z.DecBasicHandle() - if yyv3822 == nil { - yyrl3822, _ := z.DecInferLen(yyl3822, yybh3822.MaxInitLen, 40) - yyv3822 = make(map[string][]uint8, yyrl3822) - *v = yyv3822 + yyv3841 := *v + yyl3841 := r.ReadMapStart() + yybh3841 := z.DecBasicHandle() + if yyv3841 == nil { + yyrl3841, _ := z.DecInferLen(yyl3841, yybh3841.MaxInitLen, 40) + yyv3841 = make(map[string][]uint8, yyrl3841) + *v = yyv3841 } - var yymk3822 string - var yymv3822 []uint8 - var yymg3822 bool - if yybh3822.MapValueReset { - yymg3822 = true + var yymk3841 string + var yymv3841 []uint8 + var yymg3841 bool + if yybh3841.MapValueReset { + yymg3841 = true } - if yyl3822 > 0 { - for yyj3822 := 0; yyj3822 < yyl3822; yyj3822++ { + if yyl3841 > 0 { + for yyj3841 := 0; yyj3841 < yyl3841; yyj3841++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3822 = "" + yymk3841 = "" } else { - yymk3822 = string(r.DecodeString()) + yymk3841 = string(r.DecodeString()) } - if yymg3822 { - yymv3822 = yyv3822[yymk3822] + if yymg3841 { + yymv3841 = yyv3841[yymk3841] } else { - yymv3822 = nil + yymv3841 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3822 = nil + yymv3841 = nil } else { - yyv3824 := &yymv3822 - yym3825 := z.DecBinary() - _ = yym3825 + yyv3843 := &yymv3841 + yym3844 := z.DecBinary() + _ = yym3844 if false { } else { - *yyv3824 = r.DecodeBytes(*(*[]byte)(yyv3824), false, false) + *yyv3843 = r.DecodeBytes(*(*[]byte)(yyv3843), false, false) } } - if yyv3822 != nil { - yyv3822[yymk3822] = yymv3822 + if yyv3841 != nil { + yyv3841[yymk3841] = yymv3841 } } - } else if yyl3822 < 0 { - for yyj3822 := 0; !r.CheckBreak(); yyj3822++ { + } else if yyl3841 < 0 { + for yyj3841 := 0; !r.CheckBreak(); yyj3841++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3822 = "" + yymk3841 = "" } else { - yymk3822 = string(r.DecodeString()) + yymk3841 = string(r.DecodeString()) } - if yymg3822 { - yymv3822 = yyv3822[yymk3822] + if yymg3841 { + yymv3841 = yyv3841[yymk3841] } else { - yymv3822 = nil + yymv3841 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3822 = nil + yymv3841 = nil } else { - yyv3827 := &yymv3822 - yym3828 := z.DecBinary() - _ = yym3828 + yyv3846 := &yymv3841 + yym3847 := z.DecBinary() + _ = yym3847 if false { } else { - *yyv3827 = r.DecodeBytes(*(*[]byte)(yyv3827), false, false) + *yyv3846 = r.DecodeBytes(*(*[]byte)(yyv3846), false, false) } } - if yyv3822 != nil { - yyv3822[yymk3822] = yymv3822 + if yyv3841 != nil { + yyv3841[yymk3841] = yymv3841 } } } // else len==0: TODO: Should we clear map entries? @@ -48822,10 +49088,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3829 := range v { + for _, yyv3848 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3830 := &yyv3829 - yy3830.CodecEncodeSelf(e) + yy3849 := &yyv3848 + yy3849.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48835,83 +49101,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3831 := *v - yyh3831, yyl3831 := z.DecSliceHelperStart() - var yyc3831 bool - if yyl3831 == 0 { - if yyv3831 == nil { - yyv3831 = []Secret{} - yyc3831 = true - } else if len(yyv3831) != 0 { - yyv3831 = yyv3831[:0] - yyc3831 = true + yyv3850 := *v + yyh3850, yyl3850 := z.DecSliceHelperStart() + var yyc3850 bool + if yyl3850 == 0 { + if yyv3850 == nil { + yyv3850 = []Secret{} + yyc3850 = true + } else if len(yyv3850) != 0 { + yyv3850 = yyv3850[:0] + yyc3850 = true } - } else if yyl3831 > 0 { - var yyrr3831, yyrl3831 int - var yyrt3831 bool - if yyl3831 > cap(yyv3831) { + } else if yyl3850 > 0 { + var yyrr3850, yyrl3850 int + var yyrt3850 bool + if yyl3850 > cap(yyv3850) { - yyrg3831 := len(yyv3831) > 0 - yyv23831 := yyv3831 - yyrl3831, yyrt3831 = z.DecInferLen(yyl3831, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3831 { - if yyrl3831 <= cap(yyv3831) { - yyv3831 = yyv3831[:yyrl3831] + yyrg3850 := len(yyv3850) > 0 + yyv23850 := yyv3850 + yyrl3850, yyrt3850 = z.DecInferLen(yyl3850, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3850 { + if yyrl3850 <= cap(yyv3850) { + yyv3850 = yyv3850[:yyrl3850] } else { - yyv3831 = make([]Secret, yyrl3831) + yyv3850 = make([]Secret, yyrl3850) } } else { - yyv3831 = make([]Secret, yyrl3831) + yyv3850 = make([]Secret, yyrl3850) } - yyc3831 = true - yyrr3831 = len(yyv3831) - if yyrg3831 { - copy(yyv3831, yyv23831) + yyc3850 = true + yyrr3850 = len(yyv3850) + if yyrg3850 { + copy(yyv3850, yyv23850) } - } else if yyl3831 != len(yyv3831) { - yyv3831 = yyv3831[:yyl3831] - yyc3831 = true + } else if yyl3850 != len(yyv3850) { + yyv3850 = yyv3850[:yyl3850] + yyc3850 = true } - yyj3831 := 0 - for ; yyj3831 < yyrr3831; yyj3831++ { - yyh3831.ElemContainerState(yyj3831) + yyj3850 := 0 + for ; yyj3850 < yyrr3850; yyj3850++ { + yyh3850.ElemContainerState(yyj3850) if r.TryDecodeAsNil() { - yyv3831[yyj3831] = Secret{} + yyv3850[yyj3850] = Secret{} } else { - yyv3832 := &yyv3831[yyj3831] - yyv3832.CodecDecodeSelf(d) + yyv3851 := &yyv3850[yyj3850] + yyv3851.CodecDecodeSelf(d) } } - if yyrt3831 { - for ; yyj3831 < yyl3831; yyj3831++ { - yyv3831 = append(yyv3831, Secret{}) - yyh3831.ElemContainerState(yyj3831) + if yyrt3850 { + for ; yyj3850 < yyl3850; yyj3850++ { + yyv3850 = append(yyv3850, Secret{}) + yyh3850.ElemContainerState(yyj3850) if r.TryDecodeAsNil() { - yyv3831[yyj3831] = Secret{} + yyv3850[yyj3850] = Secret{} } else { - yyv3833 := &yyv3831[yyj3831] - yyv3833.CodecDecodeSelf(d) + yyv3852 := &yyv3850[yyj3850] + yyv3852.CodecDecodeSelf(d) } } } } else { - yyj3831 := 0 - for ; !r.CheckBreak(); yyj3831++ { + yyj3850 := 0 + for ; !r.CheckBreak(); yyj3850++ { - if yyj3831 >= len(yyv3831) { - yyv3831 = append(yyv3831, Secret{}) // var yyz3831 Secret - yyc3831 = true + if yyj3850 >= len(yyv3850) { + yyv3850 = append(yyv3850, Secret{}) // var yyz3850 Secret + yyc3850 = true } - yyh3831.ElemContainerState(yyj3831) - if yyj3831 < len(yyv3831) { + yyh3850.ElemContainerState(yyj3850) + if yyj3850 < len(yyv3850) { if r.TryDecodeAsNil() { - yyv3831[yyj3831] = Secret{} + yyv3850[yyj3850] = Secret{} } else { - yyv3834 := &yyv3831[yyj3831] - yyv3834.CodecDecodeSelf(d) + yyv3853 := &yyv3850[yyj3850] + yyv3853.CodecDecodeSelf(d) } } else { @@ -48919,17 +49185,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj3831 < len(yyv3831) { - yyv3831 = yyv3831[:yyj3831] - yyc3831 = true - } else if yyj3831 == 0 && yyv3831 == nil { - yyv3831 = []Secret{} - yyc3831 = true + if yyj3850 < len(yyv3850) { + yyv3850 = yyv3850[:yyj3850] + yyc3850 = true + } else if yyj3850 == 0 && yyv3850 == nil { + yyv3850 = []Secret{} + yyc3850 = true } } - yyh3831.End() - if yyc3831 { - *v = yyv3831 + yyh3850.End() + if yyc3850 { + *v = yyv3850 } } @@ -48938,10 +49204,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3835 := range v { + for _, yyv3854 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3836 := &yyv3835 - yy3836.CodecEncodeSelf(e) + yy3855 := &yyv3854 + yy3855.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48951,83 +49217,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3837 := *v - yyh3837, yyl3837 := z.DecSliceHelperStart() - var yyc3837 bool - if yyl3837 == 0 { - if yyv3837 == nil { - yyv3837 = []ComponentCondition{} - yyc3837 = true - } else if len(yyv3837) != 0 { - yyv3837 = yyv3837[:0] - yyc3837 = true + yyv3856 := *v + yyh3856, yyl3856 := z.DecSliceHelperStart() + var yyc3856 bool + if yyl3856 == 0 { + if yyv3856 == nil { + yyv3856 = []ComponentCondition{} + yyc3856 = true + } else if len(yyv3856) != 0 { + yyv3856 = yyv3856[:0] + yyc3856 = true } - } else if yyl3837 > 0 { - var yyrr3837, yyrl3837 int - var yyrt3837 bool - if yyl3837 > cap(yyv3837) { + } else if yyl3856 > 0 { + var yyrr3856, yyrl3856 int + var yyrt3856 bool + if yyl3856 > cap(yyv3856) { - yyrg3837 := len(yyv3837) > 0 - yyv23837 := yyv3837 - yyrl3837, yyrt3837 = z.DecInferLen(yyl3837, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3837 { - if yyrl3837 <= cap(yyv3837) { - yyv3837 = yyv3837[:yyrl3837] + yyrg3856 := len(yyv3856) > 0 + yyv23856 := yyv3856 + yyrl3856, yyrt3856 = z.DecInferLen(yyl3856, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3856 { + if yyrl3856 <= cap(yyv3856) { + yyv3856 = yyv3856[:yyrl3856] } else { - yyv3837 = make([]ComponentCondition, yyrl3837) + yyv3856 = make([]ComponentCondition, yyrl3856) } } else { - yyv3837 = make([]ComponentCondition, yyrl3837) + yyv3856 = make([]ComponentCondition, yyrl3856) } - yyc3837 = true - yyrr3837 = len(yyv3837) - if yyrg3837 { - copy(yyv3837, yyv23837) + yyc3856 = true + yyrr3856 = len(yyv3856) + if yyrg3856 { + copy(yyv3856, yyv23856) } - } else if yyl3837 != len(yyv3837) { - yyv3837 = yyv3837[:yyl3837] - yyc3837 = true + } else if yyl3856 != len(yyv3856) { + yyv3856 = yyv3856[:yyl3856] + yyc3856 = true } - yyj3837 := 0 - for ; yyj3837 < yyrr3837; yyj3837++ { - yyh3837.ElemContainerState(yyj3837) + yyj3856 := 0 + for ; yyj3856 < yyrr3856; yyj3856++ { + yyh3856.ElemContainerState(yyj3856) if r.TryDecodeAsNil() { - yyv3837[yyj3837] = ComponentCondition{} + yyv3856[yyj3856] = ComponentCondition{} } else { - yyv3838 := &yyv3837[yyj3837] - yyv3838.CodecDecodeSelf(d) + yyv3857 := &yyv3856[yyj3856] + yyv3857.CodecDecodeSelf(d) } } - if yyrt3837 { - for ; yyj3837 < yyl3837; yyj3837++ { - yyv3837 = append(yyv3837, ComponentCondition{}) - yyh3837.ElemContainerState(yyj3837) + if yyrt3856 { + for ; yyj3856 < yyl3856; yyj3856++ { + yyv3856 = append(yyv3856, ComponentCondition{}) + yyh3856.ElemContainerState(yyj3856) if r.TryDecodeAsNil() { - yyv3837[yyj3837] = ComponentCondition{} + yyv3856[yyj3856] = ComponentCondition{} } else { - yyv3839 := &yyv3837[yyj3837] - yyv3839.CodecDecodeSelf(d) + yyv3858 := &yyv3856[yyj3856] + yyv3858.CodecDecodeSelf(d) } } } } else { - yyj3837 := 0 - for ; !r.CheckBreak(); yyj3837++ { + yyj3856 := 0 + for ; !r.CheckBreak(); yyj3856++ { - if yyj3837 >= len(yyv3837) { - yyv3837 = append(yyv3837, ComponentCondition{}) // var yyz3837 ComponentCondition - yyc3837 = true + if yyj3856 >= len(yyv3856) { + yyv3856 = append(yyv3856, ComponentCondition{}) // var yyz3856 ComponentCondition + yyc3856 = true } - yyh3837.ElemContainerState(yyj3837) - if yyj3837 < len(yyv3837) { + yyh3856.ElemContainerState(yyj3856) + if yyj3856 < len(yyv3856) { if r.TryDecodeAsNil() { - yyv3837[yyj3837] = ComponentCondition{} + yyv3856[yyj3856] = ComponentCondition{} } else { - yyv3840 := &yyv3837[yyj3837] - yyv3840.CodecDecodeSelf(d) + yyv3859 := &yyv3856[yyj3856] + yyv3859.CodecDecodeSelf(d) } } else { @@ -49035,17 +49301,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj3837 < len(yyv3837) { - yyv3837 = yyv3837[:yyj3837] - yyc3837 = true - } else if yyj3837 == 0 && yyv3837 == nil { - yyv3837 = []ComponentCondition{} - yyc3837 = true + if yyj3856 < len(yyv3856) { + yyv3856 = yyv3856[:yyj3856] + yyc3856 = true + } else if yyj3856 == 0 && yyv3856 == nil { + yyv3856 = []ComponentCondition{} + yyc3856 = true } } - yyh3837.End() - if yyc3837 { - *v = yyv3837 + yyh3856.End() + if yyc3856 { + *v = yyv3856 } } @@ -49054,10 +49320,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3841 := range v { + for _, yyv3860 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3842 := &yyv3841 - yy3842.CodecEncodeSelf(e) + yy3861 := &yyv3860 + yy3861.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49067,83 +49333,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3843 := *v - yyh3843, yyl3843 := z.DecSliceHelperStart() - var yyc3843 bool - if yyl3843 == 0 { - if yyv3843 == nil { - yyv3843 = []ComponentStatus{} - yyc3843 = true - } else if len(yyv3843) != 0 { - yyv3843 = yyv3843[:0] - yyc3843 = true + yyv3862 := *v + yyh3862, yyl3862 := z.DecSliceHelperStart() + var yyc3862 bool + if yyl3862 == 0 { + if yyv3862 == nil { + yyv3862 = []ComponentStatus{} + yyc3862 = true + } else if len(yyv3862) != 0 { + yyv3862 = yyv3862[:0] + yyc3862 = true } - } else if yyl3843 > 0 { - var yyrr3843, yyrl3843 int - var yyrt3843 bool - if yyl3843 > cap(yyv3843) { + } else if yyl3862 > 0 { + var yyrr3862, yyrl3862 int + var yyrt3862 bool + if yyl3862 > cap(yyv3862) { - yyrg3843 := len(yyv3843) > 0 - yyv23843 := yyv3843 - yyrl3843, yyrt3843 = z.DecInferLen(yyl3843, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3843 { - if yyrl3843 <= cap(yyv3843) { - yyv3843 = yyv3843[:yyrl3843] + yyrg3862 := len(yyv3862) > 0 + yyv23862 := yyv3862 + yyrl3862, yyrt3862 = z.DecInferLen(yyl3862, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3862 { + if yyrl3862 <= cap(yyv3862) { + yyv3862 = yyv3862[:yyrl3862] } else { - yyv3843 = make([]ComponentStatus, yyrl3843) + yyv3862 = make([]ComponentStatus, yyrl3862) } } else { - yyv3843 = make([]ComponentStatus, yyrl3843) + yyv3862 = make([]ComponentStatus, yyrl3862) } - yyc3843 = true - yyrr3843 = len(yyv3843) - if yyrg3843 { - copy(yyv3843, yyv23843) + yyc3862 = true + yyrr3862 = len(yyv3862) + if yyrg3862 { + copy(yyv3862, yyv23862) } - } else if yyl3843 != len(yyv3843) { - yyv3843 = yyv3843[:yyl3843] - yyc3843 = true + } else if yyl3862 != len(yyv3862) { + yyv3862 = yyv3862[:yyl3862] + yyc3862 = true } - yyj3843 := 0 - for ; yyj3843 < yyrr3843; yyj3843++ { - yyh3843.ElemContainerState(yyj3843) + yyj3862 := 0 + for ; yyj3862 < yyrr3862; yyj3862++ { + yyh3862.ElemContainerState(yyj3862) if r.TryDecodeAsNil() { - yyv3843[yyj3843] = ComponentStatus{} + yyv3862[yyj3862] = ComponentStatus{} } else { - yyv3844 := &yyv3843[yyj3843] - yyv3844.CodecDecodeSelf(d) + yyv3863 := &yyv3862[yyj3862] + yyv3863.CodecDecodeSelf(d) } } - if yyrt3843 { - for ; yyj3843 < yyl3843; yyj3843++ { - yyv3843 = append(yyv3843, ComponentStatus{}) - yyh3843.ElemContainerState(yyj3843) + if yyrt3862 { + for ; yyj3862 < yyl3862; yyj3862++ { + yyv3862 = append(yyv3862, ComponentStatus{}) + yyh3862.ElemContainerState(yyj3862) if r.TryDecodeAsNil() { - yyv3843[yyj3843] = ComponentStatus{} + yyv3862[yyj3862] = ComponentStatus{} } else { - yyv3845 := &yyv3843[yyj3843] - yyv3845.CodecDecodeSelf(d) + yyv3864 := &yyv3862[yyj3862] + yyv3864.CodecDecodeSelf(d) } } } } else { - yyj3843 := 0 - for ; !r.CheckBreak(); yyj3843++ { + yyj3862 := 0 + for ; !r.CheckBreak(); yyj3862++ { - if yyj3843 >= len(yyv3843) { - yyv3843 = append(yyv3843, ComponentStatus{}) // var yyz3843 ComponentStatus - yyc3843 = true + if yyj3862 >= len(yyv3862) { + yyv3862 = append(yyv3862, ComponentStatus{}) // var yyz3862 ComponentStatus + yyc3862 = true } - yyh3843.ElemContainerState(yyj3843) - if yyj3843 < len(yyv3843) { + yyh3862.ElemContainerState(yyj3862) + if yyj3862 < len(yyv3862) { if r.TryDecodeAsNil() { - yyv3843[yyj3843] = ComponentStatus{} + yyv3862[yyj3862] = ComponentStatus{} } else { - yyv3846 := &yyv3843[yyj3843] - yyv3846.CodecDecodeSelf(d) + yyv3865 := &yyv3862[yyj3862] + yyv3865.CodecDecodeSelf(d) } } else { @@ -49151,16 +49417,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj3843 < len(yyv3843) { - yyv3843 = yyv3843[:yyj3843] - yyc3843 = true - } else if yyj3843 == 0 && yyv3843 == nil { - yyv3843 = []ComponentStatus{} - yyc3843 = true + if yyj3862 < len(yyv3862) { + yyv3862 = yyv3862[:yyj3862] + yyc3862 = true + } else if yyj3862 == 0 && yyv3862 == nil { + yyv3862 = []ComponentStatus{} + yyc3862 = true } } - yyh3843.End() - if yyc3843 { - *v = yyv3843 + yyh3862.End() + if yyc3862 { + *v = yyv3862 } } diff --git a/pkg/api/v1/conversion_generated.go b/pkg/api/v1/conversion_generated.go index 6c08e6920a1..f861b74f131 100644 --- a/pkg/api/v1/conversion_generated.go +++ b/pkg/api/v1/conversion_generated.go @@ -203,6 +203,21 @@ func Convert_api_ComponentStatusList_To_v1_ComponentStatusList(in *api.Component return autoConvert_api_ComponentStatusList_To_v1_ComponentStatusList(in, out, s) } +func autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in *api.ConfigMapKeySelector, out *ConfigMapKeySelector, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*api.ConfigMapKeySelector))(in) + } + if err := Convert_api_LocalObjectReference_To_v1_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + out.Key = in.Key + return nil +} + +func Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in *api.ConfigMapKeySelector, out *ConfigMapKeySelector, s conversion.Scope) error { + return autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in, out, s) +} + func autoConvert_api_Container_To_v1_Container(in *api.Container, out *Container, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*api.Container))(in) @@ -698,6 +713,15 @@ func autoConvert_api_EnvVarSource_To_v1_EnvVarSource(in *api.EnvVarSource, out * } else { out.FieldRef = nil } + // unable to generate simple pointer conversion for api.ConfigMapKeySelector -> v1.ConfigMapKeySelector + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(ConfigMapKeySelector) + if err := Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in.ConfigMapKeyRef, out.ConfigMapKeyRef, s); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -3392,6 +3416,21 @@ func Convert_v1_ComponentStatusList_To_api_ComponentStatusList(in *ComponentStat return autoConvert_v1_ComponentStatusList_To_api_ComponentStatusList(in, out, s) } +func autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*ConfigMapKeySelector))(in) + } + if err := Convert_v1_LocalObjectReference_To_api_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + out.Key = in.Key + return nil +} + +func Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error { + return autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in, out, s) +} + func autoConvert_v1_Container_To_api_Container(in *Container, out *api.Container, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*Container))(in) @@ -3887,6 +3926,15 @@ func autoConvert_v1_EnvVarSource_To_api_EnvVarSource(in *EnvVarSource, out *api. } else { out.FieldRef = nil } + // unable to generate simple pointer conversion for v1.ConfigMapKeySelector -> api.ConfigMapKeySelector + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(api.ConfigMapKeySelector) + if err := Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in.ConfigMapKeyRef, out.ConfigMapKeyRef, s); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -6292,6 +6340,7 @@ func init() { autoConvert_api_ComponentCondition_To_v1_ComponentCondition, autoConvert_api_ComponentStatusList_To_v1_ComponentStatusList, autoConvert_api_ComponentStatus_To_v1_ComponentStatus, + autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector, autoConvert_api_ContainerImage_To_v1_ContainerImage, autoConvert_api_ContainerPort_To_v1_ContainerPort, autoConvert_api_ContainerStateRunning_To_v1_ContainerStateRunning, @@ -6413,6 +6462,7 @@ func init() { autoConvert_v1_ComponentCondition_To_api_ComponentCondition, autoConvert_v1_ComponentStatusList_To_api_ComponentStatusList, autoConvert_v1_ComponentStatus_To_api_ComponentStatus, + autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector, autoConvert_v1_ContainerImage_To_api_ContainerImage, autoConvert_v1_ContainerPort_To_api_ContainerPort, autoConvert_v1_ContainerStateRunning_To_api_ContainerStateRunning, diff --git a/pkg/api/v1/deep_copy_generated.go b/pkg/api/v1/deep_copy_generated.go index 4c52b8275ca..ffe7839cd9a 100644 --- a/pkg/api/v1/deep_copy_generated.go +++ b/pkg/api/v1/deep_copy_generated.go @@ -184,6 +184,14 @@ func deepCopy_v1_ComponentStatusList(in ComponentStatusList, out *ComponentStatu return nil } +func deepCopy_v1_ConfigMapKeySelector(in ConfigMapKeySelector, out *ConfigMapKeySelector, c *conversion.Cloner) error { + if err := deepCopy_v1_LocalObjectReference(in.LocalObjectReference, &out.LocalObjectReference, c); err != nil { + return err + } + out.Key = in.Key + return nil +} + func deepCopy_v1_Container(in Container, out *Container, c *conversion.Cloner) error { out.Name = in.Name out.Image = in.Image @@ -533,6 +541,14 @@ func deepCopy_v1_EnvVarSource(in EnvVarSource, out *EnvVarSource, c *conversion. } else { out.FieldRef = nil } + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(ConfigMapKeySelector) + if err := deepCopy_v1_ConfigMapKeySelector(*in.ConfigMapKeyRef, out.ConfigMapKeyRef, c); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -2463,6 +2479,7 @@ func init() { deepCopy_v1_ComponentCondition, deepCopy_v1_ComponentStatus, deepCopy_v1_ComponentStatusList, + deepCopy_v1_ConfigMapKeySelector, deepCopy_v1_Container, deepCopy_v1_ContainerImage, deepCopy_v1_ContainerPort, diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 93e65cbaa5d..012950b029c 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -13154,14 +13154,16 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep939 := !z.EncBinary() yy2arr939 := z.EncBasicHandle().StructToArray - var yyq939 [1]bool + var yyq939 [2]bool _, _, _ = yysep939, yyq939, yy2arr939 const yyr939 bool = false + yyq939[0] = x.FieldRef != nil + yyq939[1] = x.ConfigMapKeyRef != nil var yynn939 int if yyr939 || yy2arr939 { - r.EncodeArrayStart(1) + r.EncodeArrayStart(2) } else { - yynn939 = 1 + yynn939 = 0 for _, b := range yyq939 { if b { yynn939++ @@ -13172,19 +13174,48 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr939 || yy2arr939 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.FieldRef == nil { - r.EncodeNil() + if yyq939[0] { + if x.FieldRef == nil { + r.EncodeNil() + } else { + x.FieldRef.CodecEncodeSelf(e) + } } else { - x.FieldRef.CodecEncodeSelf(e) + r.EncodeNil() } } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.FieldRef == nil { - r.EncodeNil() + if yyq939[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.FieldRef == nil { + r.EncodeNil() + } else { + x.FieldRef.CodecEncodeSelf(e) + } + } + } + if yyr939 || yy2arr939 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq939[1] { + if x.ConfigMapKeyRef == nil { + r.EncodeNil() + } else { + x.ConfigMapKeyRef.CodecEncodeSelf(e) + } } else { - x.FieldRef.CodecEncodeSelf(e) + r.EncodeNil() + } + } else { + if yyq939[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("configMapKeyRef")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ConfigMapKeyRef == nil { + r.EncodeNil() + } else { + x.ConfigMapKeyRef.CodecEncodeSelf(e) + } } } if yyr939 || yy2arr939 { @@ -13200,25 +13231,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym941 := z.DecBinary() - _ = yym941 + yym942 := z.DecBinary() + _ = yym942 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct942 := r.ContainerType() - if yyct942 == codecSelferValueTypeMap1234 { - yyl942 := r.ReadMapStart() - if yyl942 == 0 { + yyct943 := r.ContainerType() + if yyct943 == codecSelferValueTypeMap1234 { + yyl943 := r.ReadMapStart() + if yyl943 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl942, d) + x.codecDecodeSelfFromMap(yyl943, d) } - } else if yyct942 == codecSelferValueTypeArray1234 { - yyl942 := r.ReadArrayStart() - if yyl942 == 0 { + } else if yyct943 == codecSelferValueTypeArray1234 { + yyl943 := r.ReadArrayStart() + if yyl943 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl942, d) + x.codecDecodeSelfFromArray(yyl943, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13230,12 +13261,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys943Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys943Slc - var yyhl943 bool = l >= 0 - for yyj943 := 0; ; yyj943++ { - if yyhl943 { - if yyj943 >= l { + var yys944Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys944Slc + var yyhl944 bool = l >= 0 + for yyj944 := 0; ; yyj944++ { + if yyhl944 { + if yyj944 >= l { break } } else { @@ -13244,10 +13275,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys943Slc = r.DecodeBytes(yys943Slc, true, true) - yys943 := string(yys943Slc) + yys944Slc = r.DecodeBytes(yys944Slc, true, true) + yys944 := string(yys944Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys943 { + switch yys944 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -13259,10 +13290,21 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } + case "configMapKeyRef": + if r.TryDecodeAsNil() { + if x.ConfigMapKeyRef != nil { + x.ConfigMapKeyRef = nil + } + } else { + if x.ConfigMapKeyRef == nil { + x.ConfigMapKeyRef = new(ConfigMapKeySelector) + } + x.ConfigMapKeyRef.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys943) - } // end switch yys943 - } // end for yyj943 + z.DecStructFieldNotFound(-1, yys944) + } // end switch yys944 + } // end for yyj944 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13270,16 +13312,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj945 int - var yyb945 bool - var yyhl945 bool = l >= 0 - yyj945++ - if yyhl945 { - yyb945 = yyj945 > l + var yyj947 int + var yyb947 bool + var yyhl947 bool = l >= 0 + yyj947++ + if yyhl947 { + yyb947 = yyj947 > l } else { - yyb945 = r.CheckBreak() + yyb947 = r.CheckBreak() } - if yyb945 { + if yyb947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13294,18 +13336,39 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.FieldRef.CodecDecodeSelf(d) } - for { - yyj945++ - if yyhl945 { - yyb945 = yyj945 > l - } else { - yyb945 = r.CheckBreak() + yyj947++ + if yyhl947 { + yyb947 = yyj947 > l + } else { + yyb947 = r.CheckBreak() + } + if yyb947 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.ConfigMapKeyRef != nil { + x.ConfigMapKeyRef = nil } - if yyb945 { + } else { + if x.ConfigMapKeyRef == nil { + x.ConfigMapKeyRef = new(ConfigMapKeySelector) + } + x.ConfigMapKeyRef.CodecDecodeSelf(d) + } + for { + yyj947++ + if yyhl947 { + yyb947 = yyj947 > l + } else { + yyb947 = r.CheckBreak() + } + if yyb947 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj945-1, "") + z.DecStructFieldNotFound(yyj947-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13317,35 +13380,35 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym947 := z.EncBinary() - _ = yym947 + yym950 := z.EncBinary() + _ = yym950 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep948 := !z.EncBinary() - yy2arr948 := z.EncBasicHandle().StructToArray - var yyq948 [2]bool - _, _, _ = yysep948, yyq948, yy2arr948 - const yyr948 bool = false - yyq948[0] = x.APIVersion != "" - var yynn948 int - if yyr948 || yy2arr948 { + yysep951 := !z.EncBinary() + yy2arr951 := z.EncBasicHandle().StructToArray + var yyq951 [2]bool + _, _, _ = yysep951, yyq951, yy2arr951 + const yyr951 bool = false + yyq951[0] = x.APIVersion != "" + var yynn951 int + if yyr951 || yy2arr951 { r.EncodeArrayStart(2) } else { - yynn948 = 1 - for _, b := range yyq948 { + yynn951 = 1 + for _, b := range yyq951 { if b { - yynn948++ + yynn951++ } } - r.EncodeMapStart(yynn948) - yynn948 = 0 + r.EncodeMapStart(yynn951) + yynn951 = 0 } - if yyr948 || yy2arr948 { + if yyr951 || yy2arr951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq948[0] { - yym950 := z.EncBinary() - _ = yym950 + if yyq951[0] { + yym953 := z.EncBinary() + _ = yym953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -13354,22 +13417,22 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq948[0] { + if yyq951[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym951 := z.EncBinary() - _ = yym951 + yym954 := z.EncBinary() + _ = yym954 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr948 || yy2arr948 { + if yyr951 || yy2arr951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym953 := z.EncBinary() - _ = yym953 + yym956 := z.EncBinary() + _ = yym956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -13378,14 +13441,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym954 := z.EncBinary() - _ = yym954 + yym957 := z.EncBinary() + _ = yym957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr948 || yy2arr948 { + if yyr951 || yy2arr951 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13398,25 +13461,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym955 := z.DecBinary() - _ = yym955 + yym958 := z.DecBinary() + _ = yym958 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct956 := r.ContainerType() - if yyct956 == codecSelferValueTypeMap1234 { - yyl956 := r.ReadMapStart() - if yyl956 == 0 { + yyct959 := r.ContainerType() + if yyct959 == codecSelferValueTypeMap1234 { + yyl959 := r.ReadMapStart() + if yyl959 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl956, d) + x.codecDecodeSelfFromMap(yyl959, d) } - } else if yyct956 == codecSelferValueTypeArray1234 { - yyl956 := r.ReadArrayStart() - if yyl956 == 0 { + } else if yyct959 == codecSelferValueTypeArray1234 { + yyl959 := r.ReadArrayStart() + if yyl959 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl956, d) + x.codecDecodeSelfFromArray(yyl959, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13428,12 +13491,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys957Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys957Slc - var yyhl957 bool = l >= 0 - for yyj957 := 0; ; yyj957++ { - if yyhl957 { - if yyj957 >= l { + var yys960Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys960Slc + var yyhl960 bool = l >= 0 + for yyj960 := 0; ; yyj960++ { + if yyhl960 { + if yyj960 >= l { break } } else { @@ -13442,10 +13505,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys957Slc = r.DecodeBytes(yys957Slc, true, true) - yys957 := string(yys957Slc) + yys960Slc = r.DecodeBytes(yys960Slc, true, true) + yys960 := string(yys960Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys957 { + switch yys960 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -13459,9 +13522,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys957) - } // end switch yys957 - } // end for yyj957 + z.DecStructFieldNotFound(-1, yys960) + } // end switch yys960 + } // end for yyj960 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13469,16 +13532,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj960 int - var yyb960 bool - var yyhl960 bool = l >= 0 - yyj960++ - if yyhl960 { - yyb960 = yyj960 > l + var yyj963 int + var yyb963 bool + var yyhl963 bool = l >= 0 + yyj963++ + if yyhl963 { + yyb963 = yyj963 > l } else { - yyb960 = r.CheckBreak() + yyb963 = r.CheckBreak() } - if yyb960 { + if yyb963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13488,13 +13551,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj960++ - if yyhl960 { - yyb960 = yyj960 > l + yyj963++ + if yyhl963 { + yyb963 = yyj963 > l } else { - yyb960 = r.CheckBreak() + yyb963 = r.CheckBreak() } - if yyb960 { + if yyb963 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13505,17 +13568,227 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj960++ - if yyhl960 { - yyb960 = yyj960 > l + yyj963++ + if yyhl963 { + yyb963 = yyj963 > l } else { - yyb960 = r.CheckBreak() + yyb963 = r.CheckBreak() } - if yyb960 { + if yyb963 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj960-1, "") + z.DecStructFieldNotFound(yyj963-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ConfigMapKeySelector) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym966 := z.EncBinary() + _ = yym966 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep967 := !z.EncBinary() + yy2arr967 := z.EncBasicHandle().StructToArray + var yyq967 [2]bool + _, _, _ = yysep967, yyq967, yy2arr967 + const yyr967 bool = false + yyq967[0] = x.Name != "" + var yynn967 int + if yyr967 || yy2arr967 { + r.EncodeArrayStart(2) + } else { + yynn967 = 1 + for _, b := range yyq967 { + if b { + yynn967++ + } + } + r.EncodeMapStart(yynn967) + yynn967 = 0 + } + if yyr967 || yy2arr967 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq967[0] { + yym969 := z.EncBinary() + _ = yym969 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq967[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym970 := z.EncBinary() + _ = yym970 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr967 || yy2arr967 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym972 := z.EncBinary() + _ = yym972 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("key")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym973 := z.EncBinary() + _ = yym973 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Key)) + } + } + if yyr967 || yy2arr967 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ConfigMapKeySelector) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym974 := z.DecBinary() + _ = yym974 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct975 := r.ContainerType() + if yyct975 == codecSelferValueTypeMap1234 { + yyl975 := r.ReadMapStart() + if yyl975 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl975, d) + } + } else if yyct975 == codecSelferValueTypeArray1234 { + yyl975 := r.ReadArrayStart() + if yyl975 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl975, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ConfigMapKeySelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys976Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys976Slc + var yyhl976 bool = l >= 0 + for yyj976 := 0; ; yyj976++ { + if yyhl976 { + if yyj976 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys976Slc = r.DecodeBytes(yys976Slc, true, true) + yys976 := string(yys976Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys976 { + case "name": + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + case "key": + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys976) + } // end switch yys976 + } // end for yyj976 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ConfigMapKeySelector) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj979 int + var yyb979 bool + var yyhl979 bool = l >= 0 + yyj979++ + if yyhl979 { + yyb979 = yyj979 > l + } else { + yyb979 = r.CheckBreak() + } + if yyb979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Name = "" + } else { + x.Name = string(r.DecodeString()) + } + yyj979++ + if yyhl979 { + yyb979 = yyj979 > l + } else { + yyb979 = r.CheckBreak() + } + if yyb979 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Key = "" + } else { + x.Key = string(r.DecodeString()) + } + for { + yyj979++ + if yyhl979 { + yyb979 = yyj979 > l + } else { + yyb979 = r.CheckBreak() + } + if yyb979 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj979-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13527,37 +13800,37 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym963 := z.EncBinary() - _ = yym963 + yym982 := z.EncBinary() + _ = yym982 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep964 := !z.EncBinary() - yy2arr964 := z.EncBasicHandle().StructToArray - var yyq964 [4]bool - _, _, _ = yysep964, yyq964, yy2arr964 - const yyr964 bool = false - yyq964[0] = x.Path != "" - yyq964[2] = x.Host != "" - yyq964[3] = x.Scheme != "" - var yynn964 int - if yyr964 || yy2arr964 { + yysep983 := !z.EncBinary() + yy2arr983 := z.EncBasicHandle().StructToArray + var yyq983 [4]bool + _, _, _ = yysep983, yyq983, yy2arr983 + const yyr983 bool = false + yyq983[0] = x.Path != "" + yyq983[2] = x.Host != "" + yyq983[3] = x.Scheme != "" + var yynn983 int + if yyr983 || yy2arr983 { r.EncodeArrayStart(4) } else { - yynn964 = 1 - for _, b := range yyq964 { + yynn983 = 1 + for _, b := range yyq983 { if b { - yynn964++ + yynn983++ } } - r.EncodeMapStart(yynn964) - yynn964 = 0 + r.EncodeMapStart(yynn983) + yynn983 = 0 } - if yyr964 || yy2arr964 { + if yyr983 || yy2arr983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[0] { - yym966 := z.EncBinary() - _ = yym966 + if yyq983[0] { + yym985 := z.EncBinary() + _ = yym985 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13566,50 +13839,50 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq964[0] { + if yyq983[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym967 := z.EncBinary() - _ = yym967 + yym986 := z.EncBinary() + _ = yym986 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr964 || yy2arr964 { + if yyr983 || yy2arr983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy969 := &x.Port - yym970 := z.EncBinary() - _ = yym970 + yy988 := &x.Port + yym989 := z.EncBinary() + _ = yym989 if false { - } else if z.HasExtensions() && z.EncExt(yy969) { - } else if !yym970 && z.IsJSONHandle() { - z.EncJSONMarshal(yy969) + } else if z.HasExtensions() && z.EncExt(yy988) { + } else if !yym989 && z.IsJSONHandle() { + z.EncJSONMarshal(yy988) } else { - z.EncFallback(yy969) + z.EncFallback(yy988) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy971 := &x.Port - yym972 := z.EncBinary() - _ = yym972 + yy990 := &x.Port + yym991 := z.EncBinary() + _ = yym991 if false { - } else if z.HasExtensions() && z.EncExt(yy971) { - } else if !yym972 && z.IsJSONHandle() { - z.EncJSONMarshal(yy971) + } else if z.HasExtensions() && z.EncExt(yy990) { + } else if !yym991 && z.IsJSONHandle() { + z.EncJSONMarshal(yy990) } else { - z.EncFallback(yy971) + z.EncFallback(yy990) } } - if yyr964 || yy2arr964 { + if yyr983 || yy2arr983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[2] { - yym974 := z.EncBinary() - _ = yym974 + if yyq983[2] { + yym993 := z.EncBinary() + _ = yym993 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -13618,34 +13891,34 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq964[2] { + if yyq983[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym975 := z.EncBinary() - _ = yym975 + yym994 := z.EncBinary() + _ = yym994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr964 || yy2arr964 { + if yyr983 || yy2arr983 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq964[3] { + if yyq983[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq964[3] { + if yyq983[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr964 || yy2arr964 { + if yyr983 || yy2arr983 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13658,25 +13931,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym977 := z.DecBinary() - _ = yym977 + yym996 := z.DecBinary() + _ = yym996 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct978 := r.ContainerType() - if yyct978 == codecSelferValueTypeMap1234 { - yyl978 := r.ReadMapStart() - if yyl978 == 0 { + yyct997 := r.ContainerType() + if yyct997 == codecSelferValueTypeMap1234 { + yyl997 := r.ReadMapStart() + if yyl997 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl978, d) + x.codecDecodeSelfFromMap(yyl997, d) } - } else if yyct978 == codecSelferValueTypeArray1234 { - yyl978 := r.ReadArrayStart() - if yyl978 == 0 { + } else if yyct997 == codecSelferValueTypeArray1234 { + yyl997 := r.ReadArrayStart() + if yyl997 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl978, d) + x.codecDecodeSelfFromArray(yyl997, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13688,12 +13961,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys979Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys979Slc - var yyhl979 bool = l >= 0 - for yyj979 := 0; ; yyj979++ { - if yyhl979 { - if yyj979 >= l { + var yys998Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys998Slc + var yyhl998 bool = l >= 0 + for yyj998 := 0; ; yyj998++ { + if yyhl998 { + if yyj998 >= l { break } } else { @@ -13702,10 +13975,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys979Slc = r.DecodeBytes(yys979Slc, true, true) - yys979 := string(yys979Slc) + yys998Slc = r.DecodeBytes(yys998Slc, true, true) + yys998 := string(yys998Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys979 { + switch yys998 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -13716,15 +13989,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv981 := &x.Port - yym982 := z.DecBinary() - _ = yym982 + yyv1000 := &x.Port + yym1001 := z.DecBinary() + _ = yym1001 if false { - } else if z.HasExtensions() && z.DecExt(yyv981) { - } else if !yym982 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv981) + } else if z.HasExtensions() && z.DecExt(yyv1000) { + } else if !yym1001 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1000) } else { - z.DecFallback(yyv981, false) + z.DecFallback(yyv1000, false) } } case "host": @@ -13740,9 +14013,9 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys979) - } // end switch yys979 - } // end for yyj979 + z.DecStructFieldNotFound(-1, yys998) + } // end switch yys998 + } // end for yyj998 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13750,16 +14023,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj985 int - var yyb985 bool - var yyhl985 bool = l >= 0 - yyj985++ - if yyhl985 { - yyb985 = yyj985 > l + var yyj1004 int + var yyb1004 bool + var yyhl1004 bool = l >= 0 + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l } else { - yyb985 = r.CheckBreak() + yyb1004 = r.CheckBreak() } - if yyb985 { + if yyb1004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13769,259 +14042,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj985++ - if yyhl985 { - yyb985 = yyj985 > l + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l } else { - yyb985 = r.CheckBreak() + yyb1004 = r.CheckBreak() } - if yyb985 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Port = pkg5_intstr.IntOrString{} - } else { - yyv987 := &x.Port - yym988 := z.DecBinary() - _ = yym988 - if false { - } else if z.HasExtensions() && z.DecExt(yyv987) { - } else if !yym988 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv987) - } else { - z.DecFallback(yyv987, false) - } - } - yyj985++ - if yyhl985 { - yyb985 = yyj985 > l - } else { - yyb985 = r.CheckBreak() - } - if yyb985 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Host = "" - } else { - x.Host = string(r.DecodeString()) - } - yyj985++ - if yyhl985 { - yyb985 = yyj985 > l - } else { - yyb985 = r.CheckBreak() - } - if yyb985 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Scheme = "" - } else { - x.Scheme = URIScheme(r.DecodeString()) - } - for { - yyj985++ - if yyhl985 { - yyb985 = yyj985 > l - } else { - yyb985 = r.CheckBreak() - } - if yyb985 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj985-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym991 := z.EncBinary() - _ = yym991 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym992 := z.DecBinary() - _ = yym992 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym993 := z.EncBinary() - _ = yym993 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep994 := !z.EncBinary() - yy2arr994 := z.EncBasicHandle().StructToArray - var yyq994 [1]bool - _, _, _ = yysep994, yyq994, yy2arr994 - const yyr994 bool = false - var yynn994 int - if yyr994 || yy2arr994 { - r.EncodeArrayStart(1) - } else { - yynn994 = 1 - for _, b := range yyq994 { - if b { - yynn994++ - } - } - r.EncodeMapStart(yynn994) - yynn994 = 0 - } - if yyr994 || yy2arr994 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy996 := &x.Port - yym997 := z.EncBinary() - _ = yym997 - if false { - } else if z.HasExtensions() && z.EncExt(yy996) { - } else if !yym997 && z.IsJSONHandle() { - z.EncJSONMarshal(yy996) - } else { - z.EncFallback(yy996) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("port")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy998 := &x.Port - yym999 := z.EncBinary() - _ = yym999 - if false { - } else if z.HasExtensions() && z.EncExt(yy998) { - } else if !yym999 && z.IsJSONHandle() { - z.EncJSONMarshal(yy998) - } else { - z.EncFallback(yy998) - } - } - if yyr994 || yy2arr994 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1000 := z.DecBinary() - _ = yym1000 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1001 := r.ContainerType() - if yyct1001 == codecSelferValueTypeMap1234 { - yyl1001 := r.ReadMapStart() - if yyl1001 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1001, d) - } - } else if yyct1001 == codecSelferValueTypeArray1234 { - yyl1001 := r.ReadArrayStart() - if yyl1001 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1001, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1002Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1002Slc - var yyhl1002 bool = l >= 0 - for yyj1002 := 0; ; yyj1002++ { - if yyhl1002 { - if yyj1002 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1002Slc = r.DecodeBytes(yys1002Slc, true, true) - yys1002 := string(yys1002Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1002 { - case "port": - if r.TryDecodeAsNil() { - x.Port = pkg5_intstr.IntOrString{} - } else { - yyv1003 := &x.Port - yym1004 := z.DecBinary() - _ = yym1004 - if false { - } else if z.HasExtensions() && z.DecExt(yyv1003) { - } else if !yym1004 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1003) - } else { - z.DecFallback(yyv1003, false) - } - } - default: - z.DecStructFieldNotFound(-1, yys1002) - } // end switch yys1002 - } // end for yyj1002 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1005 int - var yyb1005 bool - var yyhl1005 bool = l >= 0 - yyj1005++ - if yyhl1005 { - yyb1005 = yyj1005 > l - } else { - yyb1005 = r.CheckBreak() - } - if yyb1005 { + if yyb1004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14040,18 +14067,264 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) z.DecFallback(yyv1006, false) } } + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l + } else { + yyb1004 = r.CheckBreak() + } + if yyb1004 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Host = "" + } else { + x.Host = string(r.DecodeString()) + } + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l + } else { + yyb1004 = r.CheckBreak() + } + if yyb1004 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Scheme = "" + } else { + x.Scheme = URIScheme(r.DecodeString()) + } for { - yyj1005++ - if yyhl1005 { - yyb1005 = yyj1005 > l + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l } else { - yyb1005 = r.CheckBreak() + yyb1004 = r.CheckBreak() } - if yyb1005 { + if yyb1004 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1005-1, "") + z.DecStructFieldNotFound(yyj1004-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym1010 := z.EncBinary() + _ = yym1010 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1011 := z.DecBinary() + _ = yym1011 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1012 := z.EncBinary() + _ = yym1012 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1013 := !z.EncBinary() + yy2arr1013 := z.EncBasicHandle().StructToArray + var yyq1013 [1]bool + _, _, _ = yysep1013, yyq1013, yy2arr1013 + const yyr1013 bool = false + var yynn1013 int + if yyr1013 || yy2arr1013 { + r.EncodeArrayStart(1) + } else { + yynn1013 = 1 + for _, b := range yyq1013 { + if b { + yynn1013++ + } + } + r.EncodeMapStart(yynn1013) + yynn1013 = 0 + } + if yyr1013 || yy2arr1013 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy1015 := &x.Port + yym1016 := z.EncBinary() + _ = yym1016 + if false { + } else if z.HasExtensions() && z.EncExt(yy1015) { + } else if !yym1016 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1015) + } else { + z.EncFallback(yy1015) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("port")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1017 := &x.Port + yym1018 := z.EncBinary() + _ = yym1018 + if false { + } else if z.HasExtensions() && z.EncExt(yy1017) { + } else if !yym1018 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1017) + } else { + z.EncFallback(yy1017) + } + } + if yyr1013 || yy2arr1013 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1019 := z.DecBinary() + _ = yym1019 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1020 := r.ContainerType() + if yyct1020 == codecSelferValueTypeMap1234 { + yyl1020 := r.ReadMapStart() + if yyl1020 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1020, d) + } + } else if yyct1020 == codecSelferValueTypeArray1234 { + yyl1020 := r.ReadArrayStart() + if yyl1020 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1020, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1021Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1021Slc + var yyhl1021 bool = l >= 0 + for yyj1021 := 0; ; yyj1021++ { + if yyhl1021 { + if yyj1021 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1021Slc = r.DecodeBytes(yys1021Slc, true, true) + yys1021 := string(yys1021Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1021 { + case "port": + if r.TryDecodeAsNil() { + x.Port = pkg5_intstr.IntOrString{} + } else { + yyv1022 := &x.Port + yym1023 := z.DecBinary() + _ = yym1023 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1022) { + } else if !yym1023 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1022) + } else { + z.DecFallback(yyv1022, false) + } + } + default: + z.DecStructFieldNotFound(-1, yys1021) + } // end switch yys1021 + } // end for yyj1021 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1024 int + var yyb1024 bool + var yyhl1024 bool = l >= 0 + yyj1024++ + if yyhl1024 { + yyb1024 = yyj1024 > l + } else { + yyb1024 = r.CheckBreak() + } + if yyb1024 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Port = pkg5_intstr.IntOrString{} + } else { + yyv1025 := &x.Port + yym1026 := z.DecBinary() + _ = yym1026 + if false { + } else if z.HasExtensions() && z.DecExt(yyv1025) { + } else if !yym1026 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1025) + } else { + z.DecFallback(yyv1025, false) + } + } + for { + yyj1024++ + if yyhl1024 { + yyb1024 = yyj1024 > l + } else { + yyb1024 = r.CheckBreak() + } + if yyb1024 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1024-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14063,38 +14336,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1008 := z.EncBinary() - _ = yym1008 + yym1027 := z.EncBinary() + _ = yym1027 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1009 := !z.EncBinary() - yy2arr1009 := z.EncBasicHandle().StructToArray - var yyq1009 [1]bool - _, _, _ = yysep1009, yyq1009, yy2arr1009 - const yyr1009 bool = false - yyq1009[0] = len(x.Command) != 0 - var yynn1009 int - if yyr1009 || yy2arr1009 { + yysep1028 := !z.EncBinary() + yy2arr1028 := z.EncBasicHandle().StructToArray + var yyq1028 [1]bool + _, _, _ = yysep1028, yyq1028, yy2arr1028 + const yyr1028 bool = false + yyq1028[0] = len(x.Command) != 0 + var yynn1028 int + if yyr1028 || yy2arr1028 { r.EncodeArrayStart(1) } else { - yynn1009 = 0 - for _, b := range yyq1009 { + yynn1028 = 0 + for _, b := range yyq1028 { if b { - yynn1009++ + yynn1028++ } } - r.EncodeMapStart(yynn1009) - yynn1009 = 0 + r.EncodeMapStart(yynn1028) + yynn1028 = 0 } - if yyr1009 || yy2arr1009 { + if yyr1028 || yy2arr1028 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1009[0] { + if yyq1028[0] { if x.Command == nil { r.EncodeNil() } else { - yym1011 := z.EncBinary() - _ = yym1011 + yym1030 := z.EncBinary() + _ = yym1030 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14104,15 +14377,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1009[0] { + if yyq1028[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1012 := z.EncBinary() - _ = yym1012 + yym1031 := z.EncBinary() + _ = yym1031 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14120,7 +14393,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1009 || yy2arr1009 { + if yyr1028 || yy2arr1028 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14133,25 +14406,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1013 := z.DecBinary() - _ = yym1013 + yym1032 := z.DecBinary() + _ = yym1032 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1014 := r.ContainerType() - if yyct1014 == codecSelferValueTypeMap1234 { - yyl1014 := r.ReadMapStart() - if yyl1014 == 0 { + yyct1033 := r.ContainerType() + if yyct1033 == codecSelferValueTypeMap1234 { + yyl1033 := r.ReadMapStart() + if yyl1033 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1014, d) + x.codecDecodeSelfFromMap(yyl1033, d) } - } else if yyct1014 == codecSelferValueTypeArray1234 { - yyl1014 := r.ReadArrayStart() - if yyl1014 == 0 { + } else if yyct1033 == codecSelferValueTypeArray1234 { + yyl1033 := r.ReadArrayStart() + if yyl1033 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1014, d) + x.codecDecodeSelfFromArray(yyl1033, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14163,12 +14436,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1015Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1015Slc - var yyhl1015 bool = l >= 0 - for yyj1015 := 0; ; yyj1015++ { - if yyhl1015 { - if yyj1015 >= l { + var yys1034Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1034Slc + var yyhl1034 bool = l >= 0 + for yyj1034 := 0; ; yyj1034++ { + if yyhl1034 { + if yyj1034 >= l { break } } else { @@ -14177,26 +14450,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1015Slc = r.DecodeBytes(yys1015Slc, true, true) - yys1015 := string(yys1015Slc) + yys1034Slc = r.DecodeBytes(yys1034Slc, true, true) + yys1034 := string(yys1034Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1015 { + switch yys1034 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1016 := &x.Command - yym1017 := z.DecBinary() - _ = yym1017 + yyv1035 := &x.Command + yym1036 := z.DecBinary() + _ = yym1036 if false { } else { - z.F.DecSliceStringX(yyv1016, false, d) + z.F.DecSliceStringX(yyv1035, false, d) } } default: - z.DecStructFieldNotFound(-1, yys1015) - } // end switch yys1015 - } // end for yyj1015 + z.DecStructFieldNotFound(-1, yys1034) + } // end switch yys1034 + } // end for yyj1034 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14204,16 +14477,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1018 int - var yyb1018 bool - var yyhl1018 bool = l >= 0 - yyj1018++ - if yyhl1018 { - yyb1018 = yyj1018 > l + var yyj1037 int + var yyb1037 bool + var yyhl1037 bool = l >= 0 + yyj1037++ + if yyhl1037 { + yyb1037 = yyj1037 > l } else { - yyb1018 = r.CheckBreak() + yyb1037 = r.CheckBreak() } - if yyb1018 { + if yyb1037 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14221,26 +14494,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1019 := &x.Command - yym1020 := z.DecBinary() - _ = yym1020 + yyv1038 := &x.Command + yym1039 := z.DecBinary() + _ = yym1039 if false { } else { - z.F.DecSliceStringX(yyv1019, false, d) + z.F.DecSliceStringX(yyv1038, false, d) } } for { - yyj1018++ - if yyhl1018 { - yyb1018 = yyj1018 > l + yyj1037++ + if yyhl1037 { + yyb1037 = yyj1037 > l } else { - yyb1018 = r.CheckBreak() + yyb1037 = r.CheckBreak() } - if yyb1018 { + if yyb1037 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1018-1, "") + z.DecStructFieldNotFound(yyj1037-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14252,49 +14525,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1021 := z.EncBinary() - _ = yym1021 + yym1040 := z.EncBinary() + _ = yym1040 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1022 := !z.EncBinary() - yy2arr1022 := z.EncBasicHandle().StructToArray - var yyq1022 [8]bool - _, _, _ = yysep1022, yyq1022, yy2arr1022 - const yyr1022 bool = false - yyq1022[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1022[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1022[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1022[3] = x.InitialDelaySeconds != 0 - yyq1022[4] = x.TimeoutSeconds != 0 - yyq1022[5] = x.PeriodSeconds != 0 - yyq1022[6] = x.SuccessThreshold != 0 - yyq1022[7] = x.FailureThreshold != 0 - var yynn1022 int - if yyr1022 || yy2arr1022 { + yysep1041 := !z.EncBinary() + yy2arr1041 := z.EncBasicHandle().StructToArray + var yyq1041 [8]bool + _, _, _ = yysep1041, yyq1041, yy2arr1041 + const yyr1041 bool = false + yyq1041[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1041[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1041[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1041[3] = x.InitialDelaySeconds != 0 + yyq1041[4] = x.TimeoutSeconds != 0 + yyq1041[5] = x.PeriodSeconds != 0 + yyq1041[6] = x.SuccessThreshold != 0 + yyq1041[7] = x.FailureThreshold != 0 + var yynn1041 int + if yyr1041 || yy2arr1041 { r.EncodeArrayStart(8) } else { - yynn1022 = 0 - for _, b := range yyq1022 { + yynn1041 = 0 + for _, b := range yyq1041 { if b { - yynn1022++ + yynn1041++ } } - r.EncodeMapStart(yynn1022) - yynn1022 = 0 + r.EncodeMapStart(yynn1041) + yynn1041 = 0 } - var yyn1023 bool + var yyn1042 bool if x.Handler.Exec == nil { - yyn1023 = true - goto LABEL1023 + yyn1042 = true + goto LABEL1042 } - LABEL1023: - if yyr1022 || yy2arr1022 { - if yyn1023 { + LABEL1042: + if yyr1041 || yy2arr1041 { + if yyn1042 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[0] { + if yyq1041[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -14305,11 +14578,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1022[0] { + if yyq1041[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1023 { + if yyn1042 { r.EncodeNil() } else { if x.Exec == nil { @@ -14320,18 +14593,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1024 bool + var yyn1043 bool if x.Handler.HTTPGet == nil { - yyn1024 = true - goto LABEL1024 + yyn1043 = true + goto LABEL1043 } - LABEL1024: - if yyr1022 || yy2arr1022 { - if yyn1024 { + LABEL1043: + if yyr1041 || yy2arr1041 { + if yyn1043 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[1] { + if yyq1041[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -14342,11 +14615,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1022[1] { + if yyq1041[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1024 { + if yyn1043 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -14357,18 +14630,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1025 bool + var yyn1044 bool if x.Handler.TCPSocket == nil { - yyn1025 = true - goto LABEL1025 + yyn1044 = true + goto LABEL1044 } - LABEL1025: - if yyr1022 || yy2arr1022 { - if yyn1025 { + LABEL1044: + if yyr1041 || yy2arr1041 { + if yyn1044 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[2] { + if yyq1041[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -14379,11 +14652,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1022[2] { + if yyq1041[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1025 { + if yyn1044 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -14394,11 +14667,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[3] { - yym1027 := z.EncBinary() - _ = yym1027 + if yyq1041[3] { + yym1046 := z.EncBinary() + _ = yym1046 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -14407,23 +14680,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1022[3] { + if yyq1041[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1028 := z.EncBinary() - _ = yym1028 + yym1047 := z.EncBinary() + _ = yym1047 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[4] { - yym1030 := z.EncBinary() - _ = yym1030 + if yyq1041[4] { + yym1049 := z.EncBinary() + _ = yym1049 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -14432,23 +14705,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1022[4] { + if yyq1041[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1031 := z.EncBinary() - _ = yym1031 + yym1050 := z.EncBinary() + _ = yym1050 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[5] { - yym1033 := z.EncBinary() - _ = yym1033 + if yyq1041[5] { + yym1052 := z.EncBinary() + _ = yym1052 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -14457,23 +14730,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1022[5] { + if yyq1041[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1034 := z.EncBinary() - _ = yym1034 + yym1053 := z.EncBinary() + _ = yym1053 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[6] { - yym1036 := z.EncBinary() - _ = yym1036 + if yyq1041[6] { + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -14482,23 +14755,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1022[6] { + if yyq1041[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1037 := z.EncBinary() - _ = yym1037 + yym1056 := z.EncBinary() + _ = yym1056 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1022[7] { - yym1039 := z.EncBinary() - _ = yym1039 + if yyq1041[7] { + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -14507,19 +14780,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1022[7] { + if yyq1041[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1040 := z.EncBinary() - _ = yym1040 + yym1059 := z.EncBinary() + _ = yym1059 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1022 || yy2arr1022 { + if yyr1041 || yy2arr1041 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14532,25 +14805,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1041 := z.DecBinary() - _ = yym1041 + yym1060 := z.DecBinary() + _ = yym1060 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1042 := r.ContainerType() - if yyct1042 == codecSelferValueTypeMap1234 { - yyl1042 := r.ReadMapStart() - if yyl1042 == 0 { + yyct1061 := r.ContainerType() + if yyct1061 == codecSelferValueTypeMap1234 { + yyl1061 := r.ReadMapStart() + if yyl1061 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1042, d) + x.codecDecodeSelfFromMap(yyl1061, d) } - } else if yyct1042 == codecSelferValueTypeArray1234 { - yyl1042 := r.ReadArrayStart() - if yyl1042 == 0 { + } else if yyct1061 == codecSelferValueTypeArray1234 { + yyl1061 := r.ReadArrayStart() + if yyl1061 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1042, d) + x.codecDecodeSelfFromArray(yyl1061, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14562,12 +14835,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1043Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1043Slc - var yyhl1043 bool = l >= 0 - for yyj1043 := 0; ; yyj1043++ { - if yyhl1043 { - if yyj1043 >= l { + var yys1062Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1062Slc + var yyhl1062 bool = l >= 0 + for yyj1062 := 0; ; yyj1062++ { + if yyhl1062 { + if yyj1062 >= l { break } } else { @@ -14576,10 +14849,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1043Slc = r.DecodeBytes(yys1043Slc, true, true) - yys1043 := string(yys1043Slc) + yys1062Slc = r.DecodeBytes(yys1062Slc, true, true) + yys1062 := string(yys1062Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1043 { + switch yys1062 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -14653,9 +14926,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1043) - } // end switch yys1043 - } // end for yyj1043 + z.DecStructFieldNotFound(-1, yys1062) + } // end switch yys1062 + } // end for yyj1062 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14663,19 +14936,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1052 int - var yyb1052 bool - var yyhl1052 bool = l >= 0 + var yyj1071 int + var yyb1071 bool + var yyhl1071 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14693,13 +14966,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14717,13 +14990,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14738,13 +15011,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14754,13 +15027,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14770,13 +15043,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14786,13 +15059,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14802,13 +15075,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14819,17 +15092,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1052++ - if yyhl1052 { - yyb1052 = yyj1052 > l + yyj1071++ + if yyhl1071 { + yyb1071 = yyj1071 > l } else { - yyb1052 = r.CheckBreak() + yyb1071 = r.CheckBreak() } - if yyb1052 { + if yyb1071 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1052-1, "") + z.DecStructFieldNotFound(yyj1071-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14838,8 +15111,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1061 := z.EncBinary() - _ = yym1061 + yym1080 := z.EncBinary() + _ = yym1080 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14851,8 +15124,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1062 := z.DecBinary() - _ = yym1062 + yym1081 := z.DecBinary() + _ = yym1081 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14864,8 +15137,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1063 := z.EncBinary() - _ = yym1063 + yym1082 := z.EncBinary() + _ = yym1082 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14877,8 +15150,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1064 := z.DecBinary() - _ = yym1064 + yym1083 := z.DecBinary() + _ = yym1083 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14893,39 +15166,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1065 := z.EncBinary() - _ = yym1065 + yym1084 := z.EncBinary() + _ = yym1084 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1066 := !z.EncBinary() - yy2arr1066 := z.EncBasicHandle().StructToArray - var yyq1066 [2]bool - _, _, _ = yysep1066, yyq1066, yy2arr1066 - const yyr1066 bool = false - yyq1066[0] = len(x.Add) != 0 - yyq1066[1] = len(x.Drop) != 0 - var yynn1066 int - if yyr1066 || yy2arr1066 { + yysep1085 := !z.EncBinary() + yy2arr1085 := z.EncBasicHandle().StructToArray + var yyq1085 [2]bool + _, _, _ = yysep1085, yyq1085, yy2arr1085 + const yyr1085 bool = false + yyq1085[0] = len(x.Add) != 0 + yyq1085[1] = len(x.Drop) != 0 + var yynn1085 int + if yyr1085 || yy2arr1085 { r.EncodeArrayStart(2) } else { - yynn1066 = 0 - for _, b := range yyq1066 { + yynn1085 = 0 + for _, b := range yyq1085 { if b { - yynn1066++ + yynn1085++ } } - r.EncodeMapStart(yynn1066) - yynn1066 = 0 + r.EncodeMapStart(yynn1085) + yynn1085 = 0 } - if yyr1066 || yy2arr1066 { + if yyr1085 || yy2arr1085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1066[0] { + if yyq1085[0] { if x.Add == nil { r.EncodeNil() } else { - yym1068 := z.EncBinary() - _ = yym1068 + yym1087 := z.EncBinary() + _ = yym1087 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14935,15 +15208,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1066[0] { + if yyq1085[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1069 := z.EncBinary() - _ = yym1069 + yym1088 := z.EncBinary() + _ = yym1088 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14951,14 +15224,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1066 || yy2arr1066 { + if yyr1085 || yy2arr1085 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1066[1] { + if yyq1085[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1071 := z.EncBinary() - _ = yym1071 + yym1090 := z.EncBinary() + _ = yym1090 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14968,15 +15241,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1066[1] { + if yyq1085[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1072 := z.EncBinary() - _ = yym1072 + yym1091 := z.EncBinary() + _ = yym1091 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14984,7 +15257,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1066 || yy2arr1066 { + if yyr1085 || yy2arr1085 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14997,25 +15270,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1073 := z.DecBinary() - _ = yym1073 + yym1092 := z.DecBinary() + _ = yym1092 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1074 := r.ContainerType() - if yyct1074 == codecSelferValueTypeMap1234 { - yyl1074 := r.ReadMapStart() - if yyl1074 == 0 { + yyct1093 := r.ContainerType() + if yyct1093 == codecSelferValueTypeMap1234 { + yyl1093 := r.ReadMapStart() + if yyl1093 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1074, d) + x.codecDecodeSelfFromMap(yyl1093, d) } - } else if yyct1074 == codecSelferValueTypeArray1234 { - yyl1074 := r.ReadArrayStart() - if yyl1074 == 0 { + } else if yyct1093 == codecSelferValueTypeArray1234 { + yyl1093 := r.ReadArrayStart() + if yyl1093 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1074, d) + x.codecDecodeSelfFromArray(yyl1093, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15027,12 +15300,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1075Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1075Slc - var yyhl1075 bool = l >= 0 - for yyj1075 := 0; ; yyj1075++ { - if yyhl1075 { - if yyj1075 >= l { + var yys1094Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1094Slc + var yyhl1094 bool = l >= 0 + for yyj1094 := 0; ; yyj1094++ { + if yyhl1094 { + if yyj1094 >= l { break } } else { @@ -15041,38 +15314,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1075Slc = r.DecodeBytes(yys1075Slc, true, true) - yys1075 := string(yys1075Slc) + yys1094Slc = r.DecodeBytes(yys1094Slc, true, true) + yys1094 := string(yys1094Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1075 { + switch yys1094 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1076 := &x.Add - yym1077 := z.DecBinary() - _ = yym1077 + yyv1095 := &x.Add + yym1096 := z.DecBinary() + _ = yym1096 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1076), d) + h.decSliceCapability((*[]Capability)(yyv1095), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1078 := &x.Drop - yym1079 := z.DecBinary() - _ = yym1079 + yyv1097 := &x.Drop + yym1098 := z.DecBinary() + _ = yym1098 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1078), d) + h.decSliceCapability((*[]Capability)(yyv1097), d) } } default: - z.DecStructFieldNotFound(-1, yys1075) - } // end switch yys1075 - } // end for yyj1075 + z.DecStructFieldNotFound(-1, yys1094) + } // end switch yys1094 + } // end for yyj1094 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15080,16 +15353,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1080 int - var yyb1080 bool - var yyhl1080 bool = l >= 0 - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + var yyj1099 int + var yyb1099 bool + var yyhl1099 bool = l >= 0 + yyj1099++ + if yyhl1099 { + yyb1099 = yyj1099 > l } else { - yyb1080 = r.CheckBreak() + yyb1099 = r.CheckBreak() } - if yyb1080 { + if yyb1099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15097,21 +15370,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1081 := &x.Add - yym1082 := z.DecBinary() - _ = yym1082 + yyv1100 := &x.Add + yym1101 := z.DecBinary() + _ = yym1101 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1081), d) + h.decSliceCapability((*[]Capability)(yyv1100), d) } } - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1099++ + if yyhl1099 { + yyb1099 = yyj1099 > l } else { - yyb1080 = r.CheckBreak() + yyb1099 = r.CheckBreak() } - if yyb1080 { + if yyb1099 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15119,26 +15392,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1083 := &x.Drop - yym1084 := z.DecBinary() - _ = yym1084 + yyv1102 := &x.Drop + yym1103 := z.DecBinary() + _ = yym1103 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1083), d) + h.decSliceCapability((*[]Capability)(yyv1102), d) } } for { - yyj1080++ - if yyhl1080 { - yyb1080 = yyj1080 > l + yyj1099++ + if yyhl1099 { + yyb1099 = yyj1099 > l } else { - yyb1080 = r.CheckBreak() + yyb1099 = r.CheckBreak() } - if yyb1080 { + if yyb1099 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1080-1, "") + z.DecStructFieldNotFound(yyj1099-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15150,34 +15423,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1085 := z.EncBinary() - _ = yym1085 + yym1104 := z.EncBinary() + _ = yym1104 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1086 := !z.EncBinary() - yy2arr1086 := z.EncBasicHandle().StructToArray - var yyq1086 [2]bool - _, _, _ = yysep1086, yyq1086, yy2arr1086 - const yyr1086 bool = false - yyq1086[0] = len(x.Limits) != 0 - yyq1086[1] = len(x.Requests) != 0 - var yynn1086 int - if yyr1086 || yy2arr1086 { + yysep1105 := !z.EncBinary() + yy2arr1105 := z.EncBasicHandle().StructToArray + var yyq1105 [2]bool + _, _, _ = yysep1105, yyq1105, yy2arr1105 + const yyr1105 bool = false + yyq1105[0] = len(x.Limits) != 0 + yyq1105[1] = len(x.Requests) != 0 + var yynn1105 int + if yyr1105 || yy2arr1105 { r.EncodeArrayStart(2) } else { - yynn1086 = 0 - for _, b := range yyq1086 { + yynn1105 = 0 + for _, b := range yyq1105 { if b { - yynn1086++ + yynn1105++ } } - r.EncodeMapStart(yynn1086) - yynn1086 = 0 + r.EncodeMapStart(yynn1105) + yynn1105 = 0 } - if yyr1086 || yy2arr1086 { + if yyr1105 || yy2arr1105 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1086[0] { + if yyq1105[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -15187,7 +15460,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1086[0] { + if yyq1105[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15198,9 +15471,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1086 || yy2arr1086 { + if yyr1105 || yy2arr1105 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1086[1] { + if yyq1105[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -15210,7 +15483,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1086[1] { + if yyq1105[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15221,7 +15494,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1086 || yy2arr1086 { + if yyr1105 || yy2arr1105 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15234,25 +15507,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1089 := z.DecBinary() - _ = yym1089 + yym1108 := z.DecBinary() + _ = yym1108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1090 := r.ContainerType() - if yyct1090 == codecSelferValueTypeMap1234 { - yyl1090 := r.ReadMapStart() - if yyl1090 == 0 { + yyct1109 := r.ContainerType() + if yyct1109 == codecSelferValueTypeMap1234 { + yyl1109 := r.ReadMapStart() + if yyl1109 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1090, d) + x.codecDecodeSelfFromMap(yyl1109, d) } - } else if yyct1090 == codecSelferValueTypeArray1234 { - yyl1090 := r.ReadArrayStart() - if yyl1090 == 0 { + } else if yyct1109 == codecSelferValueTypeArray1234 { + yyl1109 := r.ReadArrayStart() + if yyl1109 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1090, d) + x.codecDecodeSelfFromArray(yyl1109, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15264,12 +15537,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1091Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1091Slc - var yyhl1091 bool = l >= 0 - for yyj1091 := 0; ; yyj1091++ { - if yyhl1091 { - if yyj1091 >= l { + var yys1110Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1110Slc + var yyhl1110 bool = l >= 0 + for yyj1110 := 0; ; yyj1110++ { + if yyhl1110 { + if yyj1110 >= l { break } } else { @@ -15278,28 +15551,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1091Slc = r.DecodeBytes(yys1091Slc, true, true) - yys1091 := string(yys1091Slc) + yys1110Slc = r.DecodeBytes(yys1110Slc, true, true) + yys1110 := string(yys1110Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1091 { + switch yys1110 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1092 := &x.Limits - yyv1092.CodecDecodeSelf(d) + yyv1111 := &x.Limits + yyv1111.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1093 := &x.Requests - yyv1093.CodecDecodeSelf(d) + yyv1112 := &x.Requests + yyv1112.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1091) - } // end switch yys1091 - } // end for yyj1091 + z.DecStructFieldNotFound(-1, yys1110) + } // end switch yys1110 + } // end for yyj1110 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15307,16 +15580,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1094 int - var yyb1094 bool - var yyhl1094 bool = l >= 0 - yyj1094++ - if yyhl1094 { - yyb1094 = yyj1094 > l + var yyj1113 int + var yyb1113 bool + var yyhl1113 bool = l >= 0 + yyj1113++ + if yyhl1113 { + yyb1113 = yyj1113 > l } else { - yyb1094 = r.CheckBreak() + yyb1113 = r.CheckBreak() } - if yyb1094 { + if yyb1113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15324,16 +15597,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1095 := &x.Limits - yyv1095.CodecDecodeSelf(d) + yyv1114 := &x.Limits + yyv1114.CodecDecodeSelf(d) } - yyj1094++ - if yyhl1094 { - yyb1094 = yyj1094 > l + yyj1113++ + if yyhl1113 { + yyb1113 = yyj1113 > l } else { - yyb1094 = r.CheckBreak() + yyb1113 = r.CheckBreak() } - if yyb1094 { + if yyb1113 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15341,21 +15614,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1096 := &x.Requests - yyv1096.CodecDecodeSelf(d) + yyv1115 := &x.Requests + yyv1115.CodecDecodeSelf(d) } for { - yyj1094++ - if yyhl1094 { - yyb1094 = yyj1094 > l + yyj1113++ + if yyhl1113 { + yyb1113 = yyj1113 > l } else { - yyb1094 = r.CheckBreak() + yyb1113 = r.CheckBreak() } - if yyb1094 { + if yyb1113 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1094-1, "") + z.DecStructFieldNotFound(yyj1113-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15367,50 +15640,50 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1097 := z.EncBinary() - _ = yym1097 + yym1116 := z.EncBinary() + _ = yym1116 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1098 := !z.EncBinary() - yy2arr1098 := z.EncBasicHandle().StructToArray - var yyq1098 [18]bool - _, _, _ = yysep1098, yyq1098, yy2arr1098 - const yyr1098 bool = false - yyq1098[1] = x.Image != "" - yyq1098[2] = len(x.Command) != 0 - yyq1098[3] = len(x.Args) != 0 - yyq1098[4] = x.WorkingDir != "" - yyq1098[5] = len(x.Ports) != 0 - yyq1098[6] = len(x.Env) != 0 - yyq1098[7] = true - yyq1098[8] = len(x.VolumeMounts) != 0 - yyq1098[9] = x.LivenessProbe != nil - yyq1098[10] = x.ReadinessProbe != nil - yyq1098[11] = x.Lifecycle != nil - yyq1098[12] = x.TerminationMessagePath != "" - yyq1098[13] = x.ImagePullPolicy != "" - yyq1098[14] = x.SecurityContext != nil - yyq1098[15] = x.Stdin != false - yyq1098[16] = x.StdinOnce != false - yyq1098[17] = x.TTY != false - var yynn1098 int - if yyr1098 || yy2arr1098 { + yysep1117 := !z.EncBinary() + yy2arr1117 := z.EncBasicHandle().StructToArray + var yyq1117 [18]bool + _, _, _ = yysep1117, yyq1117, yy2arr1117 + const yyr1117 bool = false + yyq1117[1] = x.Image != "" + yyq1117[2] = len(x.Command) != 0 + yyq1117[3] = len(x.Args) != 0 + yyq1117[4] = x.WorkingDir != "" + yyq1117[5] = len(x.Ports) != 0 + yyq1117[6] = len(x.Env) != 0 + yyq1117[7] = true + yyq1117[8] = len(x.VolumeMounts) != 0 + yyq1117[9] = x.LivenessProbe != nil + yyq1117[10] = x.ReadinessProbe != nil + yyq1117[11] = x.Lifecycle != nil + yyq1117[12] = x.TerminationMessagePath != "" + yyq1117[13] = x.ImagePullPolicy != "" + yyq1117[14] = x.SecurityContext != nil + yyq1117[15] = x.Stdin != false + yyq1117[16] = x.StdinOnce != false + yyq1117[17] = x.TTY != false + var yynn1117 int + if yyr1117 || yy2arr1117 { r.EncodeArrayStart(18) } else { - yynn1098 = 1 - for _, b := range yyq1098 { + yynn1117 = 1 + for _, b := range yyq1117 { if b { - yynn1098++ + yynn1117++ } } - r.EncodeMapStart(yynn1098) - yynn1098 = 0 + r.EncodeMapStart(yynn1117) + yynn1117 = 0 } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1100 := z.EncBinary() - _ = yym1100 + yym1119 := z.EncBinary() + _ = yym1119 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15419,18 +15692,18 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1101 := z.EncBinary() - _ = yym1101 + yym1120 := z.EncBinary() + _ = yym1120 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[1] { - yym1103 := z.EncBinary() - _ = yym1103 + if yyq1117[1] { + yym1122 := z.EncBinary() + _ = yym1122 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -15439,228 +15712,228 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1098[1] { + if yyq1117[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1104 := z.EncBinary() - _ = yym1104 + yym1123 := z.EncBinary() + _ = yym1123 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[2] { + if yyq1117[2] { if x.Command == nil { r.EncodeNil() - } else { - yym1106 := z.EncBinary() - _ = yym1106 - if false { - } else { - z.F.EncSliceStringV(x.Command, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1098[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("command")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Command == nil { - r.EncodeNil() - } else { - yym1107 := z.EncBinary() - _ = yym1107 - if false { - } else { - z.F.EncSliceStringV(x.Command, false, e) - } - } - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[3] { - if x.Args == nil { - r.EncodeNil() - } else { - yym1109 := z.EncBinary() - _ = yym1109 - if false { - } else { - z.F.EncSliceStringV(x.Args, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1098[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("args")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Args == nil { - r.EncodeNil() - } else { - yym1110 := z.EncBinary() - _ = yym1110 - if false { - } else { - z.F.EncSliceStringV(x.Args, false, e) - } - } - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[4] { - yym1112 := z.EncBinary() - _ = yym1112 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1098[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("workingDir")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1113 := z.EncBinary() - _ = yym1113 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) - } - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[5] { - if x.Ports == nil { - r.EncodeNil() - } else { - yym1115 := z.EncBinary() - _ = yym1115 - if false { - } else { - h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1098[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ports")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Ports == nil { - r.EncodeNil() - } else { - yym1116 := z.EncBinary() - _ = yym1116 - if false { - } else { - h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) - } - } - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[6] { - if x.Env == nil { - r.EncodeNil() - } else { - yym1118 := z.EncBinary() - _ = yym1118 - if false { - } else { - h.encSliceEnvVar(([]EnvVar)(x.Env), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1098[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("env")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Env == nil { - r.EncodeNil() - } else { - yym1119 := z.EncBinary() - _ = yym1119 - if false { - } else { - h.encSliceEnvVar(([]EnvVar)(x.Env), e) - } - } - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[7] { - yy1121 := &x.Resources - yy1121.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq1098[7] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resources")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1122 := &x.Resources - yy1122.CodecEncodeSelf(e) - } - } - if yyr1098 || yy2arr1098 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[8] { - if x.VolumeMounts == nil { - r.EncodeNil() - } else { - yym1124 := z.EncBinary() - _ = yym1124 - if false { - } else { - h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1098[8] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.VolumeMounts == nil { - r.EncodeNil() } else { yym1125 := z.EncBinary() _ = yym1125 if false { + } else { + z.F.EncSliceStringV(x.Command, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1117[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("command")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Command == nil { + r.EncodeNil() + } else { + yym1126 := z.EncBinary() + _ = yym1126 + if false { + } else { + z.F.EncSliceStringV(x.Command, false, e) + } + } + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[3] { + if x.Args == nil { + r.EncodeNil() + } else { + yym1128 := z.EncBinary() + _ = yym1128 + if false { + } else { + z.F.EncSliceStringV(x.Args, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1117[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("args")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Args == nil { + r.EncodeNil() + } else { + yym1129 := z.EncBinary() + _ = yym1129 + if false { + } else { + z.F.EncSliceStringV(x.Args, false, e) + } + } + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[4] { + yym1131 := z.EncBinary() + _ = yym1131 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1117[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("workingDir")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1132 := z.EncBinary() + _ = yym1132 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) + } + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[5] { + if x.Ports == nil { + r.EncodeNil() + } else { + yym1134 := z.EncBinary() + _ = yym1134 + if false { + } else { + h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1117[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("ports")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Ports == nil { + r.EncodeNil() + } else { + yym1135 := z.EncBinary() + _ = yym1135 + if false { + } else { + h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) + } + } + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[6] { + if x.Env == nil { + r.EncodeNil() + } else { + yym1137 := z.EncBinary() + _ = yym1137 + if false { + } else { + h.encSliceEnvVar(([]EnvVar)(x.Env), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1117[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("env")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Env == nil { + r.EncodeNil() + } else { + yym1138 := z.EncBinary() + _ = yym1138 + if false { + } else { + h.encSliceEnvVar(([]EnvVar)(x.Env), e) + } + } + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[7] { + yy1140 := &x.Resources + yy1140.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq1117[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("resources")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1141 := &x.Resources + yy1141.CodecEncodeSelf(e) + } + } + if yyr1117 || yy2arr1117 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1117[8] { + if x.VolumeMounts == nil { + r.EncodeNil() + } else { + yym1143 := z.EncBinary() + _ = yym1143 + if false { + } else { + h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1117[8] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.VolumeMounts == nil { + r.EncodeNil() + } else { + yym1144 := z.EncBinary() + _ = yym1144 + if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) } } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[9] { + if yyq1117[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -15670,7 +15943,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1098[9] { + if yyq1117[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15681,9 +15954,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[10] { + if yyq1117[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -15693,7 +15966,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1098[10] { + if yyq1117[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15704,9 +15977,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[11] { + if yyq1117[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -15716,7 +15989,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1098[11] { + if yyq1117[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15727,11 +16000,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[12] { - yym1130 := z.EncBinary() - _ = yym1130 + if yyq1117[12] { + yym1149 := z.EncBinary() + _ = yym1149 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -15740,36 +16013,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1098[12] { + if yyq1117[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1131 := z.EncBinary() - _ = yym1131 + yym1150 := z.EncBinary() + _ = yym1150 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[13] { + if yyq1117[13] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1098[13] { + if yyq1117[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[14] { + if yyq1117[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -15779,7 +16052,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1098[14] { + if yyq1117[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15790,11 +16063,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[15] { - yym1135 := z.EncBinary() - _ = yym1135 + if yyq1117[15] { + yym1154 := z.EncBinary() + _ = yym1154 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -15803,23 +16076,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1098[15] { + if yyq1117[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1136 := z.EncBinary() - _ = yym1136 + yym1155 := z.EncBinary() + _ = yym1155 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[16] { - yym1138 := z.EncBinary() - _ = yym1138 + if yyq1117[16] { + yym1157 := z.EncBinary() + _ = yym1157 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -15828,23 +16101,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1098[16] { + if yyq1117[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1139 := z.EncBinary() - _ = yym1139 + yym1158 := z.EncBinary() + _ = yym1158 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1098[17] { - yym1141 := z.EncBinary() - _ = yym1141 + if yyq1117[17] { + yym1160 := z.EncBinary() + _ = yym1160 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -15853,19 +16126,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1098[17] { + if yyq1117[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1142 := z.EncBinary() - _ = yym1142 + yym1161 := z.EncBinary() + _ = yym1161 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1098 || yy2arr1098 { + if yyr1117 || yy2arr1117 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15878,25 +16151,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1143 := z.DecBinary() - _ = yym1143 + yym1162 := z.DecBinary() + _ = yym1162 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1144 := r.ContainerType() - if yyct1144 == codecSelferValueTypeMap1234 { - yyl1144 := r.ReadMapStart() - if yyl1144 == 0 { + yyct1163 := r.ContainerType() + if yyct1163 == codecSelferValueTypeMap1234 { + yyl1163 := r.ReadMapStart() + if yyl1163 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1144, d) + x.codecDecodeSelfFromMap(yyl1163, d) } - } else if yyct1144 == codecSelferValueTypeArray1234 { - yyl1144 := r.ReadArrayStart() - if yyl1144 == 0 { + } else if yyct1163 == codecSelferValueTypeArray1234 { + yyl1163 := r.ReadArrayStart() + if yyl1163 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1144, d) + x.codecDecodeSelfFromArray(yyl1163, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15908,12 +16181,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1145Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1145Slc - var yyhl1145 bool = l >= 0 - for yyj1145 := 0; ; yyj1145++ { - if yyhl1145 { - if yyj1145 >= l { + var yys1164Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1164Slc + var yyhl1164 bool = l >= 0 + for yyj1164 := 0; ; yyj1164++ { + if yyhl1164 { + if yyj1164 >= l { break } } else { @@ -15922,10 +16195,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1145Slc = r.DecodeBytes(yys1145Slc, true, true) - yys1145 := string(yys1145Slc) + yys1164Slc = r.DecodeBytes(yys1164Slc, true, true) + yys1164 := string(yys1164Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1145 { + switch yys1164 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15942,24 +16215,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1148 := &x.Command - yym1149 := z.DecBinary() - _ = yym1149 + yyv1167 := &x.Command + yym1168 := z.DecBinary() + _ = yym1168 if false { } else { - z.F.DecSliceStringX(yyv1148, false, d) + z.F.DecSliceStringX(yyv1167, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1150 := &x.Args - yym1151 := z.DecBinary() - _ = yym1151 + yyv1169 := &x.Args + yym1170 := z.DecBinary() + _ = yym1170 if false { } else { - z.F.DecSliceStringX(yyv1150, false, d) + z.F.DecSliceStringX(yyv1169, false, d) } } case "workingDir": @@ -15972,43 +16245,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1153 := &x.Ports - yym1154 := z.DecBinary() - _ = yym1154 + yyv1172 := &x.Ports + yym1173 := z.DecBinary() + _ = yym1173 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1153), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1172), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1155 := &x.Env - yym1156 := z.DecBinary() - _ = yym1156 + yyv1174 := &x.Env + yym1175 := z.DecBinary() + _ = yym1175 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1155), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1174), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1157 := &x.Resources - yyv1157.CodecDecodeSelf(d) + yyv1176 := &x.Resources + yyv1176.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1158 := &x.VolumeMounts - yym1159 := z.DecBinary() - _ = yym1159 + yyv1177 := &x.VolumeMounts + yym1178 := z.DecBinary() + _ = yym1178 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1158), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1177), d) } } case "livenessProbe": @@ -16086,9 +16359,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1145) - } // end switch yys1145 - } // end for yyj1145 + z.DecStructFieldNotFound(-1, yys1164) + } // end switch yys1164 + } // end for yyj1164 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16096,16 +16369,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1169 int - var yyb1169 bool - var yyhl1169 bool = l >= 0 - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + var yyj1188 int + var yyb1188 bool + var yyhl1188 bool = l >= 0 + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16115,13 +16388,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16131,13 +16404,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16145,21 +16418,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1172 := &x.Command - yym1173 := z.DecBinary() - _ = yym1173 + yyv1191 := &x.Command + yym1192 := z.DecBinary() + _ = yym1192 if false { } else { - z.F.DecSliceStringX(yyv1172, false, d) + z.F.DecSliceStringX(yyv1191, false, d) } } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16167,21 +16440,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1174 := &x.Args - yym1175 := z.DecBinary() - _ = yym1175 + yyv1193 := &x.Args + yym1194 := z.DecBinary() + _ = yym1194 if false { } else { - z.F.DecSliceStringX(yyv1174, false, d) + z.F.DecSliceStringX(yyv1193, false, d) } } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16191,13 +16464,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16205,21 +16478,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1177 := &x.Ports - yym1178 := z.DecBinary() - _ = yym1178 + yyv1196 := &x.Ports + yym1197 := z.DecBinary() + _ = yym1197 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1177), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1196), d) } } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16227,21 +16500,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1179 := &x.Env - yym1180 := z.DecBinary() - _ = yym1180 + yyv1198 := &x.Env + yym1199 := z.DecBinary() + _ = yym1199 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1179), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1198), d) } } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16249,16 +16522,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1181 := &x.Resources - yyv1181.CodecDecodeSelf(d) + yyv1200 := &x.Resources + yyv1200.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16266,21 +16539,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1182 := &x.VolumeMounts - yym1183 := z.DecBinary() - _ = yym1183 + yyv1201 := &x.VolumeMounts + yym1202 := z.DecBinary() + _ = yym1202 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1182), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1201), d) } } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16295,13 +16568,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16316,13 +16589,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16337,13 +16610,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16353,13 +16626,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16369,13 +16642,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16390,13 +16663,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16406,13 +16679,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16422,13 +16695,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16439,17 +16712,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1188++ + if yyhl1188 { + yyb1188 = yyj1188 > l } else { - yyb1169 = r.CheckBreak() + yyb1188 = r.CheckBreak() } - if yyb1169 { + if yyb1188 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1169-1, "") + z.DecStructFieldNotFound(yyj1188-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16461,35 +16734,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1193 := z.EncBinary() - _ = yym1193 + yym1212 := z.EncBinary() + _ = yym1212 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1194 := !z.EncBinary() - yy2arr1194 := z.EncBasicHandle().StructToArray - var yyq1194 [3]bool - _, _, _ = yysep1194, yyq1194, yy2arr1194 - const yyr1194 bool = false - yyq1194[0] = x.Exec != nil - yyq1194[1] = x.HTTPGet != nil - yyq1194[2] = x.TCPSocket != nil - var yynn1194 int - if yyr1194 || yy2arr1194 { + yysep1213 := !z.EncBinary() + yy2arr1213 := z.EncBasicHandle().StructToArray + var yyq1213 [3]bool + _, _, _ = yysep1213, yyq1213, yy2arr1213 + const yyr1213 bool = false + yyq1213[0] = x.Exec != nil + yyq1213[1] = x.HTTPGet != nil + yyq1213[2] = x.TCPSocket != nil + var yynn1213 int + if yyr1213 || yy2arr1213 { r.EncodeArrayStart(3) } else { - yynn1194 = 0 - for _, b := range yyq1194 { + yynn1213 = 0 + for _, b := range yyq1213 { if b { - yynn1194++ + yynn1213++ } } - r.EncodeMapStart(yynn1194) - yynn1194 = 0 + r.EncodeMapStart(yynn1213) + yynn1213 = 0 } - if yyr1194 || yy2arr1194 { + if yyr1213 || yy2arr1213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1194[0] { + if yyq1213[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -16499,7 +16772,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1194[0] { + if yyq1213[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16510,9 +16783,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1194 || yy2arr1194 { + if yyr1213 || yy2arr1213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1194[1] { + if yyq1213[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -16522,7 +16795,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1194[1] { + if yyq1213[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16533,9 +16806,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1194 || yy2arr1194 { + if yyr1213 || yy2arr1213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1194[2] { + if yyq1213[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -16545,7 +16818,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1194[2] { + if yyq1213[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16556,7 +16829,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1194 || yy2arr1194 { + if yyr1213 || yy2arr1213 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16569,25 +16842,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1198 := z.DecBinary() - _ = yym1198 + yym1217 := z.DecBinary() + _ = yym1217 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1199 := r.ContainerType() - if yyct1199 == codecSelferValueTypeMap1234 { - yyl1199 := r.ReadMapStart() - if yyl1199 == 0 { + yyct1218 := r.ContainerType() + if yyct1218 == codecSelferValueTypeMap1234 { + yyl1218 := r.ReadMapStart() + if yyl1218 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1199, d) + x.codecDecodeSelfFromMap(yyl1218, d) } - } else if yyct1199 == codecSelferValueTypeArray1234 { - yyl1199 := r.ReadArrayStart() - if yyl1199 == 0 { + } else if yyct1218 == codecSelferValueTypeArray1234 { + yyl1218 := r.ReadArrayStart() + if yyl1218 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1199, d) + x.codecDecodeSelfFromArray(yyl1218, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16599,12 +16872,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1200Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1200Slc - var yyhl1200 bool = l >= 0 - for yyj1200 := 0; ; yyj1200++ { - if yyhl1200 { - if yyj1200 >= l { + var yys1219Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1219Slc + var yyhl1219 bool = l >= 0 + for yyj1219 := 0; ; yyj1219++ { + if yyhl1219 { + if yyj1219 >= l { break } } else { @@ -16613,10 +16886,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1200Slc = r.DecodeBytes(yys1200Slc, true, true) - yys1200 := string(yys1200Slc) + yys1219Slc = r.DecodeBytes(yys1219Slc, true, true) + yys1219 := string(yys1219Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1200 { + switch yys1219 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -16651,9 +16924,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1200) - } // end switch yys1200 - } // end for yyj1200 + z.DecStructFieldNotFound(-1, yys1219) + } // end switch yys1219 + } // end for yyj1219 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16661,16 +16934,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1204 int - var yyb1204 bool - var yyhl1204 bool = l >= 0 - yyj1204++ - if yyhl1204 { - yyb1204 = yyj1204 > l + var yyj1223 int + var yyb1223 bool + var yyhl1223 bool = l >= 0 + yyj1223++ + if yyhl1223 { + yyb1223 = yyj1223 > l } else { - yyb1204 = r.CheckBreak() + yyb1223 = r.CheckBreak() } - if yyb1204 { + if yyb1223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16685,13 +16958,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1204++ - if yyhl1204 { - yyb1204 = yyj1204 > l + yyj1223++ + if yyhl1223 { + yyb1223 = yyj1223 > l } else { - yyb1204 = r.CheckBreak() + yyb1223 = r.CheckBreak() } - if yyb1204 { + if yyb1223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16706,13 +16979,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1204++ - if yyhl1204 { - yyb1204 = yyj1204 > l + yyj1223++ + if yyhl1223 { + yyb1223 = yyj1223 > l } else { - yyb1204 = r.CheckBreak() + yyb1223 = r.CheckBreak() } - if yyb1204 { + if yyb1223 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16728,17 +17001,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1204++ - if yyhl1204 { - yyb1204 = yyj1204 > l + yyj1223++ + if yyhl1223 { + yyb1223 = yyj1223 > l } else { - yyb1204 = r.CheckBreak() + yyb1223 = r.CheckBreak() } - if yyb1204 { + if yyb1223 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1204-1, "") + z.DecStructFieldNotFound(yyj1223-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16750,34 +17023,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1208 := z.EncBinary() - _ = yym1208 + yym1227 := z.EncBinary() + _ = yym1227 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1209 := !z.EncBinary() - yy2arr1209 := z.EncBasicHandle().StructToArray - var yyq1209 [2]bool - _, _, _ = yysep1209, yyq1209, yy2arr1209 - const yyr1209 bool = false - yyq1209[0] = x.PostStart != nil - yyq1209[1] = x.PreStop != nil - var yynn1209 int - if yyr1209 || yy2arr1209 { + yysep1228 := !z.EncBinary() + yy2arr1228 := z.EncBasicHandle().StructToArray + var yyq1228 [2]bool + _, _, _ = yysep1228, yyq1228, yy2arr1228 + const yyr1228 bool = false + yyq1228[0] = x.PostStart != nil + yyq1228[1] = x.PreStop != nil + var yynn1228 int + if yyr1228 || yy2arr1228 { r.EncodeArrayStart(2) } else { - yynn1209 = 0 - for _, b := range yyq1209 { + yynn1228 = 0 + for _, b := range yyq1228 { if b { - yynn1209++ + yynn1228++ } } - r.EncodeMapStart(yynn1209) - yynn1209 = 0 + r.EncodeMapStart(yynn1228) + yynn1228 = 0 } - if yyr1209 || yy2arr1209 { + if yyr1228 || yy2arr1228 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1209[0] { + if yyq1228[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -16787,7 +17060,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1209[0] { + if yyq1228[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16798,9 +17071,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1209 || yy2arr1209 { + if yyr1228 || yy2arr1228 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1209[1] { + if yyq1228[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -16810,7 +17083,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1209[1] { + if yyq1228[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16821,7 +17094,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1209 || yy2arr1209 { + if yyr1228 || yy2arr1228 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16834,25 +17107,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1212 := z.DecBinary() - _ = yym1212 + yym1231 := z.DecBinary() + _ = yym1231 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1213 := r.ContainerType() - if yyct1213 == codecSelferValueTypeMap1234 { - yyl1213 := r.ReadMapStart() - if yyl1213 == 0 { + yyct1232 := r.ContainerType() + if yyct1232 == codecSelferValueTypeMap1234 { + yyl1232 := r.ReadMapStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1213, d) + x.codecDecodeSelfFromMap(yyl1232, d) } - } else if yyct1213 == codecSelferValueTypeArray1234 { - yyl1213 := r.ReadArrayStart() - if yyl1213 == 0 { + } else if yyct1232 == codecSelferValueTypeArray1234 { + yyl1232 := r.ReadArrayStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1213, d) + x.codecDecodeSelfFromArray(yyl1232, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16864,12 +17137,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1214Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1214Slc - var yyhl1214 bool = l >= 0 - for yyj1214 := 0; ; yyj1214++ { - if yyhl1214 { - if yyj1214 >= l { + var yys1233Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1233Slc + var yyhl1233 bool = l >= 0 + for yyj1233 := 0; ; yyj1233++ { + if yyhl1233 { + if yyj1233 >= l { break } } else { @@ -16878,10 +17151,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1214Slc = r.DecodeBytes(yys1214Slc, true, true) - yys1214 := string(yys1214Slc) + yys1233Slc = r.DecodeBytes(yys1233Slc, true, true) + yys1233 := string(yys1233Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1214 { + switch yys1233 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -16905,9 +17178,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1214) - } // end switch yys1214 - } // end for yyj1214 + z.DecStructFieldNotFound(-1, yys1233) + } // end switch yys1233 + } // end for yyj1233 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16915,16 +17188,16 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1217 int - var yyb1217 bool - var yyhl1217 bool = l >= 0 - yyj1217++ - if yyhl1217 { - yyb1217 = yyj1217 > l + var yyj1236 int + var yyb1236 bool + var yyhl1236 bool = l >= 0 + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1217 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1217 { + if yyb1236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16939,13 +17212,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1217++ - if yyhl1217 { - yyb1217 = yyj1217 > l + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1217 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1217 { + if yyb1236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16961,17 +17234,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1217++ - if yyhl1217 { - yyb1217 = yyj1217 > l + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1217 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1217 { + if yyb1236 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1217-1, "") + z.DecStructFieldNotFound(yyj1236-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16980,8 +17253,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1220 := z.EncBinary() - _ = yym1220 + yym1239 := z.EncBinary() + _ = yym1239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -16993,8 +17266,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1221 := z.DecBinary() - _ = yym1221 + yym1240 := z.DecBinary() + _ = yym1240 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -17009,36 +17282,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1222 := z.EncBinary() - _ = yym1222 + yym1241 := z.EncBinary() + _ = yym1241 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1223 := !z.EncBinary() - yy2arr1223 := z.EncBasicHandle().StructToArray - var yyq1223 [2]bool - _, _, _ = yysep1223, yyq1223, yy2arr1223 - const yyr1223 bool = false - yyq1223[0] = x.Reason != "" - yyq1223[1] = x.Message != "" - var yynn1223 int - if yyr1223 || yy2arr1223 { + yysep1242 := !z.EncBinary() + yy2arr1242 := z.EncBasicHandle().StructToArray + var yyq1242 [2]bool + _, _, _ = yysep1242, yyq1242, yy2arr1242 + const yyr1242 bool = false + yyq1242[0] = x.Reason != "" + yyq1242[1] = x.Message != "" + var yynn1242 int + if yyr1242 || yy2arr1242 { r.EncodeArrayStart(2) } else { - yynn1223 = 0 - for _, b := range yyq1223 { + yynn1242 = 0 + for _, b := range yyq1242 { if b { - yynn1223++ + yynn1242++ } } - r.EncodeMapStart(yynn1223) - yynn1223 = 0 + r.EncodeMapStart(yynn1242) + yynn1242 = 0 } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1223[0] { - yym1225 := z.EncBinary() - _ = yym1225 + if yyq1242[0] { + yym1244 := z.EncBinary() + _ = yym1244 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17047,23 +17320,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1223[0] { + if yyq1242[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1226 := z.EncBinary() - _ = yym1226 + yym1245 := z.EncBinary() + _ = yym1245 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1223[1] { - yym1228 := z.EncBinary() - _ = yym1228 + if yyq1242[1] { + yym1247 := z.EncBinary() + _ = yym1247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17072,19 +17345,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1223[1] { + if yyq1242[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1229 := z.EncBinary() - _ = yym1229 + yym1248 := z.EncBinary() + _ = yym1248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1223 || yy2arr1223 { + if yyr1242 || yy2arr1242 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17097,25 +17370,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1230 := z.DecBinary() - _ = yym1230 + yym1249 := z.DecBinary() + _ = yym1249 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1231 := r.ContainerType() - if yyct1231 == codecSelferValueTypeMap1234 { - yyl1231 := r.ReadMapStart() - if yyl1231 == 0 { + yyct1250 := r.ContainerType() + if yyct1250 == codecSelferValueTypeMap1234 { + yyl1250 := r.ReadMapStart() + if yyl1250 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1231, d) + x.codecDecodeSelfFromMap(yyl1250, d) } - } else if yyct1231 == codecSelferValueTypeArray1234 { - yyl1231 := r.ReadArrayStart() - if yyl1231 == 0 { + } else if yyct1250 == codecSelferValueTypeArray1234 { + yyl1250 := r.ReadArrayStart() + if yyl1250 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1231, d) + x.codecDecodeSelfFromArray(yyl1250, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17127,12 +17400,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1232Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1232Slc - var yyhl1232 bool = l >= 0 - for yyj1232 := 0; ; yyj1232++ { - if yyhl1232 { - if yyj1232 >= l { + var yys1251Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1251Slc + var yyhl1251 bool = l >= 0 + for yyj1251 := 0; ; yyj1251++ { + if yyhl1251 { + if yyj1251 >= l { break } } else { @@ -17141,10 +17414,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1232Slc = r.DecodeBytes(yys1232Slc, true, true) - yys1232 := string(yys1232Slc) + yys1251Slc = r.DecodeBytes(yys1251Slc, true, true) + yys1251 := string(yys1251Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1232 { + switch yys1251 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -17158,9 +17431,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1232) - } // end switch yys1232 - } // end for yyj1232 + z.DecStructFieldNotFound(-1, yys1251) + } // end switch yys1251 + } // end for yyj1251 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17168,16 +17441,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1235 int - var yyb1235 bool - var yyhl1235 bool = l >= 0 - yyj1235++ - if yyhl1235 { - yyb1235 = yyj1235 > l + var yyj1254 int + var yyb1254 bool + var yyhl1254 bool = l >= 0 + yyj1254++ + if yyhl1254 { + yyb1254 = yyj1254 > l } else { - yyb1235 = r.CheckBreak() + yyb1254 = r.CheckBreak() } - if yyb1235 { + if yyb1254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17187,13 +17460,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1235++ - if yyhl1235 { - yyb1235 = yyj1235 > l + yyj1254++ + if yyhl1254 { + yyb1254 = yyj1254 > l } else { - yyb1235 = r.CheckBreak() + yyb1254 = r.CheckBreak() } - if yyb1235 { + if yyb1254 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17204,17 +17477,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1235++ - if yyhl1235 { - yyb1235 = yyj1235 > l + yyj1254++ + if yyhl1254 { + yyb1254 = yyj1254 > l } else { - yyb1235 = r.CheckBreak() + yyb1254 = r.CheckBreak() } - if yyb1235 { + if yyb1254 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1235-1, "") + z.DecStructFieldNotFound(yyj1254-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17226,68 +17499,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1238 := z.EncBinary() - _ = yym1238 + yym1257 := z.EncBinary() + _ = yym1257 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1239 := !z.EncBinary() - yy2arr1239 := z.EncBasicHandle().StructToArray - var yyq1239 [1]bool - _, _, _ = yysep1239, yyq1239, yy2arr1239 - const yyr1239 bool = false - yyq1239[0] = true - var yynn1239 int - if yyr1239 || yy2arr1239 { + yysep1258 := !z.EncBinary() + yy2arr1258 := z.EncBasicHandle().StructToArray + var yyq1258 [1]bool + _, _, _ = yysep1258, yyq1258, yy2arr1258 + const yyr1258 bool = false + yyq1258[0] = true + var yynn1258 int + if yyr1258 || yy2arr1258 { r.EncodeArrayStart(1) } else { - yynn1239 = 0 - for _, b := range yyq1239 { + yynn1258 = 0 + for _, b := range yyq1258 { if b { - yynn1239++ + yynn1258++ } } - r.EncodeMapStart(yynn1239) - yynn1239 = 0 + r.EncodeMapStart(yynn1258) + yynn1258 = 0 } - if yyr1239 || yy2arr1239 { + if yyr1258 || yy2arr1258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1239[0] { - yy1241 := &x.StartedAt - yym1242 := z.EncBinary() - _ = yym1242 + if yyq1258[0] { + yy1260 := &x.StartedAt + yym1261 := z.EncBinary() + _ = yym1261 if false { - } else if z.HasExtensions() && z.EncExt(yy1241) { - } else if yym1242 { - z.EncBinaryMarshal(yy1241) - } else if !yym1242 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1241) + } else if z.HasExtensions() && z.EncExt(yy1260) { + } else if yym1261 { + z.EncBinaryMarshal(yy1260) + } else if !yym1261 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1260) } else { - z.EncFallback(yy1241) + z.EncFallback(yy1260) } } else { r.EncodeNil() } } else { - if yyq1239[0] { + if yyq1258[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1243 := &x.StartedAt - yym1244 := z.EncBinary() - _ = yym1244 + yy1262 := &x.StartedAt + yym1263 := z.EncBinary() + _ = yym1263 if false { - } else if z.HasExtensions() && z.EncExt(yy1243) { - } else if yym1244 { - z.EncBinaryMarshal(yy1243) - } else if !yym1244 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1243) + } else if z.HasExtensions() && z.EncExt(yy1262) { + } else if yym1263 { + z.EncBinaryMarshal(yy1262) + } else if !yym1263 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1262) } else { - z.EncFallback(yy1243) + z.EncFallback(yy1262) } } } - if yyr1239 || yy2arr1239 { + if yyr1258 || yy2arr1258 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17300,25 +17573,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1245 := z.DecBinary() - _ = yym1245 + yym1264 := z.DecBinary() + _ = yym1264 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1246 := r.ContainerType() - if yyct1246 == codecSelferValueTypeMap1234 { - yyl1246 := r.ReadMapStart() - if yyl1246 == 0 { + yyct1265 := r.ContainerType() + if yyct1265 == codecSelferValueTypeMap1234 { + yyl1265 := r.ReadMapStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1246, d) + x.codecDecodeSelfFromMap(yyl1265, d) } - } else if yyct1246 == codecSelferValueTypeArray1234 { - yyl1246 := r.ReadArrayStart() - if yyl1246 == 0 { + } else if yyct1265 == codecSelferValueTypeArray1234 { + yyl1265 := r.ReadArrayStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1246, d) + x.codecDecodeSelfFromArray(yyl1265, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17330,12 +17603,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1247Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1247Slc - var yyhl1247 bool = l >= 0 - for yyj1247 := 0; ; yyj1247++ { - if yyhl1247 { - if yyj1247 >= l { + var yys1266Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1266Slc + var yyhl1266 bool = l >= 0 + for yyj1266 := 0; ; yyj1266++ { + if yyhl1266 { + if yyj1266 >= l { break } } else { @@ -17344,31 +17617,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1247Slc = r.DecodeBytes(yys1247Slc, true, true) - yys1247 := string(yys1247Slc) + yys1266Slc = r.DecodeBytes(yys1266Slc, true, true) + yys1266 := string(yys1266Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1247 { + switch yys1266 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1248 := &x.StartedAt - yym1249 := z.DecBinary() - _ = yym1249 + yyv1267 := &x.StartedAt + yym1268 := z.DecBinary() + _ = yym1268 if false { - } else if z.HasExtensions() && z.DecExt(yyv1248) { - } else if yym1249 { - z.DecBinaryUnmarshal(yyv1248) - } else if !yym1249 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1248) + } else if z.HasExtensions() && z.DecExt(yyv1267) { + } else if yym1268 { + z.DecBinaryUnmarshal(yyv1267) + } else if !yym1268 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1267) } else { - z.DecFallback(yyv1248, false) + z.DecFallback(yyv1267, false) } } default: - z.DecStructFieldNotFound(-1, yys1247) - } // end switch yys1247 - } // end for yyj1247 + z.DecStructFieldNotFound(-1, yys1266) + } // end switch yys1266 + } // end for yyj1266 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17376,16 +17649,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1250 int - var yyb1250 bool - var yyhl1250 bool = l >= 0 - yyj1250++ - if yyhl1250 { - yyb1250 = yyj1250 > l + var yyj1269 int + var yyb1269 bool + var yyhl1269 bool = l >= 0 + yyj1269++ + if yyhl1269 { + yyb1269 = yyj1269 > l } else { - yyb1250 = r.CheckBreak() + yyb1269 = r.CheckBreak() } - if yyb1250 { + if yyb1269 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17393,31 +17666,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1251 := &x.StartedAt - yym1252 := z.DecBinary() - _ = yym1252 + yyv1270 := &x.StartedAt + yym1271 := z.DecBinary() + _ = yym1271 if false { - } else if z.HasExtensions() && z.DecExt(yyv1251) { - } else if yym1252 { - z.DecBinaryUnmarshal(yyv1251) - } else if !yym1252 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1251) + } else if z.HasExtensions() && z.DecExt(yyv1270) { + } else if yym1271 { + z.DecBinaryUnmarshal(yyv1270) + } else if !yym1271 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1270) } else { - z.DecFallback(yyv1251, false) + z.DecFallback(yyv1270, false) } } for { - yyj1250++ - if yyhl1250 { - yyb1250 = yyj1250 > l + yyj1269++ + if yyhl1269 { + yyb1269 = yyj1269 > l } else { - yyb1250 = r.CheckBreak() + yyb1269 = r.CheckBreak() } - if yyb1250 { + if yyb1269 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1250-1, "") + z.DecStructFieldNotFound(yyj1269-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17429,39 +17702,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1253 := z.EncBinary() - _ = yym1253 + yym1272 := z.EncBinary() + _ = yym1272 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1254 := !z.EncBinary() - yy2arr1254 := z.EncBasicHandle().StructToArray - var yyq1254 [7]bool - _, _, _ = yysep1254, yyq1254, yy2arr1254 - const yyr1254 bool = false - yyq1254[1] = x.Signal != 0 - yyq1254[2] = x.Reason != "" - yyq1254[3] = x.Message != "" - yyq1254[4] = true - yyq1254[5] = true - yyq1254[6] = x.ContainerID != "" - var yynn1254 int - if yyr1254 || yy2arr1254 { + yysep1273 := !z.EncBinary() + yy2arr1273 := z.EncBasicHandle().StructToArray + var yyq1273 [7]bool + _, _, _ = yysep1273, yyq1273, yy2arr1273 + const yyr1273 bool = false + yyq1273[1] = x.Signal != 0 + yyq1273[2] = x.Reason != "" + yyq1273[3] = x.Message != "" + yyq1273[4] = true + yyq1273[5] = true + yyq1273[6] = x.ContainerID != "" + var yynn1273 int + if yyr1273 || yy2arr1273 { r.EncodeArrayStart(7) } else { - yynn1254 = 1 - for _, b := range yyq1254 { + yynn1273 = 1 + for _, b := range yyq1273 { if b { - yynn1254++ + yynn1273++ } } - r.EncodeMapStart(yynn1254) - yynn1254 = 0 + r.EncodeMapStart(yynn1273) + yynn1273 = 0 } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1256 := z.EncBinary() - _ = yym1256 + yym1275 := z.EncBinary() + _ = yym1275 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -17470,18 +17743,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1257 := z.EncBinary() - _ = yym1257 + yym1276 := z.EncBinary() + _ = yym1276 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[1] { - yym1259 := z.EncBinary() - _ = yym1259 + if yyq1273[1] { + yym1278 := z.EncBinary() + _ = yym1278 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -17490,23 +17763,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1254[1] { + if yyq1273[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1260 := z.EncBinary() - _ = yym1260 + yym1279 := z.EncBinary() + _ = yym1279 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[2] { - yym1262 := z.EncBinary() - _ = yym1262 + if yyq1273[2] { + yym1281 := z.EncBinary() + _ = yym1281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17515,23 +17788,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1254[2] { + if yyq1273[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1263 := z.EncBinary() - _ = yym1263 + yym1282 := z.EncBinary() + _ = yym1282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[3] { - yym1265 := z.EncBinary() - _ = yym1265 + if yyq1273[3] { + yym1284 := z.EncBinary() + _ = yym1284 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17540,97 +17813,97 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1254[3] { + if yyq1273[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1266 := z.EncBinary() - _ = yym1266 + yym1285 := z.EncBinary() + _ = yym1285 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[4] { - yy1268 := &x.StartedAt - yym1269 := z.EncBinary() - _ = yym1269 + if yyq1273[4] { + yy1287 := &x.StartedAt + yym1288 := z.EncBinary() + _ = yym1288 if false { - } else if z.HasExtensions() && z.EncExt(yy1268) { - } else if yym1269 { - z.EncBinaryMarshal(yy1268) - } else if !yym1269 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1268) + } else if z.HasExtensions() && z.EncExt(yy1287) { + } else if yym1288 { + z.EncBinaryMarshal(yy1287) + } else if !yym1288 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1287) } else { - z.EncFallback(yy1268) + z.EncFallback(yy1287) } } else { r.EncodeNil() } } else { - if yyq1254[4] { + if yyq1273[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1270 := &x.StartedAt - yym1271 := z.EncBinary() - _ = yym1271 + yy1289 := &x.StartedAt + yym1290 := z.EncBinary() + _ = yym1290 if false { - } else if z.HasExtensions() && z.EncExt(yy1270) { - } else if yym1271 { - z.EncBinaryMarshal(yy1270) - } else if !yym1271 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1270) + } else if z.HasExtensions() && z.EncExt(yy1289) { + } else if yym1290 { + z.EncBinaryMarshal(yy1289) + } else if !yym1290 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1289) } else { - z.EncFallback(yy1270) + z.EncFallback(yy1289) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[5] { - yy1273 := &x.FinishedAt - yym1274 := z.EncBinary() - _ = yym1274 + if yyq1273[5] { + yy1292 := &x.FinishedAt + yym1293 := z.EncBinary() + _ = yym1293 if false { - } else if z.HasExtensions() && z.EncExt(yy1273) { - } else if yym1274 { - z.EncBinaryMarshal(yy1273) - } else if !yym1274 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1273) + } else if z.HasExtensions() && z.EncExt(yy1292) { + } else if yym1293 { + z.EncBinaryMarshal(yy1292) + } else if !yym1293 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1292) } else { - z.EncFallback(yy1273) + z.EncFallback(yy1292) } } else { r.EncodeNil() } } else { - if yyq1254[5] { + if yyq1273[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1275 := &x.FinishedAt - yym1276 := z.EncBinary() - _ = yym1276 + yy1294 := &x.FinishedAt + yym1295 := z.EncBinary() + _ = yym1295 if false { - } else if z.HasExtensions() && z.EncExt(yy1275) { - } else if yym1276 { - z.EncBinaryMarshal(yy1275) - } else if !yym1276 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1275) + } else if z.HasExtensions() && z.EncExt(yy1294) { + } else if yym1295 { + z.EncBinaryMarshal(yy1294) + } else if !yym1295 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1294) } else { - z.EncFallback(yy1275) + z.EncFallback(yy1294) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1254[6] { - yym1278 := z.EncBinary() - _ = yym1278 + if yyq1273[6] { + yym1297 := z.EncBinary() + _ = yym1297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -17639,19 +17912,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1254[6] { + if yyq1273[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1279 := z.EncBinary() - _ = yym1279 + yym1298 := z.EncBinary() + _ = yym1298 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1254 || yy2arr1254 { + if yyr1273 || yy2arr1273 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17664,25 +17937,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1280 := z.DecBinary() - _ = yym1280 + yym1299 := z.DecBinary() + _ = yym1299 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1281 := r.ContainerType() - if yyct1281 == codecSelferValueTypeMap1234 { - yyl1281 := r.ReadMapStart() - if yyl1281 == 0 { + yyct1300 := r.ContainerType() + if yyct1300 == codecSelferValueTypeMap1234 { + yyl1300 := r.ReadMapStart() + if yyl1300 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1281, d) + x.codecDecodeSelfFromMap(yyl1300, d) } - } else if yyct1281 == codecSelferValueTypeArray1234 { - yyl1281 := r.ReadArrayStart() - if yyl1281 == 0 { + } else if yyct1300 == codecSelferValueTypeArray1234 { + yyl1300 := r.ReadArrayStart() + if yyl1300 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1281, d) + x.codecDecodeSelfFromArray(yyl1300, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17694,12 +17967,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1282Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1282Slc - var yyhl1282 bool = l >= 0 - for yyj1282 := 0; ; yyj1282++ { - if yyhl1282 { - if yyj1282 >= l { + var yys1301Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1301Slc + var yyhl1301 bool = l >= 0 + for yyj1301 := 0; ; yyj1301++ { + if yyhl1301 { + if yyj1301 >= l { break } } else { @@ -17708,10 +17981,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1282Slc = r.DecodeBytes(yys1282Slc, true, true) - yys1282 := string(yys1282Slc) + yys1301Slc = r.DecodeBytes(yys1301Slc, true, true) + yys1301 := string(yys1301Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1282 { + switch yys1301 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -17740,34 +18013,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1287 := &x.StartedAt - yym1288 := z.DecBinary() - _ = yym1288 + yyv1306 := &x.StartedAt + yym1307 := z.DecBinary() + _ = yym1307 if false { - } else if z.HasExtensions() && z.DecExt(yyv1287) { - } else if yym1288 { - z.DecBinaryUnmarshal(yyv1287) - } else if !yym1288 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1287) + } else if z.HasExtensions() && z.DecExt(yyv1306) { + } else if yym1307 { + z.DecBinaryUnmarshal(yyv1306) + } else if !yym1307 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1306) } else { - z.DecFallback(yyv1287, false) + z.DecFallback(yyv1306, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1289 := &x.FinishedAt - yym1290 := z.DecBinary() - _ = yym1290 + yyv1308 := &x.FinishedAt + yym1309 := z.DecBinary() + _ = yym1309 if false { - } else if z.HasExtensions() && z.DecExt(yyv1289) { - } else if yym1290 { - z.DecBinaryUnmarshal(yyv1289) - } else if !yym1290 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1289) + } else if z.HasExtensions() && z.DecExt(yyv1308) { + } else if yym1309 { + z.DecBinaryUnmarshal(yyv1308) + } else if !yym1309 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1308) } else { - z.DecFallback(yyv1289, false) + z.DecFallback(yyv1308, false) } } case "containerID": @@ -17777,9 +18050,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1282) - } // end switch yys1282 - } // end for yyj1282 + z.DecStructFieldNotFound(-1, yys1301) + } // end switch yys1301 + } // end for yyj1301 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17787,16 +18060,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1292 int - var yyb1292 bool - var yyhl1292 bool = l >= 0 - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + var yyj1311 int + var yyb1311 bool + var yyhl1311 bool = l >= 0 + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17806,13 +18079,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17822,13 +18095,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17838,13 +18111,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17854,13 +18127,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17868,26 +18141,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1297 := &x.StartedAt - yym1298 := z.DecBinary() - _ = yym1298 + yyv1316 := &x.StartedAt + yym1317 := z.DecBinary() + _ = yym1317 if false { - } else if z.HasExtensions() && z.DecExt(yyv1297) { - } else if yym1298 { - z.DecBinaryUnmarshal(yyv1297) - } else if !yym1298 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1297) + } else if z.HasExtensions() && z.DecExt(yyv1316) { + } else if yym1317 { + z.DecBinaryUnmarshal(yyv1316) + } else if !yym1317 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1316) } else { - z.DecFallback(yyv1297, false) + z.DecFallback(yyv1316, false) } } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17895,26 +18168,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1299 := &x.FinishedAt - yym1300 := z.DecBinary() - _ = yym1300 + yyv1318 := &x.FinishedAt + yym1319 := z.DecBinary() + _ = yym1319 if false { - } else if z.HasExtensions() && z.DecExt(yyv1299) { - } else if yym1300 { - z.DecBinaryUnmarshal(yyv1299) - } else if !yym1300 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1299) + } else if z.HasExtensions() && z.DecExt(yyv1318) { + } else if yym1319 { + z.DecBinaryUnmarshal(yyv1318) + } else if !yym1319 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1318) } else { - z.DecFallback(yyv1299, false) + z.DecFallback(yyv1318, false) } } - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17925,17 +18198,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1292++ - if yyhl1292 { - yyb1292 = yyj1292 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1292 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1292 { + if yyb1311 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1292-1, "") + z.DecStructFieldNotFound(yyj1311-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17947,35 +18220,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1302 := z.EncBinary() - _ = yym1302 + yym1321 := z.EncBinary() + _ = yym1321 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1303 := !z.EncBinary() - yy2arr1303 := z.EncBasicHandle().StructToArray - var yyq1303 [3]bool - _, _, _ = yysep1303, yyq1303, yy2arr1303 - const yyr1303 bool = false - yyq1303[0] = x.Waiting != nil - yyq1303[1] = x.Running != nil - yyq1303[2] = x.Terminated != nil - var yynn1303 int - if yyr1303 || yy2arr1303 { + yysep1322 := !z.EncBinary() + yy2arr1322 := z.EncBasicHandle().StructToArray + var yyq1322 [3]bool + _, _, _ = yysep1322, yyq1322, yy2arr1322 + const yyr1322 bool = false + yyq1322[0] = x.Waiting != nil + yyq1322[1] = x.Running != nil + yyq1322[2] = x.Terminated != nil + var yynn1322 int + if yyr1322 || yy2arr1322 { r.EncodeArrayStart(3) } else { - yynn1303 = 0 - for _, b := range yyq1303 { + yynn1322 = 0 + for _, b := range yyq1322 { if b { - yynn1303++ + yynn1322++ } } - r.EncodeMapStart(yynn1303) - yynn1303 = 0 + r.EncodeMapStart(yynn1322) + yynn1322 = 0 } - if yyr1303 || yy2arr1303 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1303[0] { + if yyq1322[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -17985,7 +18258,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1303[0] { + if yyq1322[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17996,9 +18269,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1303 || yy2arr1303 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1303[1] { + if yyq1322[1] { if x.Running == nil { r.EncodeNil() } else { @@ -18008,7 +18281,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1303[1] { + if yyq1322[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18019,9 +18292,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1303 || yy2arr1303 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1303[2] { + if yyq1322[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -18031,7 +18304,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1303[2] { + if yyq1322[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18042,7 +18315,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1303 || yy2arr1303 { + if yyr1322 || yy2arr1322 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18055,25 +18328,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1307 := z.DecBinary() - _ = yym1307 + yym1326 := z.DecBinary() + _ = yym1326 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1308 := r.ContainerType() - if yyct1308 == codecSelferValueTypeMap1234 { - yyl1308 := r.ReadMapStart() - if yyl1308 == 0 { + yyct1327 := r.ContainerType() + if yyct1327 == codecSelferValueTypeMap1234 { + yyl1327 := r.ReadMapStart() + if yyl1327 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1308, d) + x.codecDecodeSelfFromMap(yyl1327, d) } - } else if yyct1308 == codecSelferValueTypeArray1234 { - yyl1308 := r.ReadArrayStart() - if yyl1308 == 0 { + } else if yyct1327 == codecSelferValueTypeArray1234 { + yyl1327 := r.ReadArrayStart() + if yyl1327 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1308, d) + x.codecDecodeSelfFromArray(yyl1327, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18085,12 +18358,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1309Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1309Slc - var yyhl1309 bool = l >= 0 - for yyj1309 := 0; ; yyj1309++ { - if yyhl1309 { - if yyj1309 >= l { + var yys1328Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1328Slc + var yyhl1328 bool = l >= 0 + for yyj1328 := 0; ; yyj1328++ { + if yyhl1328 { + if yyj1328 >= l { break } } else { @@ -18099,10 +18372,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1309Slc = r.DecodeBytes(yys1309Slc, true, true) - yys1309 := string(yys1309Slc) + yys1328Slc = r.DecodeBytes(yys1328Slc, true, true) + yys1328 := string(yys1328Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1309 { + switch yys1328 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -18137,9 +18410,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1309) - } // end switch yys1309 - } // end for yyj1309 + z.DecStructFieldNotFound(-1, yys1328) + } // end switch yys1328 + } // end for yyj1328 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18147,16 +18420,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1313 int - var yyb1313 bool - var yyhl1313 bool = l >= 0 - yyj1313++ - if yyhl1313 { - yyb1313 = yyj1313 > l + var yyj1332 int + var yyb1332 bool + var yyhl1332 bool = l >= 0 + yyj1332++ + if yyhl1332 { + yyb1332 = yyj1332 > l } else { - yyb1313 = r.CheckBreak() + yyb1332 = r.CheckBreak() } - if yyb1313 { + if yyb1332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18171,13 +18444,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1313++ - if yyhl1313 { - yyb1313 = yyj1313 > l + yyj1332++ + if yyhl1332 { + yyb1332 = yyj1332 > l } else { - yyb1313 = r.CheckBreak() + yyb1332 = r.CheckBreak() } - if yyb1313 { + if yyb1332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18192,13 +18465,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1313++ - if yyhl1313 { - yyb1313 = yyj1313 > l + yyj1332++ + if yyhl1332 { + yyb1332 = yyj1332 > l } else { - yyb1313 = r.CheckBreak() + yyb1332 = r.CheckBreak() } - if yyb1313 { + if yyb1332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18214,17 +18487,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1313++ - if yyhl1313 { - yyb1313 = yyj1313 > l + yyj1332++ + if yyhl1332 { + yyb1332 = yyj1332 > l } else { - yyb1313 = r.CheckBreak() + yyb1332 = r.CheckBreak() } - if yyb1313 { + if yyb1332 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1313-1, "") + z.DecStructFieldNotFound(yyj1332-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18236,36 +18509,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1317 := z.EncBinary() - _ = yym1317 + yym1336 := z.EncBinary() + _ = yym1336 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1318 := !z.EncBinary() - yy2arr1318 := z.EncBasicHandle().StructToArray - var yyq1318 [8]bool - _, _, _ = yysep1318, yyq1318, yy2arr1318 - const yyr1318 bool = false - yyq1318[1] = true - yyq1318[2] = true - yyq1318[7] = x.ContainerID != "" - var yynn1318 int - if yyr1318 || yy2arr1318 { + yysep1337 := !z.EncBinary() + yy2arr1337 := z.EncBasicHandle().StructToArray + var yyq1337 [8]bool + _, _, _ = yysep1337, yyq1337, yy2arr1337 + const yyr1337 bool = false + yyq1337[1] = true + yyq1337[2] = true + yyq1337[7] = x.ContainerID != "" + var yynn1337 int + if yyr1337 || yy2arr1337 { r.EncodeArrayStart(8) } else { - yynn1318 = 5 - for _, b := range yyq1318 { + yynn1337 = 5 + for _, b := range yyq1337 { if b { - yynn1318++ + yynn1337++ } } - r.EncodeMapStart(yynn1318) - yynn1318 = 0 + r.EncodeMapStart(yynn1337) + yynn1337 = 0 } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1320 := z.EncBinary() - _ = yym1320 + yym1339 := z.EncBinary() + _ = yym1339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -18274,51 +18547,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1321 := z.EncBinary() - _ = yym1321 + yym1340 := z.EncBinary() + _ = yym1340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1318[1] { - yy1323 := &x.State - yy1323.CodecEncodeSelf(e) + if yyq1337[1] { + yy1342 := &x.State + yy1342.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1318[1] { + if yyq1337[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1324 := &x.State - yy1324.CodecEncodeSelf(e) + yy1343 := &x.State + yy1343.CodecEncodeSelf(e) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1318[2] { - yy1326 := &x.LastTerminationState - yy1326.CodecEncodeSelf(e) + if yyq1337[2] { + yy1345 := &x.LastTerminationState + yy1345.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1318[2] { + if yyq1337[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1327 := &x.LastTerminationState - yy1327.CodecEncodeSelf(e) + yy1346 := &x.LastTerminationState + yy1346.CodecEncodeSelf(e) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1329 := z.EncBinary() - _ = yym1329 + yym1348 := z.EncBinary() + _ = yym1348 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -18327,17 +18600,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1330 := z.EncBinary() - _ = yym1330 + yym1349 := z.EncBinary() + _ = yym1349 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1332 := z.EncBinary() - _ = yym1332 + yym1351 := z.EncBinary() + _ = yym1351 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -18346,17 +18619,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1333 := z.EncBinary() - _ = yym1333 + yym1352 := z.EncBinary() + _ = yym1352 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1335 := z.EncBinary() - _ = yym1335 + yym1354 := z.EncBinary() + _ = yym1354 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -18365,17 +18638,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1336 := z.EncBinary() - _ = yym1336 + yym1355 := z.EncBinary() + _ = yym1355 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1338 := z.EncBinary() - _ = yym1338 + yym1357 := z.EncBinary() + _ = yym1357 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -18384,18 +18657,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1339 := z.EncBinary() - _ = yym1339 + yym1358 := z.EncBinary() + _ = yym1358 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1318[7] { - yym1341 := z.EncBinary() - _ = yym1341 + if yyq1337[7] { + yym1360 := z.EncBinary() + _ = yym1360 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18404,19 +18677,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1318[7] { + if yyq1337[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1342 := z.EncBinary() - _ = yym1342 + yym1361 := z.EncBinary() + _ = yym1361 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1318 || yy2arr1318 { + if yyr1337 || yy2arr1337 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18429,25 +18702,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1343 := z.DecBinary() - _ = yym1343 + yym1362 := z.DecBinary() + _ = yym1362 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1344 := r.ContainerType() - if yyct1344 == codecSelferValueTypeMap1234 { - yyl1344 := r.ReadMapStart() - if yyl1344 == 0 { + yyct1363 := r.ContainerType() + if yyct1363 == codecSelferValueTypeMap1234 { + yyl1363 := r.ReadMapStart() + if yyl1363 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1344, d) + x.codecDecodeSelfFromMap(yyl1363, d) } - } else if yyct1344 == codecSelferValueTypeArray1234 { - yyl1344 := r.ReadArrayStart() - if yyl1344 == 0 { + } else if yyct1363 == codecSelferValueTypeArray1234 { + yyl1363 := r.ReadArrayStart() + if yyl1363 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1344, d) + x.codecDecodeSelfFromArray(yyl1363, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18459,12 +18732,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1345Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1345Slc - var yyhl1345 bool = l >= 0 - for yyj1345 := 0; ; yyj1345++ { - if yyhl1345 { - if yyj1345 >= l { + var yys1364Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1364Slc + var yyhl1364 bool = l >= 0 + for yyj1364 := 0; ; yyj1364++ { + if yyhl1364 { + if yyj1364 >= l { break } } else { @@ -18473,10 +18746,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1345Slc = r.DecodeBytes(yys1345Slc, true, true) - yys1345 := string(yys1345Slc) + yys1364Slc = r.DecodeBytes(yys1364Slc, true, true) + yys1364 := string(yys1364Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1345 { + switch yys1364 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -18487,15 +18760,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1347 := &x.State - yyv1347.CodecDecodeSelf(d) + yyv1366 := &x.State + yyv1366.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1348 := &x.LastTerminationState - yyv1348.CodecDecodeSelf(d) + yyv1367 := &x.LastTerminationState + yyv1367.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -18528,9 +18801,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1345) - } // end switch yys1345 - } // end for yyj1345 + z.DecStructFieldNotFound(-1, yys1364) + } // end switch yys1364 + } // end for yyj1364 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18538,16 +18811,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1354 int - var yyb1354 bool - var yyhl1354 bool = l >= 0 - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + var yyj1373 int + var yyb1373 bool + var yyhl1373 bool = l >= 0 + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18557,13 +18830,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18571,16 +18844,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1356 := &x.State - yyv1356.CodecDecodeSelf(d) + yyv1375 := &x.State + yyv1375.CodecDecodeSelf(d) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18588,16 +18861,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1357 := &x.LastTerminationState - yyv1357.CodecDecodeSelf(d) + yyv1376 := &x.LastTerminationState + yyv1376.CodecDecodeSelf(d) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18607,13 +18880,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18623,13 +18896,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18639,13 +18912,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18655,13 +18928,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18672,17 +18945,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1354++ - if yyhl1354 { - yyb1354 = yyj1354 > l + yyj1373++ + if yyhl1373 { + yyb1373 = yyj1373 > l } else { - yyb1354 = r.CheckBreak() + yyb1373 = r.CheckBreak() } - if yyb1354 { + if yyb1373 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1354-1, "") + z.DecStructFieldNotFound(yyj1373-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18691,8 +18964,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1363 := z.EncBinary() - _ = yym1363 + yym1382 := z.EncBinary() + _ = yym1382 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18704,8 +18977,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1364 := z.DecBinary() - _ = yym1364 + yym1383 := z.DecBinary() + _ = yym1383 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18717,8 +18990,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1365 := z.EncBinary() - _ = yym1365 + yym1384 := z.EncBinary() + _ = yym1384 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18730,8 +19003,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1366 := z.DecBinary() - _ = yym1366 + yym1385 := z.DecBinary() + _ = yym1385 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18746,34 +19019,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1367 := z.EncBinary() - _ = yym1367 + yym1386 := z.EncBinary() + _ = yym1386 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1368 := !z.EncBinary() - yy2arr1368 := z.EncBasicHandle().StructToArray - var yyq1368 [6]bool - _, _, _ = yysep1368, yyq1368, yy2arr1368 - const yyr1368 bool = false - yyq1368[2] = true - yyq1368[3] = true - yyq1368[4] = x.Reason != "" - yyq1368[5] = x.Message != "" - var yynn1368 int - if yyr1368 || yy2arr1368 { + yysep1387 := !z.EncBinary() + yy2arr1387 := z.EncBasicHandle().StructToArray + var yyq1387 [6]bool + _, _, _ = yysep1387, yyq1387, yy2arr1387 + const yyr1387 bool = false + yyq1387[2] = true + yyq1387[3] = true + yyq1387[4] = x.Reason != "" + yyq1387[5] = x.Message != "" + var yynn1387 int + if yyr1387 || yy2arr1387 { r.EncodeArrayStart(6) } else { - yynn1368 = 2 - for _, b := range yyq1368 { + yynn1387 = 2 + for _, b := range yyq1387 { if b { - yynn1368++ + yynn1387++ } } - r.EncodeMapStart(yynn1368) - yynn1368 = 0 + r.EncodeMapStart(yynn1387) + yynn1387 = 0 } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -18782,7 +19055,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -18791,85 +19064,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1368[2] { - yy1372 := &x.LastProbeTime - yym1373 := z.EncBinary() - _ = yym1373 + if yyq1387[2] { + yy1391 := &x.LastProbeTime + yym1392 := z.EncBinary() + _ = yym1392 if false { - } else if z.HasExtensions() && z.EncExt(yy1372) { - } else if yym1373 { - z.EncBinaryMarshal(yy1372) - } else if !yym1373 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1372) + } else if z.HasExtensions() && z.EncExt(yy1391) { + } else if yym1392 { + z.EncBinaryMarshal(yy1391) + } else if !yym1392 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1391) } else { - z.EncFallback(yy1372) + z.EncFallback(yy1391) } } else { r.EncodeNil() } } else { - if yyq1368[2] { + if yyq1387[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1374 := &x.LastProbeTime - yym1375 := z.EncBinary() - _ = yym1375 + yy1393 := &x.LastProbeTime + yym1394 := z.EncBinary() + _ = yym1394 if false { - } else if z.HasExtensions() && z.EncExt(yy1374) { - } else if yym1375 { - z.EncBinaryMarshal(yy1374) - } else if !yym1375 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1374) + } else if z.HasExtensions() && z.EncExt(yy1393) { + } else if yym1394 { + z.EncBinaryMarshal(yy1393) + } else if !yym1394 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1393) } else { - z.EncFallback(yy1374) + z.EncFallback(yy1393) } } } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1368[3] { - yy1377 := &x.LastTransitionTime - yym1378 := z.EncBinary() - _ = yym1378 + if yyq1387[3] { + yy1396 := &x.LastTransitionTime + yym1397 := z.EncBinary() + _ = yym1397 if false { - } else if z.HasExtensions() && z.EncExt(yy1377) { - } else if yym1378 { - z.EncBinaryMarshal(yy1377) - } else if !yym1378 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1377) + } else if z.HasExtensions() && z.EncExt(yy1396) { + } else if yym1397 { + z.EncBinaryMarshal(yy1396) + } else if !yym1397 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1396) } else { - z.EncFallback(yy1377) + z.EncFallback(yy1396) } } else { r.EncodeNil() } } else { - if yyq1368[3] { + if yyq1387[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1379 := &x.LastTransitionTime - yym1380 := z.EncBinary() - _ = yym1380 + yy1398 := &x.LastTransitionTime + yym1399 := z.EncBinary() + _ = yym1399 if false { - } else if z.HasExtensions() && z.EncExt(yy1379) { - } else if yym1380 { - z.EncBinaryMarshal(yy1379) - } else if !yym1380 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1379) + } else if z.HasExtensions() && z.EncExt(yy1398) { + } else if yym1399 { + z.EncBinaryMarshal(yy1398) + } else if !yym1399 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1398) } else { - z.EncFallback(yy1379) + z.EncFallback(yy1398) } } } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1368[4] { - yym1382 := z.EncBinary() - _ = yym1382 + if yyq1387[4] { + yym1401 := z.EncBinary() + _ = yym1401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18878,23 +19151,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1368[4] { + if yyq1387[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1383 := z.EncBinary() - _ = yym1383 + yym1402 := z.EncBinary() + _ = yym1402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1368[5] { - yym1385 := z.EncBinary() - _ = yym1385 + if yyq1387[5] { + yym1404 := z.EncBinary() + _ = yym1404 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18903,19 +19176,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1368[5] { + if yyq1387[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1386 := z.EncBinary() - _ = yym1386 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1368 || yy2arr1368 { + if yyr1387 || yy2arr1387 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18928,25 +19201,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1387 := z.DecBinary() - _ = yym1387 + yym1406 := z.DecBinary() + _ = yym1406 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1388 := r.ContainerType() - if yyct1388 == codecSelferValueTypeMap1234 { - yyl1388 := r.ReadMapStart() - if yyl1388 == 0 { + yyct1407 := r.ContainerType() + if yyct1407 == codecSelferValueTypeMap1234 { + yyl1407 := r.ReadMapStart() + if yyl1407 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1388, d) + x.codecDecodeSelfFromMap(yyl1407, d) } - } else if yyct1388 == codecSelferValueTypeArray1234 { - yyl1388 := r.ReadArrayStart() - if yyl1388 == 0 { + } else if yyct1407 == codecSelferValueTypeArray1234 { + yyl1407 := r.ReadArrayStart() + if yyl1407 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1388, d) + x.codecDecodeSelfFromArray(yyl1407, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18958,12 +19231,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1389Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1389Slc - var yyhl1389 bool = l >= 0 - for yyj1389 := 0; ; yyj1389++ { - if yyhl1389 { - if yyj1389 >= l { + var yys1408Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1408Slc + var yyhl1408 bool = l >= 0 + for yyj1408 := 0; ; yyj1408++ { + if yyhl1408 { + if yyj1408 >= l { break } } else { @@ -18972,10 +19245,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1389Slc = r.DecodeBytes(yys1389Slc, true, true) - yys1389 := string(yys1389Slc) + yys1408Slc = r.DecodeBytes(yys1408Slc, true, true) + yys1408 := string(yys1408Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1389 { + switch yys1408 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -18992,34 +19265,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1392 := &x.LastProbeTime - yym1393 := z.DecBinary() - _ = yym1393 + yyv1411 := &x.LastProbeTime + yym1412 := z.DecBinary() + _ = yym1412 if false { - } else if z.HasExtensions() && z.DecExt(yyv1392) { - } else if yym1393 { - z.DecBinaryUnmarshal(yyv1392) - } else if !yym1393 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1392) + } else if z.HasExtensions() && z.DecExt(yyv1411) { + } else if yym1412 { + z.DecBinaryUnmarshal(yyv1411) + } else if !yym1412 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1411) } else { - z.DecFallback(yyv1392, false) + z.DecFallback(yyv1411, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1394 := &x.LastTransitionTime - yym1395 := z.DecBinary() - _ = yym1395 + yyv1413 := &x.LastTransitionTime + yym1414 := z.DecBinary() + _ = yym1414 if false { - } else if z.HasExtensions() && z.DecExt(yyv1394) { - } else if yym1395 { - z.DecBinaryUnmarshal(yyv1394) - } else if !yym1395 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1394) + } else if z.HasExtensions() && z.DecExt(yyv1413) { + } else if yym1414 { + z.DecBinaryUnmarshal(yyv1413) + } else if !yym1414 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1413) } else { - z.DecFallback(yyv1394, false) + z.DecFallback(yyv1413, false) } } case "reason": @@ -19035,9 +19308,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1389) - } // end switch yys1389 - } // end for yyj1389 + z.DecStructFieldNotFound(-1, yys1408) + } // end switch yys1408 + } // end for yyj1408 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19045,16 +19318,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1398 int - var yyb1398 bool - var yyhl1398 bool = l >= 0 - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + var yyj1417 int + var yyb1417 bool + var yyhl1417 bool = l >= 0 + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19064,13 +19337,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19080,13 +19353,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19094,26 +19367,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1401 := &x.LastProbeTime - yym1402 := z.DecBinary() - _ = yym1402 + yyv1420 := &x.LastProbeTime + yym1421 := z.DecBinary() + _ = yym1421 if false { - } else if z.HasExtensions() && z.DecExt(yyv1401) { - } else if yym1402 { - z.DecBinaryUnmarshal(yyv1401) - } else if !yym1402 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1401) + } else if z.HasExtensions() && z.DecExt(yyv1420) { + } else if yym1421 { + z.DecBinaryUnmarshal(yyv1420) + } else if !yym1421 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1420) } else { - z.DecFallback(yyv1401, false) + z.DecFallback(yyv1420, false) } } - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19121,26 +19394,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1403 := &x.LastTransitionTime - yym1404 := z.DecBinary() - _ = yym1404 + yyv1422 := &x.LastTransitionTime + yym1423 := z.DecBinary() + _ = yym1423 if false { - } else if z.HasExtensions() && z.DecExt(yyv1403) { - } else if yym1404 { - z.DecBinaryUnmarshal(yyv1403) - } else if !yym1404 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1403) + } else if z.HasExtensions() && z.DecExt(yyv1422) { + } else if yym1423 { + z.DecBinaryUnmarshal(yyv1422) + } else if !yym1423 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1422) } else { - z.DecFallback(yyv1403, false) + z.DecFallback(yyv1422, false) } } - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19150,13 +19423,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19167,17 +19440,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1398++ - if yyhl1398 { - yyb1398 = yyj1398 > l + yyj1417++ + if yyhl1417 { + yyb1417 = yyj1417 > l } else { - yyb1398 = r.CheckBreak() + yyb1417 = r.CheckBreak() } - if yyb1398 { + if yyb1417 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1398-1, "") + z.DecStructFieldNotFound(yyj1417-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19186,8 +19459,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1407 := z.EncBinary() - _ = yym1407 + yym1426 := z.EncBinary() + _ = yym1426 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19199,8 +19472,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1408 := z.DecBinary() - _ = yym1408 + yym1427 := z.DecBinary() + _ = yym1427 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19212,8 +19485,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1409 := z.EncBinary() - _ = yym1409 + yym1428 := z.EncBinary() + _ = yym1428 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19225,8 +19498,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1410 := z.DecBinary() - _ = yym1410 + yym1429 := z.DecBinary() + _ = yym1429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19241,51 +19514,51 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1411 := z.EncBinary() - _ = yym1411 + yym1430 := z.EncBinary() + _ = yym1430 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1412 := !z.EncBinary() - yy2arr1412 := z.EncBasicHandle().StructToArray - var yyq1412 [15]bool - _, _, _ = yysep1412, yyq1412, yy2arr1412 - const yyr1412 bool = false - yyq1412[0] = len(x.Volumes) != 0 - yyq1412[2] = x.RestartPolicy != "" - yyq1412[3] = x.TerminationGracePeriodSeconds != nil - yyq1412[4] = x.ActiveDeadlineSeconds != nil - yyq1412[5] = x.DNSPolicy != "" - yyq1412[6] = len(x.NodeSelector) != 0 - yyq1412[7] = x.ServiceAccountName != "" - yyq1412[8] = x.DeprecatedServiceAccount != "" - yyq1412[9] = x.NodeName != "" - yyq1412[10] = x.HostNetwork != false - yyq1412[11] = x.HostPID != false - yyq1412[12] = x.HostIPC != false - yyq1412[13] = x.SecurityContext != nil - yyq1412[14] = len(x.ImagePullSecrets) != 0 - var yynn1412 int - if yyr1412 || yy2arr1412 { + yysep1431 := !z.EncBinary() + yy2arr1431 := z.EncBasicHandle().StructToArray + var yyq1431 [15]bool + _, _, _ = yysep1431, yyq1431, yy2arr1431 + const yyr1431 bool = false + yyq1431[0] = len(x.Volumes) != 0 + yyq1431[2] = x.RestartPolicy != "" + yyq1431[3] = x.TerminationGracePeriodSeconds != nil + yyq1431[4] = x.ActiveDeadlineSeconds != nil + yyq1431[5] = x.DNSPolicy != "" + yyq1431[6] = len(x.NodeSelector) != 0 + yyq1431[7] = x.ServiceAccountName != "" + yyq1431[8] = x.DeprecatedServiceAccount != "" + yyq1431[9] = x.NodeName != "" + yyq1431[10] = x.HostNetwork != false + yyq1431[11] = x.HostPID != false + yyq1431[12] = x.HostIPC != false + yyq1431[13] = x.SecurityContext != nil + yyq1431[14] = len(x.ImagePullSecrets) != 0 + var yynn1431 int + if yyr1431 || yy2arr1431 { r.EncodeArrayStart(15) } else { - yynn1412 = 1 - for _, b := range yyq1412 { + yynn1431 = 1 + for _, b := range yyq1431 { if b { - yynn1412++ + yynn1431++ } } - r.EncodeMapStart(yynn1412) - yynn1412 = 0 + r.EncodeMapStart(yynn1431) + yynn1431 = 0 } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[0] { + if yyq1431[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym1414 := z.EncBinary() - _ = yym1414 + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -19295,15 +19568,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1412[0] { + if yyq1431[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1415 := z.EncBinary() - _ = yym1415 + yym1434 := z.EncBinary() + _ = yym1434 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -19311,13 +19584,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1417 := z.EncBinary() - _ = yym1417 + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -19330,122 +19603,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1418 := z.EncBinary() - _ = yym1418 + yym1437 := z.EncBinary() + _ = yym1437 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[2] { + if yyq1431[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1412[2] { + if yyq1431[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[3] { + if yyq1431[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1421 := *x.TerminationGracePeriodSeconds - yym1422 := z.EncBinary() - _ = yym1422 + yy1440 := *x.TerminationGracePeriodSeconds + yym1441 := z.EncBinary() + _ = yym1441 if false { } else { - r.EncodeInt(int64(yy1421)) + r.EncodeInt(int64(yy1440)) } } } else { r.EncodeNil() } } else { - if yyq1412[3] { + if yyq1431[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1423 := *x.TerminationGracePeriodSeconds - yym1424 := z.EncBinary() - _ = yym1424 + yy1442 := *x.TerminationGracePeriodSeconds + yym1443 := z.EncBinary() + _ = yym1443 if false { } else { - r.EncodeInt(int64(yy1423)) + r.EncodeInt(int64(yy1442)) } } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[4] { + if yyq1431[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1426 := *x.ActiveDeadlineSeconds - yym1427 := z.EncBinary() - _ = yym1427 + yy1445 := *x.ActiveDeadlineSeconds + yym1446 := z.EncBinary() + _ = yym1446 if false { } else { - r.EncodeInt(int64(yy1426)) + r.EncodeInt(int64(yy1445)) } } } else { r.EncodeNil() } } else { - if yyq1412[4] { + if yyq1431[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1428 := *x.ActiveDeadlineSeconds - yym1429 := z.EncBinary() - _ = yym1429 + yy1447 := *x.ActiveDeadlineSeconds + yym1448 := z.EncBinary() + _ = yym1448 if false { } else { - r.EncodeInt(int64(yy1428)) + r.EncodeInt(int64(yy1447)) } } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[5] { + if yyq1431[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1412[5] { + if yyq1431[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[6] { + if yyq1431[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1432 := z.EncBinary() - _ = yym1432 + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -19455,15 +19728,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1412[6] { + if yyq1431[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1433 := z.EncBinary() - _ = yym1433 + yym1452 := z.EncBinary() + _ = yym1452 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -19471,11 +19744,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[7] { - yym1435 := z.EncBinary() - _ = yym1435 + if yyq1431[7] { + yym1454 := z.EncBinary() + _ = yym1454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -19484,23 +19757,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1412[7] { + if yyq1431[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1436 := z.EncBinary() - _ = yym1436 + yym1455 := z.EncBinary() + _ = yym1455 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[8] { - yym1438 := z.EncBinary() - _ = yym1438 + if yyq1431[8] { + yym1457 := z.EncBinary() + _ = yym1457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -19509,23 +19782,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1412[8] { + if yyq1431[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1439 := z.EncBinary() - _ = yym1439 + yym1458 := z.EncBinary() + _ = yym1458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[9] { - yym1441 := z.EncBinary() - _ = yym1441 + if yyq1431[9] { + yym1460 := z.EncBinary() + _ = yym1460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -19534,23 +19807,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1412[9] { + if yyq1431[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1442 := z.EncBinary() - _ = yym1442 + yym1461 := z.EncBinary() + _ = yym1461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[10] { - yym1444 := z.EncBinary() - _ = yym1444 + if yyq1431[10] { + yym1463 := z.EncBinary() + _ = yym1463 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -19559,23 +19832,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1412[10] { + if yyq1431[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1445 := z.EncBinary() - _ = yym1445 + yym1464 := z.EncBinary() + _ = yym1464 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[11] { - yym1447 := z.EncBinary() - _ = yym1447 + if yyq1431[11] { + yym1466 := z.EncBinary() + _ = yym1466 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -19584,23 +19857,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1412[11] { + if yyq1431[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1448 := z.EncBinary() - _ = yym1448 + yym1467 := z.EncBinary() + _ = yym1467 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[12] { - yym1450 := z.EncBinary() - _ = yym1450 + if yyq1431[12] { + yym1469 := z.EncBinary() + _ = yym1469 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -19609,21 +19882,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1412[12] { + if yyq1431[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1451 := z.EncBinary() - _ = yym1451 + yym1470 := z.EncBinary() + _ = yym1470 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[13] { + if yyq1431[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -19633,7 +19906,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1412[13] { + if yyq1431[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19644,14 +19917,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1412[14] { + if yyq1431[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1454 := z.EncBinary() - _ = yym1454 + yym1473 := z.EncBinary() + _ = yym1473 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -19661,15 +19934,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1412[14] { + if yyq1431[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1455 := z.EncBinary() - _ = yym1455 + yym1474 := z.EncBinary() + _ = yym1474 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -19677,7 +19950,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1412 || yy2arr1412 { + if yyr1431 || yy2arr1431 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19690,25 +19963,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1456 := z.DecBinary() - _ = yym1456 + yym1475 := z.DecBinary() + _ = yym1475 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1457 := r.ContainerType() - if yyct1457 == codecSelferValueTypeMap1234 { - yyl1457 := r.ReadMapStart() - if yyl1457 == 0 { + yyct1476 := r.ContainerType() + if yyct1476 == codecSelferValueTypeMap1234 { + yyl1476 := r.ReadMapStart() + if yyl1476 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1457, d) + x.codecDecodeSelfFromMap(yyl1476, d) } - } else if yyct1457 == codecSelferValueTypeArray1234 { - yyl1457 := r.ReadArrayStart() - if yyl1457 == 0 { + } else if yyct1476 == codecSelferValueTypeArray1234 { + yyl1476 := r.ReadArrayStart() + if yyl1476 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1457, d) + x.codecDecodeSelfFromArray(yyl1476, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19720,12 +19993,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1458Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1458Slc - var yyhl1458 bool = l >= 0 - for yyj1458 := 0; ; yyj1458++ { - if yyhl1458 { - if yyj1458 >= l { + var yys1477Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1477Slc + var yyhl1477 bool = l >= 0 + for yyj1477 := 0; ; yyj1477++ { + if yyhl1477 { + if yyj1477 >= l { break } } else { @@ -19734,32 +20007,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1458Slc = r.DecodeBytes(yys1458Slc, true, true) - yys1458 := string(yys1458Slc) + yys1477Slc = r.DecodeBytes(yys1477Slc, true, true) + yys1477 := string(yys1477Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1458 { + switch yys1477 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1459 := &x.Volumes - yym1460 := z.DecBinary() - _ = yym1460 + yyv1478 := &x.Volumes + yym1479 := z.DecBinary() + _ = yym1479 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1459), d) + h.decSliceVolume((*[]Volume)(yyv1478), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1461 := &x.Containers - yym1462 := z.DecBinary() - _ = yym1462 + yyv1480 := &x.Containers + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSliceContainer((*[]Container)(yyv1461), d) + h.decSliceContainer((*[]Container)(yyv1480), d) } } case "restartPolicy": @@ -19777,8 +20050,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1465 := z.DecBinary() - _ = yym1465 + yym1484 := z.DecBinary() + _ = yym1484 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -19793,8 +20066,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1467 := z.DecBinary() - _ = yym1467 + yym1486 := z.DecBinary() + _ = yym1486 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -19810,12 +20083,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1469 := &x.NodeSelector - yym1470 := z.DecBinary() - _ = yym1470 + yyv1488 := &x.NodeSelector + yym1489 := z.DecBinary() + _ = yym1489 if false { } else { - z.F.DecMapStringStringX(yyv1469, false, d) + z.F.DecMapStringStringX(yyv1488, false, d) } } case "serviceAccountName": @@ -19869,18 +20142,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1478 := &x.ImagePullSecrets - yym1479 := z.DecBinary() - _ = yym1479 + yyv1497 := &x.ImagePullSecrets + yym1498 := z.DecBinary() + _ = yym1498 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1478), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1497), d) } } default: - z.DecStructFieldNotFound(-1, yys1458) - } // end switch yys1458 - } // end for yyj1458 + z.DecStructFieldNotFound(-1, yys1477) + } // end switch yys1477 + } // end for yyj1477 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19888,16 +20161,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1480 int - var yyb1480 bool - var yyhl1480 bool = l >= 0 - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + var yyj1499 int + var yyb1499 bool + var yyhl1499 bool = l >= 0 + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19905,21 +20178,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1481 := &x.Volumes - yym1482 := z.DecBinary() - _ = yym1482 + yyv1500 := &x.Volumes + yym1501 := z.DecBinary() + _ = yym1501 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1481), d) + h.decSliceVolume((*[]Volume)(yyv1500), d) } } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19927,21 +20200,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1483 := &x.Containers - yym1484 := z.DecBinary() - _ = yym1484 + yyv1502 := &x.Containers + yym1503 := z.DecBinary() + _ = yym1503 if false { } else { - h.decSliceContainer((*[]Container)(yyv1483), d) + h.decSliceContainer((*[]Container)(yyv1502), d) } } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19951,13 +20224,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19970,20 +20243,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1487 := z.DecBinary() - _ = yym1487 + yym1506 := z.DecBinary() + _ = yym1506 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19996,20 +20269,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1489 := z.DecBinary() - _ = yym1489 + yym1508 := z.DecBinary() + _ = yym1508 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20019,13 +20292,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20033,21 +20306,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1491 := &x.NodeSelector - yym1492 := z.DecBinary() - _ = yym1492 + yyv1510 := &x.NodeSelector + yym1511 := z.DecBinary() + _ = yym1511 if false { } else { - z.F.DecMapStringStringX(yyv1491, false, d) + z.F.DecMapStringStringX(yyv1510, false, d) } } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20057,13 +20330,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20073,13 +20346,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20089,13 +20362,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20105,13 +20378,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20121,13 +20394,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20137,13 +20410,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20158,13 +20431,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20172,26 +20445,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1500 := &x.ImagePullSecrets - yym1501 := z.DecBinary() - _ = yym1501 + yyv1519 := &x.ImagePullSecrets + yym1520 := z.DecBinary() + _ = yym1520 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1500), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1519), d) } } for { - yyj1480++ - if yyhl1480 { - yyb1480 = yyj1480 > l + yyj1499++ + if yyhl1499 { + yyb1499 = yyj1499 > l } else { - yyb1480 = r.CheckBreak() + yyb1499 = r.CheckBreak() } - if yyb1480 { + if yyb1499 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1480-1, "") + z.DecStructFieldNotFound(yyj1499-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20203,37 +20476,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1502 := z.EncBinary() - _ = yym1502 + yym1521 := z.EncBinary() + _ = yym1521 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1503 := !z.EncBinary() - yy2arr1503 := z.EncBasicHandle().StructToArray - var yyq1503 [5]bool - _, _, _ = yysep1503, yyq1503, yy2arr1503 - const yyr1503 bool = false - yyq1503[0] = x.SELinuxOptions != nil - yyq1503[1] = x.RunAsUser != nil - yyq1503[2] = x.RunAsNonRoot != nil - yyq1503[3] = len(x.SupplementalGroups) != 0 - yyq1503[4] = x.FSGroup != nil - var yynn1503 int - if yyr1503 || yy2arr1503 { + yysep1522 := !z.EncBinary() + yy2arr1522 := z.EncBasicHandle().StructToArray + var yyq1522 [5]bool + _, _, _ = yysep1522, yyq1522, yy2arr1522 + const yyr1522 bool = false + yyq1522[0] = x.SELinuxOptions != nil + yyq1522[1] = x.RunAsUser != nil + yyq1522[2] = x.RunAsNonRoot != nil + yyq1522[3] = len(x.SupplementalGroups) != 0 + yyq1522[4] = x.FSGroup != nil + var yynn1522 int + if yyr1522 || yy2arr1522 { r.EncodeArrayStart(5) } else { - yynn1503 = 0 - for _, b := range yyq1503 { + yynn1522 = 0 + for _, b := range yyq1522 { if b { - yynn1503++ + yynn1522++ } } - r.EncodeMapStart(yynn1503) - yynn1503 = 0 + r.EncodeMapStart(yynn1522) + yynn1522 = 0 } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1503[0] { + if yyq1522[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -20243,7 +20516,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1503[0] { + if yyq1522[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20254,84 +20527,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1503[1] { + if yyq1522[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1506 := *x.RunAsUser - yym1507 := z.EncBinary() - _ = yym1507 + yy1525 := *x.RunAsUser + yym1526 := z.EncBinary() + _ = yym1526 if false { } else { - r.EncodeInt(int64(yy1506)) + r.EncodeInt(int64(yy1525)) } } } else { r.EncodeNil() } } else { - if yyq1503[1] { + if yyq1522[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1508 := *x.RunAsUser - yym1509 := z.EncBinary() - _ = yym1509 + yy1527 := *x.RunAsUser + yym1528 := z.EncBinary() + _ = yym1528 if false { } else { - r.EncodeInt(int64(yy1508)) + r.EncodeInt(int64(yy1527)) } } } } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1503[2] { + if yyq1522[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1511 := *x.RunAsNonRoot - yym1512 := z.EncBinary() - _ = yym1512 + yy1530 := *x.RunAsNonRoot + yym1531 := z.EncBinary() + _ = yym1531 if false { } else { - r.EncodeBool(bool(yy1511)) + r.EncodeBool(bool(yy1530)) } } } else { r.EncodeNil() } } else { - if yyq1503[2] { + if yyq1522[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1513 := *x.RunAsNonRoot - yym1514 := z.EncBinary() - _ = yym1514 + yy1532 := *x.RunAsNonRoot + yym1533 := z.EncBinary() + _ = yym1533 if false { } else { - r.EncodeBool(bool(yy1513)) + r.EncodeBool(bool(yy1532)) } } } } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1503[3] { + if yyq1522[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1516 := z.EncBinary() - _ = yym1516 + yym1535 := z.EncBinary() + _ = yym1535 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20341,15 +20614,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1503[3] { + if yyq1522[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1517 := z.EncBinary() - _ = yym1517 + yym1536 := z.EncBinary() + _ = yym1536 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20357,42 +20630,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1503[4] { + if yyq1522[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1519 := *x.FSGroup - yym1520 := z.EncBinary() - _ = yym1520 + yy1538 := *x.FSGroup + yym1539 := z.EncBinary() + _ = yym1539 if false { } else { - r.EncodeInt(int64(yy1519)) + r.EncodeInt(int64(yy1538)) } } } else { r.EncodeNil() } } else { - if yyq1503[4] { + if yyq1522[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1521 := *x.FSGroup - yym1522 := z.EncBinary() - _ = yym1522 + yy1540 := *x.FSGroup + yym1541 := z.EncBinary() + _ = yym1541 if false { } else { - r.EncodeInt(int64(yy1521)) + r.EncodeInt(int64(yy1540)) } } } } - if yyr1503 || yy2arr1503 { + if yyr1522 || yy2arr1522 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20405,25 +20678,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1523 := z.DecBinary() - _ = yym1523 + yym1542 := z.DecBinary() + _ = yym1542 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1524 := r.ContainerType() - if yyct1524 == codecSelferValueTypeMap1234 { - yyl1524 := r.ReadMapStart() - if yyl1524 == 0 { + yyct1543 := r.ContainerType() + if yyct1543 == codecSelferValueTypeMap1234 { + yyl1543 := r.ReadMapStart() + if yyl1543 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1524, d) + x.codecDecodeSelfFromMap(yyl1543, d) } - } else if yyct1524 == codecSelferValueTypeArray1234 { - yyl1524 := r.ReadArrayStart() - if yyl1524 == 0 { + } else if yyct1543 == codecSelferValueTypeArray1234 { + yyl1543 := r.ReadArrayStart() + if yyl1543 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1524, d) + x.codecDecodeSelfFromArray(yyl1543, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20435,12 +20708,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1525Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1525Slc - var yyhl1525 bool = l >= 0 - for yyj1525 := 0; ; yyj1525++ { - if yyhl1525 { - if yyj1525 >= l { + var yys1544Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1544Slc + var yyhl1544 bool = l >= 0 + for yyj1544 := 0; ; yyj1544++ { + if yyhl1544 { + if yyj1544 >= l { break } } else { @@ -20449,10 +20722,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1525Slc = r.DecodeBytes(yys1525Slc, true, true) - yys1525 := string(yys1525Slc) + yys1544Slc = r.DecodeBytes(yys1544Slc, true, true) + yys1544 := string(yys1544Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1525 { + switch yys1544 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -20473,8 +20746,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1528 := z.DecBinary() - _ = yym1528 + yym1547 := z.DecBinary() + _ = yym1547 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -20489,8 +20762,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1530 := z.DecBinary() - _ = yym1530 + yym1549 := z.DecBinary() + _ = yym1549 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -20500,12 +20773,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1531 := &x.SupplementalGroups - yym1532 := z.DecBinary() - _ = yym1532 + yyv1550 := &x.SupplementalGroups + yym1551 := z.DecBinary() + _ = yym1551 if false { } else { - z.F.DecSliceInt64X(yyv1531, false, d) + z.F.DecSliceInt64X(yyv1550, false, d) } } case "fsGroup": @@ -20517,17 +20790,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1534 := z.DecBinary() - _ = yym1534 + yym1553 := z.DecBinary() + _ = yym1553 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1525) - } // end switch yys1525 - } // end for yyj1525 + z.DecStructFieldNotFound(-1, yys1544) + } // end switch yys1544 + } // end for yyj1544 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20535,16 +20808,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1535 int - var yyb1535 bool - var yyhl1535 bool = l >= 0 - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + var yyj1554 int + var yyb1554 bool + var yyhl1554 bool = l >= 0 + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20559,13 +20832,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20578,20 +20851,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1538 := z.DecBinary() - _ = yym1538 + yym1557 := z.DecBinary() + _ = yym1557 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20604,20 +20877,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1540 := z.DecBinary() - _ = yym1540 + yym1559 := z.DecBinary() + _ = yym1559 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20625,21 +20898,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1541 := &x.SupplementalGroups - yym1542 := z.DecBinary() - _ = yym1542 + yyv1560 := &x.SupplementalGroups + yym1561 := z.DecBinary() + _ = yym1561 if false { } else { - z.F.DecSliceInt64X(yyv1541, false, d) + z.F.DecSliceInt64X(yyv1560, false, d) } } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20652,25 +20925,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1544 := z.DecBinary() - _ = yym1544 + yym1563 := z.DecBinary() + _ = yym1563 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1554++ + if yyhl1554 { + yyb1554 = yyj1554 > l } else { - yyb1535 = r.CheckBreak() + yyb1554 = r.CheckBreak() } - if yyb1535 { + if yyb1554 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1535-1, "") + z.DecStructFieldNotFound(yyj1554-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20682,262 +20955,262 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1545 := z.EncBinary() - _ = yym1545 + yym1564 := z.EncBinary() + _ = yym1564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1546 := !z.EncBinary() - yy2arr1546 := z.EncBasicHandle().StructToArray - var yyq1546 [8]bool - _, _, _ = yysep1546, yyq1546, yy2arr1546 - const yyr1546 bool = false - yyq1546[0] = x.Phase != "" - yyq1546[1] = len(x.Conditions) != 0 - yyq1546[2] = x.Message != "" - yyq1546[3] = x.Reason != "" - yyq1546[4] = x.HostIP != "" - yyq1546[5] = x.PodIP != "" - yyq1546[6] = x.StartTime != nil - yyq1546[7] = len(x.ContainerStatuses) != 0 - var yynn1546 int - if yyr1546 || yy2arr1546 { + yysep1565 := !z.EncBinary() + yy2arr1565 := z.EncBasicHandle().StructToArray + var yyq1565 [8]bool + _, _, _ = yysep1565, yyq1565, yy2arr1565 + const yyr1565 bool = false + yyq1565[0] = x.Phase != "" + yyq1565[1] = len(x.Conditions) != 0 + yyq1565[2] = x.Message != "" + yyq1565[3] = x.Reason != "" + yyq1565[4] = x.HostIP != "" + yyq1565[5] = x.PodIP != "" + yyq1565[6] = x.StartTime != nil + yyq1565[7] = len(x.ContainerStatuses) != 0 + var yynn1565 int + if yyr1565 || yy2arr1565 { r.EncodeArrayStart(8) } else { - yynn1546 = 0 - for _, b := range yyq1546 { + yynn1565 = 0 + for _, b := range yyq1565 { if b { - yynn1546++ + yynn1565++ } } - r.EncodeMapStart(yynn1546) - yynn1546 = 0 + r.EncodeMapStart(yynn1565) + yynn1565 = 0 } - if yyr1546 || yy2arr1546 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[0] { + if yyq1565[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1546[0] { + if yyq1565[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1546 || yy2arr1546 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[1] { + if yyq1565[1] { if x.Conditions == nil { r.EncodeNil() - } else { - yym1549 := z.EncBinary() - _ = yym1549 - if false { - } else { - h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1546[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym1550 := z.EncBinary() - _ = yym1550 - if false { - } else { - h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) - } - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[2] { - yym1552 := z.EncBinary() - _ = yym1552 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1546[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1553 := z.EncBinary() - _ = yym1553 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[3] { - yym1555 := z.EncBinary() - _ = yym1555 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1546[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1556 := z.EncBinary() - _ = yym1556 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[4] { - yym1558 := z.EncBinary() - _ = yym1558 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1546[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostIP")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1559 := z.EncBinary() - _ = yym1559 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[5] { - yym1561 := z.EncBinary() - _ = yym1561 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq1546[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podIP")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1562 := z.EncBinary() - _ = yym1562 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[6] { - if x.StartTime == nil { - r.EncodeNil() - } else { - yym1564 := z.EncBinary() - _ = yym1564 - if false { - } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1564 { - z.EncBinaryMarshal(x.StartTime) - } else if !yym1564 && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartTime) - } else { - z.EncFallback(x.StartTime) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1546[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startTime")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.StartTime == nil { - r.EncodeNil() - } else { - yym1565 := z.EncBinary() - _ = yym1565 - if false { - } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1565 { - z.EncBinaryMarshal(x.StartTime) - } else if !yym1565 && z.IsJSONHandle() { - z.EncJSONMarshal(x.StartTime) - } else { - z.EncFallback(x.StartTime) - } - } - } - } - if yyr1546 || yy2arr1546 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1546[7] { - if x.ContainerStatuses == nil { - r.EncodeNil() - } else { - yym1567 := z.EncBinary() - _ = yym1567 - if false { - } else { - h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq1546[7] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ContainerStatuses == nil { - r.EncodeNil() } else { yym1568 := z.EncBinary() _ = yym1568 if false { + } else { + h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1565[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Conditions == nil { + r.EncodeNil() + } else { + yym1569 := z.EncBinary() + _ = yym1569 + if false { + } else { + h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) + } + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[2] { + yym1571 := z.EncBinary() + _ = yym1571 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1565[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1572 := z.EncBinary() + _ = yym1572 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[3] { + yym1574 := z.EncBinary() + _ = yym1574 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1565[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reason")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1575 := z.EncBinary() + _ = yym1575 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[4] { + yym1577 := z.EncBinary() + _ = yym1577 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1565[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostIP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1578 := z.EncBinary() + _ = yym1578 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[5] { + yym1580 := z.EncBinary() + _ = yym1580 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq1565[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("podIP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1581 := z.EncBinary() + _ = yym1581 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[6] { + if x.StartTime == nil { + r.EncodeNil() + } else { + yym1583 := z.EncBinary() + _ = yym1583 + if false { + } else if z.HasExtensions() && z.EncExt(x.StartTime) { + } else if yym1583 { + z.EncBinaryMarshal(x.StartTime) + } else if !yym1583 && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartTime) + } else { + z.EncFallback(x.StartTime) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1565[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("startTime")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.StartTime == nil { + r.EncodeNil() + } else { + yym1584 := z.EncBinary() + _ = yym1584 + if false { + } else if z.HasExtensions() && z.EncExt(x.StartTime) { + } else if yym1584 { + z.EncBinaryMarshal(x.StartTime) + } else if !yym1584 && z.IsJSONHandle() { + z.EncJSONMarshal(x.StartTime) + } else { + z.EncFallback(x.StartTime) + } + } + } + } + if yyr1565 || yy2arr1565 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1565[7] { + if x.ContainerStatuses == nil { + r.EncodeNil() + } else { + yym1586 := z.EncBinary() + _ = yym1586 + if false { + } else { + h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq1565[7] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.ContainerStatuses == nil { + r.EncodeNil() + } else { + yym1587 := z.EncBinary() + _ = yym1587 + if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) } } } } - if yyr1546 || yy2arr1546 { + if yyr1565 || yy2arr1565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20950,25 +21223,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1569 := z.DecBinary() - _ = yym1569 + yym1588 := z.DecBinary() + _ = yym1588 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1570 := r.ContainerType() - if yyct1570 == codecSelferValueTypeMap1234 { - yyl1570 := r.ReadMapStart() - if yyl1570 == 0 { + yyct1589 := r.ContainerType() + if yyct1589 == codecSelferValueTypeMap1234 { + yyl1589 := r.ReadMapStart() + if yyl1589 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1570, d) + x.codecDecodeSelfFromMap(yyl1589, d) } - } else if yyct1570 == codecSelferValueTypeArray1234 { - yyl1570 := r.ReadArrayStart() - if yyl1570 == 0 { + } else if yyct1589 == codecSelferValueTypeArray1234 { + yyl1589 := r.ReadArrayStart() + if yyl1589 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1570, d) + x.codecDecodeSelfFromArray(yyl1589, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20980,12 +21253,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1571Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1571Slc - var yyhl1571 bool = l >= 0 - for yyj1571 := 0; ; yyj1571++ { - if yyhl1571 { - if yyj1571 >= l { + var yys1590Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1590Slc + var yyhl1590 bool = l >= 0 + for yyj1590 := 0; ; yyj1590++ { + if yyhl1590 { + if yyj1590 >= l { break } } else { @@ -20994,10 +21267,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1571Slc = r.DecodeBytes(yys1571Slc, true, true) - yys1571 := string(yys1571Slc) + yys1590Slc = r.DecodeBytes(yys1590Slc, true, true) + yys1590 := string(yys1590Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1571 { + switch yys1590 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -21008,12 +21281,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1573 := &x.Conditions - yym1574 := z.DecBinary() - _ = yym1574 + yyv1592 := &x.Conditions + yym1593 := z.DecBinary() + _ = yym1593 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1573), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1592), d) } } case "message": @@ -21049,13 +21322,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1580 := z.DecBinary() - _ = yym1580 + yym1599 := z.DecBinary() + _ = yym1599 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1580 { + } else if yym1599 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1580 && z.IsJSONHandle() { + } else if !yym1599 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -21065,18 +21338,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1581 := &x.ContainerStatuses - yym1582 := z.DecBinary() - _ = yym1582 + yyv1600 := &x.ContainerStatuses + yym1601 := z.DecBinary() + _ = yym1601 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1581), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1600), d) } } default: - z.DecStructFieldNotFound(-1, yys1571) - } // end switch yys1571 - } // end for yyj1571 + z.DecStructFieldNotFound(-1, yys1590) + } // end switch yys1590 + } // end for yyj1590 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21084,16 +21357,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1583 int - var yyb1583 bool - var yyhl1583 bool = l >= 0 - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + var yyj1602 int + var yyb1602 bool + var yyhl1602 bool = l >= 0 + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21103,13 +21376,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21117,21 +21390,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1585 := &x.Conditions - yym1586 := z.DecBinary() - _ = yym1586 + yyv1604 := &x.Conditions + yym1605 := z.DecBinary() + _ = yym1605 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1585), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1604), d) } } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21141,13 +21414,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21157,13 +21430,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21173,13 +21446,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21189,13 +21462,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21208,25 +21481,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1592 := z.DecBinary() - _ = yym1592 + yym1611 := z.DecBinary() + _ = yym1611 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1592 { + } else if yym1611 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1592 && z.IsJSONHandle() { + } else if !yym1611 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21234,26 +21507,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1593 := &x.ContainerStatuses - yym1594 := z.DecBinary() - _ = yym1594 + yyv1612 := &x.ContainerStatuses + yym1613 := z.DecBinary() + _ = yym1613 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1593), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1612), d) } } for { - yyj1583++ - if yyhl1583 { - yyb1583 = yyj1583 > l + yyj1602++ + if yyhl1602 { + yyb1602 = yyj1602 > l } else { - yyb1583 = r.CheckBreak() + yyb1602 = r.CheckBreak() } - if yyb1583 { + if yyb1602 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1583-1, "") + z.DecStructFieldNotFound(yyj1602-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21265,38 +21538,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1595 := z.EncBinary() - _ = yym1595 + yym1614 := z.EncBinary() + _ = yym1614 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1596 := !z.EncBinary() - yy2arr1596 := z.EncBasicHandle().StructToArray - var yyq1596 [4]bool - _, _, _ = yysep1596, yyq1596, yy2arr1596 - const yyr1596 bool = false - yyq1596[0] = x.Kind != "" - yyq1596[1] = x.APIVersion != "" - yyq1596[2] = true - yyq1596[3] = true - var yynn1596 int - if yyr1596 || yy2arr1596 { + yysep1615 := !z.EncBinary() + yy2arr1615 := z.EncBasicHandle().StructToArray + var yyq1615 [4]bool + _, _, _ = yysep1615, yyq1615, yy2arr1615 + const yyr1615 bool = false + yyq1615[0] = x.Kind != "" + yyq1615[1] = x.APIVersion != "" + yyq1615[2] = true + yyq1615[3] = true + var yynn1615 int + if yyr1615 || yy2arr1615 { r.EncodeArrayStart(4) } else { - yynn1596 = 0 - for _, b := range yyq1596 { + yynn1615 = 0 + for _, b := range yyq1615 { if b { - yynn1596++ + yynn1615++ } } - r.EncodeMapStart(yynn1596) - yynn1596 = 0 + r.EncodeMapStart(yynn1615) + yynn1615 = 0 } - if yyr1596 || yy2arr1596 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1596[0] { - yym1598 := z.EncBinary() - _ = yym1598 + if yyq1615[0] { + yym1617 := z.EncBinary() + _ = yym1617 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21305,23 +21578,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1596[0] { + if yyq1615[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1599 := z.EncBinary() - _ = yym1599 + yym1618 := z.EncBinary() + _ = yym1618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1596 || yy2arr1596 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1596[1] { - yym1601 := z.EncBinary() - _ = yym1601 + if yyq1615[1] { + yym1620 := z.EncBinary() + _ = yym1620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21330,53 +21603,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1596[1] { + if yyq1615[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1602 := z.EncBinary() - _ = yym1602 + yym1621 := z.EncBinary() + _ = yym1621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1596 || yy2arr1596 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1596[2] { - yy1604 := &x.ObjectMeta - yy1604.CodecEncodeSelf(e) + if yyq1615[2] { + yy1623 := &x.ObjectMeta + yy1623.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1596[2] { + if yyq1615[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1605 := &x.ObjectMeta - yy1605.CodecEncodeSelf(e) + yy1624 := &x.ObjectMeta + yy1624.CodecEncodeSelf(e) } } - if yyr1596 || yy2arr1596 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1596[3] { - yy1607 := &x.Status - yy1607.CodecEncodeSelf(e) + if yyq1615[3] { + yy1626 := &x.Status + yy1626.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1596[3] { + if yyq1615[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1608 := &x.Status - yy1608.CodecEncodeSelf(e) + yy1627 := &x.Status + yy1627.CodecEncodeSelf(e) } } - if yyr1596 || yy2arr1596 { + if yyr1615 || yy2arr1615 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21389,25 +21662,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1609 := z.DecBinary() - _ = yym1609 + yym1628 := z.DecBinary() + _ = yym1628 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1610 := r.ContainerType() - if yyct1610 == codecSelferValueTypeMap1234 { - yyl1610 := r.ReadMapStart() - if yyl1610 == 0 { + yyct1629 := r.ContainerType() + if yyct1629 == codecSelferValueTypeMap1234 { + yyl1629 := r.ReadMapStart() + if yyl1629 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1610, d) + x.codecDecodeSelfFromMap(yyl1629, d) } - } else if yyct1610 == codecSelferValueTypeArray1234 { - yyl1610 := r.ReadArrayStart() - if yyl1610 == 0 { + } else if yyct1629 == codecSelferValueTypeArray1234 { + yyl1629 := r.ReadArrayStart() + if yyl1629 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1610, d) + x.codecDecodeSelfFromArray(yyl1629, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21419,12 +21692,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1611Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1611Slc - var yyhl1611 bool = l >= 0 - for yyj1611 := 0; ; yyj1611++ { - if yyhl1611 { - if yyj1611 >= l { + var yys1630Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1630Slc + var yyhl1630 bool = l >= 0 + for yyj1630 := 0; ; yyj1630++ { + if yyhl1630 { + if yyj1630 >= l { break } } else { @@ -21433,10 +21706,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1611Slc = r.DecodeBytes(yys1611Slc, true, true) - yys1611 := string(yys1611Slc) + yys1630Slc = r.DecodeBytes(yys1630Slc, true, true) + yys1630 := string(yys1630Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1611 { + switch yys1630 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21453,20 +21726,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1614 := &x.ObjectMeta - yyv1614.CodecDecodeSelf(d) + yyv1633 := &x.ObjectMeta + yyv1633.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1615 := &x.Status - yyv1615.CodecDecodeSelf(d) + yyv1634 := &x.Status + yyv1634.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1611) - } // end switch yys1611 - } // end for yyj1611 + z.DecStructFieldNotFound(-1, yys1630) + } // end switch yys1630 + } // end for yyj1630 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21474,16 +21747,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1616 int - var yyb1616 bool - var yyhl1616 bool = l >= 0 - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + var yyj1635 int + var yyb1635 bool + var yyhl1635 bool = l >= 0 + yyj1635++ + if yyhl1635 { + yyb1635 = yyj1635 > l } else { - yyb1616 = r.CheckBreak() + yyb1635 = r.CheckBreak() } - if yyb1616 { + if yyb1635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21493,13 +21766,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1635++ + if yyhl1635 { + yyb1635 = yyj1635 > l } else { - yyb1616 = r.CheckBreak() + yyb1635 = r.CheckBreak() } - if yyb1616 { + if yyb1635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21509,13 +21782,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1635++ + if yyhl1635 { + yyb1635 = yyj1635 > l } else { - yyb1616 = r.CheckBreak() + yyb1635 = r.CheckBreak() } - if yyb1616 { + if yyb1635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21523,16 +21796,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1619 := &x.ObjectMeta - yyv1619.CodecDecodeSelf(d) + yyv1638 := &x.ObjectMeta + yyv1638.CodecDecodeSelf(d) } - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1635++ + if yyhl1635 { + yyb1635 = yyj1635 > l } else { - yyb1616 = r.CheckBreak() + yyb1635 = r.CheckBreak() } - if yyb1616 { + if yyb1635 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21540,21 +21813,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1620 := &x.Status - yyv1620.CodecDecodeSelf(d) + yyv1639 := &x.Status + yyv1639.CodecDecodeSelf(d) } for { - yyj1616++ - if yyhl1616 { - yyb1616 = yyj1616 > l + yyj1635++ + if yyhl1635 { + yyb1635 = yyj1635 > l } else { - yyb1616 = r.CheckBreak() + yyb1635 = r.CheckBreak() } - if yyb1616 { + if yyb1635 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1616-1, "") + z.DecStructFieldNotFound(yyj1635-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21566,39 +21839,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1621 := z.EncBinary() - _ = yym1621 + yym1640 := z.EncBinary() + _ = yym1640 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1622 := !z.EncBinary() - yy2arr1622 := z.EncBasicHandle().StructToArray - var yyq1622 [5]bool - _, _, _ = yysep1622, yyq1622, yy2arr1622 - const yyr1622 bool = false - yyq1622[0] = x.Kind != "" - yyq1622[1] = x.APIVersion != "" - yyq1622[2] = true - yyq1622[3] = true - yyq1622[4] = true - var yynn1622 int - if yyr1622 || yy2arr1622 { + yysep1641 := !z.EncBinary() + yy2arr1641 := z.EncBasicHandle().StructToArray + var yyq1641 [5]bool + _, _, _ = yysep1641, yyq1641, yy2arr1641 + const yyr1641 bool = false + yyq1641[0] = x.Kind != "" + yyq1641[1] = x.APIVersion != "" + yyq1641[2] = true + yyq1641[3] = true + yyq1641[4] = true + var yynn1641 int + if yyr1641 || yy2arr1641 { r.EncodeArrayStart(5) } else { - yynn1622 = 0 - for _, b := range yyq1622 { + yynn1641 = 0 + for _, b := range yyq1641 { if b { - yynn1622++ + yynn1641++ } } - r.EncodeMapStart(yynn1622) - yynn1622 = 0 + r.EncodeMapStart(yynn1641) + yynn1641 = 0 } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1622[0] { - yym1624 := z.EncBinary() - _ = yym1624 + if yyq1641[0] { + yym1643 := z.EncBinary() + _ = yym1643 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21607,23 +21880,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1622[0] { + if yyq1641[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1625 := z.EncBinary() - _ = yym1625 + yym1644 := z.EncBinary() + _ = yym1644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1622[1] { - yym1627 := z.EncBinary() - _ = yym1627 + if yyq1641[1] { + yym1646 := z.EncBinary() + _ = yym1646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21632,70 +21905,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1622[1] { + if yyq1641[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1628 := z.EncBinary() - _ = yym1628 + yym1647 := z.EncBinary() + _ = yym1647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1622[2] { - yy1630 := &x.ObjectMeta - yy1630.CodecEncodeSelf(e) + if yyq1641[2] { + yy1649 := &x.ObjectMeta + yy1649.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1622[2] { + if yyq1641[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1631 := &x.ObjectMeta - yy1631.CodecEncodeSelf(e) + yy1650 := &x.ObjectMeta + yy1650.CodecEncodeSelf(e) } } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1622[3] { - yy1633 := &x.Spec - yy1633.CodecEncodeSelf(e) + if yyq1641[3] { + yy1652 := &x.Spec + yy1652.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1622[3] { + if yyq1641[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1634 := &x.Spec - yy1634.CodecEncodeSelf(e) + yy1653 := &x.Spec + yy1653.CodecEncodeSelf(e) } } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1622[4] { - yy1636 := &x.Status - yy1636.CodecEncodeSelf(e) + if yyq1641[4] { + yy1655 := &x.Status + yy1655.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1622[4] { + if yyq1641[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1637 := &x.Status - yy1637.CodecEncodeSelf(e) + yy1656 := &x.Status + yy1656.CodecEncodeSelf(e) } } - if yyr1622 || yy2arr1622 { + if yyr1641 || yy2arr1641 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21708,25 +21981,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1638 := z.DecBinary() - _ = yym1638 + yym1657 := z.DecBinary() + _ = yym1657 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1639 := r.ContainerType() - if yyct1639 == codecSelferValueTypeMap1234 { - yyl1639 := r.ReadMapStart() - if yyl1639 == 0 { + yyct1658 := r.ContainerType() + if yyct1658 == codecSelferValueTypeMap1234 { + yyl1658 := r.ReadMapStart() + if yyl1658 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1639, d) + x.codecDecodeSelfFromMap(yyl1658, d) } - } else if yyct1639 == codecSelferValueTypeArray1234 { - yyl1639 := r.ReadArrayStart() - if yyl1639 == 0 { + } else if yyct1658 == codecSelferValueTypeArray1234 { + yyl1658 := r.ReadArrayStart() + if yyl1658 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1639, d) + x.codecDecodeSelfFromArray(yyl1658, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21738,12 +22011,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1640Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1640Slc - var yyhl1640 bool = l >= 0 - for yyj1640 := 0; ; yyj1640++ { - if yyhl1640 { - if yyj1640 >= l { + var yys1659Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1659Slc + var yyhl1659 bool = l >= 0 + for yyj1659 := 0; ; yyj1659++ { + if yyhl1659 { + if yyj1659 >= l { break } } else { @@ -21752,10 +22025,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1640Slc = r.DecodeBytes(yys1640Slc, true, true) - yys1640 := string(yys1640Slc) + yys1659Slc = r.DecodeBytes(yys1659Slc, true, true) + yys1659 := string(yys1659Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1640 { + switch yys1659 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21772,27 +22045,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1643 := &x.ObjectMeta - yyv1643.CodecDecodeSelf(d) + yyv1662 := &x.ObjectMeta + yyv1662.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1644 := &x.Spec - yyv1644.CodecDecodeSelf(d) + yyv1663 := &x.Spec + yyv1663.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1645 := &x.Status - yyv1645.CodecDecodeSelf(d) + yyv1664 := &x.Status + yyv1664.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1640) - } // end switch yys1640 - } // end for yyj1640 + z.DecStructFieldNotFound(-1, yys1659) + } // end switch yys1659 + } // end for yyj1659 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21800,16 +22073,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1646 int - var yyb1646 bool - var yyhl1646 bool = l >= 0 - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + var yyj1665 int + var yyb1665 bool + var yyhl1665 bool = l >= 0 + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21819,13 +22092,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21835,13 +22108,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21849,16 +22122,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1649 := &x.ObjectMeta - yyv1649.CodecDecodeSelf(d) + yyv1668 := &x.ObjectMeta + yyv1668.CodecDecodeSelf(d) } - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21866,16 +22139,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1650 := &x.Spec - yyv1650.CodecDecodeSelf(d) + yyv1669 := &x.Spec + yyv1669.CodecDecodeSelf(d) } - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21883,21 +22156,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1651 := &x.Status - yyv1651.CodecDecodeSelf(d) + yyv1670 := &x.Status + yyv1670.CodecDecodeSelf(d) } for { - yyj1646++ - if yyhl1646 { - yyb1646 = yyj1646 > l + yyj1665++ + if yyhl1665 { + yyb1665 = yyj1665 > l } else { - yyb1646 = r.CheckBreak() + yyb1665 = r.CheckBreak() } - if yyb1646 { + if yyb1665 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1646-1, "") + z.DecStructFieldNotFound(yyj1665-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21909,37 +22182,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1652 := z.EncBinary() - _ = yym1652 + yym1671 := z.EncBinary() + _ = yym1671 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1653 := !z.EncBinary() - yy2arr1653 := z.EncBasicHandle().StructToArray - var yyq1653 [4]bool - _, _, _ = yysep1653, yyq1653, yy2arr1653 - const yyr1653 bool = false - yyq1653[0] = x.Kind != "" - yyq1653[1] = x.APIVersion != "" - yyq1653[2] = true - var yynn1653 int - if yyr1653 || yy2arr1653 { + yysep1672 := !z.EncBinary() + yy2arr1672 := z.EncBasicHandle().StructToArray + var yyq1672 [4]bool + _, _, _ = yysep1672, yyq1672, yy2arr1672 + const yyr1672 bool = false + yyq1672[0] = x.Kind != "" + yyq1672[1] = x.APIVersion != "" + yyq1672[2] = true + var yynn1672 int + if yyr1672 || yy2arr1672 { r.EncodeArrayStart(4) } else { - yynn1653 = 1 - for _, b := range yyq1653 { + yynn1672 = 1 + for _, b := range yyq1672 { if b { - yynn1653++ + yynn1672++ } } - r.EncodeMapStart(yynn1653) - yynn1653 = 0 + r.EncodeMapStart(yynn1672) + yynn1672 = 0 } - if yyr1653 || yy2arr1653 { + if yyr1672 || yy2arr1672 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[0] { - yym1655 := z.EncBinary() - _ = yym1655 + if yyq1672[0] { + yym1674 := z.EncBinary() + _ = yym1674 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21948,23 +22221,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1653[0] { + if yyq1672[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1656 := z.EncBinary() - _ = yym1656 + yym1675 := z.EncBinary() + _ = yym1675 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1653 || yy2arr1653 { + if yyr1672 || yy2arr1672 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[1] { - yym1658 := z.EncBinary() - _ = yym1658 + if yyq1672[1] { + yym1677 := z.EncBinary() + _ = yym1677 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21973,54 +22246,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1653[1] { + if yyq1672[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1659 := z.EncBinary() - _ = yym1659 + yym1678 := z.EncBinary() + _ = yym1678 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1653 || yy2arr1653 { + if yyr1672 || yy2arr1672 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[2] { - yy1661 := &x.ListMeta - yym1662 := z.EncBinary() - _ = yym1662 + if yyq1672[2] { + yy1680 := &x.ListMeta + yym1681 := z.EncBinary() + _ = yym1681 if false { - } else if z.HasExtensions() && z.EncExt(yy1661) { + } else if z.HasExtensions() && z.EncExt(yy1680) { } else { - z.EncFallback(yy1661) + z.EncFallback(yy1680) } } else { r.EncodeNil() } } else { - if yyq1653[2] { + if yyq1672[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1663 := &x.ListMeta - yym1664 := z.EncBinary() - _ = yym1664 + yy1682 := &x.ListMeta + yym1683 := z.EncBinary() + _ = yym1683 if false { - } else if z.HasExtensions() && z.EncExt(yy1663) { + } else if z.HasExtensions() && z.EncExt(yy1682) { } else { - z.EncFallback(yy1663) + z.EncFallback(yy1682) } } } - if yyr1653 || yy2arr1653 { + if yyr1672 || yy2arr1672 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1666 := z.EncBinary() - _ = yym1666 + yym1685 := z.EncBinary() + _ = yym1685 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -22033,15 +22306,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1667 := z.EncBinary() - _ = yym1667 + yym1686 := z.EncBinary() + _ = yym1686 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1653 || yy2arr1653 { + if yyr1672 || yy2arr1672 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22054,25 +22327,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1668 := z.DecBinary() - _ = yym1668 + yym1687 := z.DecBinary() + _ = yym1687 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1669 := r.ContainerType() - if yyct1669 == codecSelferValueTypeMap1234 { - yyl1669 := r.ReadMapStart() - if yyl1669 == 0 { + yyct1688 := r.ContainerType() + if yyct1688 == codecSelferValueTypeMap1234 { + yyl1688 := r.ReadMapStart() + if yyl1688 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1669, d) + x.codecDecodeSelfFromMap(yyl1688, d) } - } else if yyct1669 == codecSelferValueTypeArray1234 { - yyl1669 := r.ReadArrayStart() - if yyl1669 == 0 { + } else if yyct1688 == codecSelferValueTypeArray1234 { + yyl1688 := r.ReadArrayStart() + if yyl1688 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1669, d) + x.codecDecodeSelfFromArray(yyl1688, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22084,12 +22357,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1670Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1670Slc - var yyhl1670 bool = l >= 0 - for yyj1670 := 0; ; yyj1670++ { - if yyhl1670 { - if yyj1670 >= l { + var yys1689Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1689Slc + var yyhl1689 bool = l >= 0 + for yyj1689 := 0; ; yyj1689++ { + if yyhl1689 { + if yyj1689 >= l { break } } else { @@ -22098,10 +22371,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1670Slc = r.DecodeBytes(yys1670Slc, true, true) - yys1670 := string(yys1670Slc) + yys1689Slc = r.DecodeBytes(yys1689Slc, true, true) + yys1689 := string(yys1689Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1670 { + switch yys1689 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22118,31 +22391,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1673 := &x.ListMeta - yym1674 := z.DecBinary() - _ = yym1674 + yyv1692 := &x.ListMeta + yym1693 := z.DecBinary() + _ = yym1693 if false { - } else if z.HasExtensions() && z.DecExt(yyv1673) { + } else if z.HasExtensions() && z.DecExt(yyv1692) { } else { - z.DecFallback(yyv1673, false) + z.DecFallback(yyv1692, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1675 := &x.Items - yym1676 := z.DecBinary() - _ = yym1676 + yyv1694 := &x.Items + yym1695 := z.DecBinary() + _ = yym1695 if false { } else { - h.decSlicePod((*[]Pod)(yyv1675), d) + h.decSlicePod((*[]Pod)(yyv1694), d) } } default: - z.DecStructFieldNotFound(-1, yys1670) - } // end switch yys1670 - } // end for yyj1670 + z.DecStructFieldNotFound(-1, yys1689) + } // end switch yys1689 + } // end for yyj1689 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22150,16 +22423,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1677 int - var yyb1677 bool - var yyhl1677 bool = l >= 0 - yyj1677++ - if yyhl1677 { - yyb1677 = yyj1677 > l + var yyj1696 int + var yyb1696 bool + var yyhl1696 bool = l >= 0 + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1677 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1677 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22169,13 +22442,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1677++ - if yyhl1677 { - yyb1677 = yyj1677 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1677 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1677 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22185,13 +22458,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1677++ - if yyhl1677 { - yyb1677 = yyj1677 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1677 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1677 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22199,22 +22472,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1680 := &x.ListMeta - yym1681 := z.DecBinary() - _ = yym1681 + yyv1699 := &x.ListMeta + yym1700 := z.DecBinary() + _ = yym1700 if false { - } else if z.HasExtensions() && z.DecExt(yyv1680) { + } else if z.HasExtensions() && z.DecExt(yyv1699) { } else { - z.DecFallback(yyv1680, false) + z.DecFallback(yyv1699, false) } } - yyj1677++ - if yyhl1677 { - yyb1677 = yyj1677 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1677 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1677 { + if yyb1696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22222,26 +22495,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1682 := &x.Items - yym1683 := z.DecBinary() - _ = yym1683 + yyv1701 := &x.Items + yym1702 := z.DecBinary() + _ = yym1702 if false { } else { - h.decSlicePod((*[]Pod)(yyv1682), d) + h.decSlicePod((*[]Pod)(yyv1701), d) } } for { - yyj1677++ - if yyhl1677 { - yyb1677 = yyj1677 > l + yyj1696++ + if yyhl1696 { + yyb1696 = yyj1696 > l } else { - yyb1677 = r.CheckBreak() + yyb1696 = r.CheckBreak() } - if yyb1677 { + if yyb1696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1677-1, "") + z.DecStructFieldNotFound(yyj1696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22253,66 +22526,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1684 := z.EncBinary() - _ = yym1684 + yym1703 := z.EncBinary() + _ = yym1703 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1685 := !z.EncBinary() - yy2arr1685 := z.EncBasicHandle().StructToArray - var yyq1685 [2]bool - _, _, _ = yysep1685, yyq1685, yy2arr1685 - const yyr1685 bool = false - yyq1685[0] = true - yyq1685[1] = true - var yynn1685 int - if yyr1685 || yy2arr1685 { + yysep1704 := !z.EncBinary() + yy2arr1704 := z.EncBasicHandle().StructToArray + var yyq1704 [2]bool + _, _, _ = yysep1704, yyq1704, yy2arr1704 + const yyr1704 bool = false + yyq1704[0] = true + yyq1704[1] = true + var yynn1704 int + if yyr1704 || yy2arr1704 { r.EncodeArrayStart(2) } else { - yynn1685 = 0 - for _, b := range yyq1685 { + yynn1704 = 0 + for _, b := range yyq1704 { if b { - yynn1685++ + yynn1704++ } } - r.EncodeMapStart(yynn1685) - yynn1685 = 0 + r.EncodeMapStart(yynn1704) + yynn1704 = 0 } - if yyr1685 || yy2arr1685 { + if yyr1704 || yy2arr1704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1685[0] { - yy1687 := &x.ObjectMeta - yy1687.CodecEncodeSelf(e) + if yyq1704[0] { + yy1706 := &x.ObjectMeta + yy1706.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1685[0] { + if yyq1704[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1688 := &x.ObjectMeta - yy1688.CodecEncodeSelf(e) + yy1707 := &x.ObjectMeta + yy1707.CodecEncodeSelf(e) } } - if yyr1685 || yy2arr1685 { + if yyr1704 || yy2arr1704 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1685[1] { - yy1690 := &x.Spec - yy1690.CodecEncodeSelf(e) + if yyq1704[1] { + yy1709 := &x.Spec + yy1709.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1685[1] { + if yyq1704[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1691 := &x.Spec - yy1691.CodecEncodeSelf(e) + yy1710 := &x.Spec + yy1710.CodecEncodeSelf(e) } } - if yyr1685 || yy2arr1685 { + if yyr1704 || yy2arr1704 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22325,25 +22598,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1692 := z.DecBinary() - _ = yym1692 + yym1711 := z.DecBinary() + _ = yym1711 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1693 := r.ContainerType() - if yyct1693 == codecSelferValueTypeMap1234 { - yyl1693 := r.ReadMapStart() - if yyl1693 == 0 { + yyct1712 := r.ContainerType() + if yyct1712 == codecSelferValueTypeMap1234 { + yyl1712 := r.ReadMapStart() + if yyl1712 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1693, d) + x.codecDecodeSelfFromMap(yyl1712, d) } - } else if yyct1693 == codecSelferValueTypeArray1234 { - yyl1693 := r.ReadArrayStart() - if yyl1693 == 0 { + } else if yyct1712 == codecSelferValueTypeArray1234 { + yyl1712 := r.ReadArrayStart() + if yyl1712 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1693, d) + x.codecDecodeSelfFromArray(yyl1712, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22355,12 +22628,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1694Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1694Slc - var yyhl1694 bool = l >= 0 - for yyj1694 := 0; ; yyj1694++ { - if yyhl1694 { - if yyj1694 >= l { + var yys1713Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1713Slc + var yyhl1713 bool = l >= 0 + for yyj1713 := 0; ; yyj1713++ { + if yyhl1713 { + if yyj1713 >= l { break } } else { @@ -22369,28 +22642,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1694Slc = r.DecodeBytes(yys1694Slc, true, true) - yys1694 := string(yys1694Slc) + yys1713Slc = r.DecodeBytes(yys1713Slc, true, true) + yys1713 := string(yys1713Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1694 { + switch yys1713 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1695 := &x.ObjectMeta - yyv1695.CodecDecodeSelf(d) + yyv1714 := &x.ObjectMeta + yyv1714.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1696 := &x.Spec - yyv1696.CodecDecodeSelf(d) + yyv1715 := &x.Spec + yyv1715.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1694) - } // end switch yys1694 - } // end for yyj1694 + z.DecStructFieldNotFound(-1, yys1713) + } // end switch yys1713 + } // end for yyj1713 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22398,16 +22671,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1697 int - var yyb1697 bool - var yyhl1697 bool = l >= 0 - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + var yyj1716 int + var yyb1716 bool + var yyhl1716 bool = l >= 0 + yyj1716++ + if yyhl1716 { + yyb1716 = yyj1716 > l } else { - yyb1697 = r.CheckBreak() + yyb1716 = r.CheckBreak() } - if yyb1697 { + if yyb1716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22415,16 +22688,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1698 := &x.ObjectMeta - yyv1698.CodecDecodeSelf(d) + yyv1717 := &x.ObjectMeta + yyv1717.CodecDecodeSelf(d) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1716++ + if yyhl1716 { + yyb1716 = yyj1716 > l } else { - yyb1697 = r.CheckBreak() + yyb1716 = r.CheckBreak() } - if yyb1697 { + if yyb1716 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22432,21 +22705,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1699 := &x.Spec - yyv1699.CodecDecodeSelf(d) + yyv1718 := &x.Spec + yyv1718.CodecDecodeSelf(d) } for { - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1716++ + if yyhl1716 { + yyb1716 = yyj1716 > l } else { - yyb1697 = r.CheckBreak() + yyb1716 = r.CheckBreak() } - if yyb1697 { + if yyb1716 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1697-1, "") + z.DecStructFieldNotFound(yyj1716-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22458,38 +22731,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1700 := z.EncBinary() - _ = yym1700 + yym1719 := z.EncBinary() + _ = yym1719 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1701 := !z.EncBinary() - yy2arr1701 := z.EncBasicHandle().StructToArray - var yyq1701 [4]bool - _, _, _ = yysep1701, yyq1701, yy2arr1701 - const yyr1701 bool = false - yyq1701[0] = x.Kind != "" - yyq1701[1] = x.APIVersion != "" - yyq1701[2] = true - yyq1701[3] = true - var yynn1701 int - if yyr1701 || yy2arr1701 { + yysep1720 := !z.EncBinary() + yy2arr1720 := z.EncBasicHandle().StructToArray + var yyq1720 [4]bool + _, _, _ = yysep1720, yyq1720, yy2arr1720 + const yyr1720 bool = false + yyq1720[0] = x.Kind != "" + yyq1720[1] = x.APIVersion != "" + yyq1720[2] = true + yyq1720[3] = true + var yynn1720 int + if yyr1720 || yy2arr1720 { r.EncodeArrayStart(4) } else { - yynn1701 = 0 - for _, b := range yyq1701 { + yynn1720 = 0 + for _, b := range yyq1720 { if b { - yynn1701++ + yynn1720++ } } - r.EncodeMapStart(yynn1701) - yynn1701 = 0 + r.EncodeMapStart(yynn1720) + yynn1720 = 0 } - if yyr1701 || yy2arr1701 { + if yyr1720 || yy2arr1720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1701[0] { - yym1703 := z.EncBinary() - _ = yym1703 + if yyq1720[0] { + yym1722 := z.EncBinary() + _ = yym1722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22498,23 +22771,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1701[0] { + if yyq1720[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1704 := z.EncBinary() - _ = yym1704 + yym1723 := z.EncBinary() + _ = yym1723 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1701 || yy2arr1701 { + if yyr1720 || yy2arr1720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1701[1] { - yym1706 := z.EncBinary() - _ = yym1706 + if yyq1720[1] { + yym1725 := z.EncBinary() + _ = yym1725 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22523,53 +22796,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1701[1] { + if yyq1720[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1707 := z.EncBinary() - _ = yym1707 + yym1726 := z.EncBinary() + _ = yym1726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1701 || yy2arr1701 { + if yyr1720 || yy2arr1720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1701[2] { - yy1709 := &x.ObjectMeta - yy1709.CodecEncodeSelf(e) + if yyq1720[2] { + yy1728 := &x.ObjectMeta + yy1728.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1701[2] { + if yyq1720[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1710 := &x.ObjectMeta - yy1710.CodecEncodeSelf(e) + yy1729 := &x.ObjectMeta + yy1729.CodecEncodeSelf(e) } } - if yyr1701 || yy2arr1701 { + if yyr1720 || yy2arr1720 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1701[3] { - yy1712 := &x.Template - yy1712.CodecEncodeSelf(e) + if yyq1720[3] { + yy1731 := &x.Template + yy1731.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1701[3] { + if yyq1720[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1713 := &x.Template - yy1713.CodecEncodeSelf(e) + yy1732 := &x.Template + yy1732.CodecEncodeSelf(e) } } - if yyr1701 || yy2arr1701 { + if yyr1720 || yy2arr1720 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22582,25 +22855,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1714 := z.DecBinary() - _ = yym1714 + yym1733 := z.DecBinary() + _ = yym1733 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1715 := r.ContainerType() - if yyct1715 == codecSelferValueTypeMap1234 { - yyl1715 := r.ReadMapStart() - if yyl1715 == 0 { + yyct1734 := r.ContainerType() + if yyct1734 == codecSelferValueTypeMap1234 { + yyl1734 := r.ReadMapStart() + if yyl1734 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1715, d) + x.codecDecodeSelfFromMap(yyl1734, d) } - } else if yyct1715 == codecSelferValueTypeArray1234 { - yyl1715 := r.ReadArrayStart() - if yyl1715 == 0 { + } else if yyct1734 == codecSelferValueTypeArray1234 { + yyl1734 := r.ReadArrayStart() + if yyl1734 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1715, d) + x.codecDecodeSelfFromArray(yyl1734, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22612,12 +22885,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1716Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1716Slc - var yyhl1716 bool = l >= 0 - for yyj1716 := 0; ; yyj1716++ { - if yyhl1716 { - if yyj1716 >= l { + var yys1735Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1735Slc + var yyhl1735 bool = l >= 0 + for yyj1735 := 0; ; yyj1735++ { + if yyhl1735 { + if yyj1735 >= l { break } } else { @@ -22626,10 +22899,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1716Slc = r.DecodeBytes(yys1716Slc, true, true) - yys1716 := string(yys1716Slc) + yys1735Slc = r.DecodeBytes(yys1735Slc, true, true) + yys1735 := string(yys1735Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1716 { + switch yys1735 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22646,20 +22919,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1719 := &x.ObjectMeta - yyv1719.CodecDecodeSelf(d) + yyv1738 := &x.ObjectMeta + yyv1738.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1720 := &x.Template - yyv1720.CodecDecodeSelf(d) + yyv1739 := &x.Template + yyv1739.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1716) - } // end switch yys1716 - } // end for yyj1716 + z.DecStructFieldNotFound(-1, yys1735) + } // end switch yys1735 + } // end for yyj1735 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22667,16 +22940,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1721 int - var yyb1721 bool - var yyhl1721 bool = l >= 0 - yyj1721++ - if yyhl1721 { - yyb1721 = yyj1721 > l + var yyj1740 int + var yyb1740 bool + var yyhl1740 bool = l >= 0 + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1721 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1721 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22686,13 +22959,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1721++ - if yyhl1721 { - yyb1721 = yyj1721 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1721 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1721 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22702,13 +22975,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1721++ - if yyhl1721 { - yyb1721 = yyj1721 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1721 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1721 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22716,16 +22989,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1724 := &x.ObjectMeta - yyv1724.CodecDecodeSelf(d) + yyv1743 := &x.ObjectMeta + yyv1743.CodecDecodeSelf(d) } - yyj1721++ - if yyhl1721 { - yyb1721 = yyj1721 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1721 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1721 { + if yyb1740 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22733,21 +23006,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1725 := &x.Template - yyv1725.CodecDecodeSelf(d) + yyv1744 := &x.Template + yyv1744.CodecDecodeSelf(d) } for { - yyj1721++ - if yyhl1721 { - yyb1721 = yyj1721 > l + yyj1740++ + if yyhl1740 { + yyb1740 = yyj1740 > l } else { - yyb1721 = r.CheckBreak() + yyb1740 = r.CheckBreak() } - if yyb1721 { + if yyb1740 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1721-1, "") + z.DecStructFieldNotFound(yyj1740-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22759,37 +23032,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1726 := z.EncBinary() - _ = yym1726 + yym1745 := z.EncBinary() + _ = yym1745 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1727 := !z.EncBinary() - yy2arr1727 := z.EncBasicHandle().StructToArray - var yyq1727 [4]bool - _, _, _ = yysep1727, yyq1727, yy2arr1727 - const yyr1727 bool = false - yyq1727[0] = x.Kind != "" - yyq1727[1] = x.APIVersion != "" - yyq1727[2] = true - var yynn1727 int - if yyr1727 || yy2arr1727 { + yysep1746 := !z.EncBinary() + yy2arr1746 := z.EncBasicHandle().StructToArray + var yyq1746 [4]bool + _, _, _ = yysep1746, yyq1746, yy2arr1746 + const yyr1746 bool = false + yyq1746[0] = x.Kind != "" + yyq1746[1] = x.APIVersion != "" + yyq1746[2] = true + var yynn1746 int + if yyr1746 || yy2arr1746 { r.EncodeArrayStart(4) } else { - yynn1727 = 1 - for _, b := range yyq1727 { + yynn1746 = 1 + for _, b := range yyq1746 { if b { - yynn1727++ + yynn1746++ } } - r.EncodeMapStart(yynn1727) - yynn1727 = 0 + r.EncodeMapStart(yynn1746) + yynn1746 = 0 } - if yyr1727 || yy2arr1727 { + if yyr1746 || yy2arr1746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1727[0] { - yym1729 := z.EncBinary() - _ = yym1729 + if yyq1746[0] { + yym1748 := z.EncBinary() + _ = yym1748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22798,23 +23071,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1727[0] { + if yyq1746[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1730 := z.EncBinary() - _ = yym1730 + yym1749 := z.EncBinary() + _ = yym1749 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1727 || yy2arr1727 { + if yyr1746 || yy2arr1746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1727[1] { - yym1732 := z.EncBinary() - _ = yym1732 + if yyq1746[1] { + yym1751 := z.EncBinary() + _ = yym1751 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22823,54 +23096,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1727[1] { + if yyq1746[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1733 := z.EncBinary() - _ = yym1733 + yym1752 := z.EncBinary() + _ = yym1752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1727 || yy2arr1727 { + if yyr1746 || yy2arr1746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1727[2] { - yy1735 := &x.ListMeta - yym1736 := z.EncBinary() - _ = yym1736 + if yyq1746[2] { + yy1754 := &x.ListMeta + yym1755 := z.EncBinary() + _ = yym1755 if false { - } else if z.HasExtensions() && z.EncExt(yy1735) { + } else if z.HasExtensions() && z.EncExt(yy1754) { } else { - z.EncFallback(yy1735) + z.EncFallback(yy1754) } } else { r.EncodeNil() } } else { - if yyq1727[2] { + if yyq1746[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1737 := &x.ListMeta - yym1738 := z.EncBinary() - _ = yym1738 + yy1756 := &x.ListMeta + yym1757 := z.EncBinary() + _ = yym1757 if false { - } else if z.HasExtensions() && z.EncExt(yy1737) { + } else if z.HasExtensions() && z.EncExt(yy1756) { } else { - z.EncFallback(yy1737) + z.EncFallback(yy1756) } } } - if yyr1727 || yy2arr1727 { + if yyr1746 || yy2arr1746 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1740 := z.EncBinary() - _ = yym1740 + yym1759 := z.EncBinary() + _ = yym1759 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -22883,15 +23156,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1741 := z.EncBinary() - _ = yym1741 + yym1760 := z.EncBinary() + _ = yym1760 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1727 || yy2arr1727 { + if yyr1746 || yy2arr1746 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22904,25 +23177,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1742 := z.DecBinary() - _ = yym1742 + yym1761 := z.DecBinary() + _ = yym1761 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1743 := r.ContainerType() - if yyct1743 == codecSelferValueTypeMap1234 { - yyl1743 := r.ReadMapStart() - if yyl1743 == 0 { + yyct1762 := r.ContainerType() + if yyct1762 == codecSelferValueTypeMap1234 { + yyl1762 := r.ReadMapStart() + if yyl1762 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1743, d) + x.codecDecodeSelfFromMap(yyl1762, d) } - } else if yyct1743 == codecSelferValueTypeArray1234 { - yyl1743 := r.ReadArrayStart() - if yyl1743 == 0 { + } else if yyct1762 == codecSelferValueTypeArray1234 { + yyl1762 := r.ReadArrayStart() + if yyl1762 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1743, d) + x.codecDecodeSelfFromArray(yyl1762, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22934,12 +23207,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1744Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1744Slc - var yyhl1744 bool = l >= 0 - for yyj1744 := 0; ; yyj1744++ { - if yyhl1744 { - if yyj1744 >= l { + var yys1763Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1763Slc + var yyhl1763 bool = l >= 0 + for yyj1763 := 0; ; yyj1763++ { + if yyhl1763 { + if yyj1763 >= l { break } } else { @@ -22948,10 +23221,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1744Slc = r.DecodeBytes(yys1744Slc, true, true) - yys1744 := string(yys1744Slc) + yys1763Slc = r.DecodeBytes(yys1763Slc, true, true) + yys1763 := string(yys1763Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1744 { + switch yys1763 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22968,31 +23241,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1747 := &x.ListMeta - yym1748 := z.DecBinary() - _ = yym1748 + yyv1766 := &x.ListMeta + yym1767 := z.DecBinary() + _ = yym1767 if false { - } else if z.HasExtensions() && z.DecExt(yyv1747) { + } else if z.HasExtensions() && z.DecExt(yyv1766) { } else { - z.DecFallback(yyv1747, false) + z.DecFallback(yyv1766, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1749 := &x.Items - yym1750 := z.DecBinary() - _ = yym1750 + yyv1768 := &x.Items + yym1769 := z.DecBinary() + _ = yym1769 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1749), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1768), d) } } default: - z.DecStructFieldNotFound(-1, yys1744) - } // end switch yys1744 - } // end for yyj1744 + z.DecStructFieldNotFound(-1, yys1763) + } // end switch yys1763 + } // end for yyj1763 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23000,16 +23273,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1751 int - var yyb1751 bool - var yyhl1751 bool = l >= 0 - yyj1751++ - if yyhl1751 { - yyb1751 = yyj1751 > l + var yyj1770 int + var yyb1770 bool + var yyhl1770 bool = l >= 0 + yyj1770++ + if yyhl1770 { + yyb1770 = yyj1770 > l } else { - yyb1751 = r.CheckBreak() + yyb1770 = r.CheckBreak() } - if yyb1751 { + if yyb1770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23019,13 +23292,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1751++ - if yyhl1751 { - yyb1751 = yyj1751 > l + yyj1770++ + if yyhl1770 { + yyb1770 = yyj1770 > l } else { - yyb1751 = r.CheckBreak() + yyb1770 = r.CheckBreak() } - if yyb1751 { + if yyb1770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23035,13 +23308,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1751++ - if yyhl1751 { - yyb1751 = yyj1751 > l + yyj1770++ + if yyhl1770 { + yyb1770 = yyj1770 > l } else { - yyb1751 = r.CheckBreak() + yyb1770 = r.CheckBreak() } - if yyb1751 { + if yyb1770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23049,22 +23322,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1754 := &x.ListMeta - yym1755 := z.DecBinary() - _ = yym1755 + yyv1773 := &x.ListMeta + yym1774 := z.DecBinary() + _ = yym1774 if false { - } else if z.HasExtensions() && z.DecExt(yyv1754) { + } else if z.HasExtensions() && z.DecExt(yyv1773) { } else { - z.DecFallback(yyv1754, false) + z.DecFallback(yyv1773, false) } } - yyj1751++ - if yyhl1751 { - yyb1751 = yyj1751 > l + yyj1770++ + if yyhl1770 { + yyb1770 = yyj1770 > l } else { - yyb1751 = r.CheckBreak() + yyb1770 = r.CheckBreak() } - if yyb1751 { + if yyb1770 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23072,26 +23345,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1756 := &x.Items - yym1757 := z.DecBinary() - _ = yym1757 + yyv1775 := &x.Items + yym1776 := z.DecBinary() + _ = yym1776 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1756), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1775), d) } } for { - yyj1751++ - if yyhl1751 { - yyb1751 = yyj1751 > l + yyj1770++ + if yyhl1770 { + yyb1770 = yyj1770 > l } else { - yyb1751 = r.CheckBreak() + yyb1770 = r.CheckBreak() } - if yyb1751 { + if yyb1770 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1751-1, "") + z.DecStructFieldNotFound(yyj1770-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23103,75 +23376,75 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1758 := z.EncBinary() - _ = yym1758 + yym1777 := z.EncBinary() + _ = yym1777 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1759 := !z.EncBinary() - yy2arr1759 := z.EncBasicHandle().StructToArray - var yyq1759 [3]bool - _, _, _ = yysep1759, yyq1759, yy2arr1759 - const yyr1759 bool = false - yyq1759[0] = x.Replicas != nil - yyq1759[1] = len(x.Selector) != 0 - yyq1759[2] = x.Template != nil - var yynn1759 int - if yyr1759 || yy2arr1759 { + yysep1778 := !z.EncBinary() + yy2arr1778 := z.EncBasicHandle().StructToArray + var yyq1778 [3]bool + _, _, _ = yysep1778, yyq1778, yy2arr1778 + const yyr1778 bool = false + yyq1778[0] = x.Replicas != nil + yyq1778[1] = len(x.Selector) != 0 + yyq1778[2] = x.Template != nil + var yynn1778 int + if yyr1778 || yy2arr1778 { r.EncodeArrayStart(3) } else { - yynn1759 = 0 - for _, b := range yyq1759 { + yynn1778 = 0 + for _, b := range yyq1778 { if b { - yynn1759++ + yynn1778++ } } - r.EncodeMapStart(yynn1759) - yynn1759 = 0 + r.EncodeMapStart(yynn1778) + yynn1778 = 0 } - if yyr1759 || yy2arr1759 { + if yyr1778 || yy2arr1778 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1759[0] { + if yyq1778[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy1761 := *x.Replicas - yym1762 := z.EncBinary() - _ = yym1762 + yy1780 := *x.Replicas + yym1781 := z.EncBinary() + _ = yym1781 if false { } else { - r.EncodeInt(int64(yy1761)) + r.EncodeInt(int64(yy1780)) } } } else { r.EncodeNil() } } else { - if yyq1759[0] { + if yyq1778[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy1763 := *x.Replicas - yym1764 := z.EncBinary() - _ = yym1764 + yy1782 := *x.Replicas + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { - r.EncodeInt(int64(yy1763)) + r.EncodeInt(int64(yy1782)) } } } } - if yyr1759 || yy2arr1759 { + if yyr1778 || yy2arr1778 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1759[1] { + if yyq1778[1] { if x.Selector == nil { r.EncodeNil() } else { - yym1766 := z.EncBinary() - _ = yym1766 + yym1785 := z.EncBinary() + _ = yym1785 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -23181,15 +23454,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1759[1] { + if yyq1778[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1767 := z.EncBinary() - _ = yym1767 + yym1786 := z.EncBinary() + _ = yym1786 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -23197,9 +23470,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1759 || yy2arr1759 { + if yyr1778 || yy2arr1778 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1759[2] { + if yyq1778[2] { if x.Template == nil { r.EncodeNil() } else { @@ -23209,7 +23482,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1759[2] { + if yyq1778[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -23220,7 +23493,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1759 || yy2arr1759 { + if yyr1778 || yy2arr1778 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23233,25 +23506,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1769 := z.DecBinary() - _ = yym1769 + yym1788 := z.DecBinary() + _ = yym1788 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1770 := r.ContainerType() - if yyct1770 == codecSelferValueTypeMap1234 { - yyl1770 := r.ReadMapStart() - if yyl1770 == 0 { + yyct1789 := r.ContainerType() + if yyct1789 == codecSelferValueTypeMap1234 { + yyl1789 := r.ReadMapStart() + if yyl1789 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1770, d) + x.codecDecodeSelfFromMap(yyl1789, d) } - } else if yyct1770 == codecSelferValueTypeArray1234 { - yyl1770 := r.ReadArrayStart() - if yyl1770 == 0 { + } else if yyct1789 == codecSelferValueTypeArray1234 { + yyl1789 := r.ReadArrayStart() + if yyl1789 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1770, d) + x.codecDecodeSelfFromArray(yyl1789, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23263,12 +23536,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1771Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1771Slc - var yyhl1771 bool = l >= 0 - for yyj1771 := 0; ; yyj1771++ { - if yyhl1771 { - if yyj1771 >= l { + var yys1790Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1790Slc + var yyhl1790 bool = l >= 0 + for yyj1790 := 0; ; yyj1790++ { + if yyhl1790 { + if yyj1790 >= l { break } } else { @@ -23277,10 +23550,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1771Slc = r.DecodeBytes(yys1771Slc, true, true) - yys1771 := string(yys1771Slc) + yys1790Slc = r.DecodeBytes(yys1790Slc, true, true) + yys1790 := string(yys1790Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1771 { + switch yys1790 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -23290,8 +23563,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym1773 := z.DecBinary() - _ = yym1773 + yym1792 := z.DecBinary() + _ = yym1792 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -23301,12 +23574,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1774 := &x.Selector - yym1775 := z.DecBinary() - _ = yym1775 + yyv1793 := &x.Selector + yym1794 := z.DecBinary() + _ = yym1794 if false { } else { - z.F.DecMapStringStringX(yyv1774, false, d) + z.F.DecMapStringStringX(yyv1793, false, d) } } case "template": @@ -23321,260 +23594,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1771) - } // end switch yys1771 - } // end for yyj1771 + z.DecStructFieldNotFound(-1, yys1790) + } // end switch yys1790 + } // end for yyj1790 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj1777 int - var yyb1777 bool - var yyhl1777 bool = l >= 0 - yyj1777++ - if yyhl1777 { - yyb1777 = yyj1777 > l - } else { - yyb1777 = r.CheckBreak() - } - if yyb1777 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.Replicas != nil { - x.Replicas = nil - } - } else { - if x.Replicas == nil { - x.Replicas = new(int32) - } - yym1779 := z.DecBinary() - _ = yym1779 - if false { - } else { - *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) - } - } - yyj1777++ - if yyhl1777 { - yyb1777 = yyj1777 > l - } else { - yyb1777 = r.CheckBreak() - } - if yyb1777 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Selector = nil - } else { - yyv1780 := &x.Selector - yym1781 := z.DecBinary() - _ = yym1781 - if false { - } else { - z.F.DecMapStringStringX(yyv1780, false, d) - } - } - yyj1777++ - if yyhl1777 { - yyb1777 = yyj1777 > l - } else { - yyb1777 = r.CheckBreak() - } - if yyb1777 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - if x.Template != nil { - x.Template = nil - } - } else { - if x.Template == nil { - x.Template = new(PodTemplateSpec) - } - x.Template.CodecDecodeSelf(d) - } - for { - yyj1777++ - if yyhl1777 { - yyb1777 = yyj1777 > l - } else { - yyb1777 = r.CheckBreak() - } - if yyb1777 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1777-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym1783 := z.EncBinary() - _ = yym1783 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep1784 := !z.EncBinary() - yy2arr1784 := z.EncBasicHandle().StructToArray - var yyq1784 [2]bool - _, _, _ = yysep1784, yyq1784, yy2arr1784 - const yyr1784 bool = false - yyq1784[1] = x.ObservedGeneration != 0 - var yynn1784 int - if yyr1784 || yy2arr1784 { - r.EncodeArrayStart(2) - } else { - yynn1784 = 1 - for _, b := range yyq1784 { - if b { - yynn1784++ - } - } - r.EncodeMapStart(yynn1784) - yynn1784 = 0 - } - if yyr1784 || yy2arr1784 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1786 := z.EncBinary() - _ = yym1786 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("replicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1787 := z.EncBinary() - _ = yym1787 - if false { - } else { - r.EncodeInt(int64(x.Replicas)) - } - } - if yyr1784 || yy2arr1784 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1784[1] { - yym1789 := z.EncBinary() - _ = yym1789 - if false { - } else { - r.EncodeInt(int64(x.ObservedGeneration)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq1784[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1790 := z.EncBinary() - _ = yym1790 - if false { - } else { - r.EncodeInt(int64(x.ObservedGeneration)) - } - } - } - if yyr1784 || yy2arr1784 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym1791 := z.DecBinary() - _ = yym1791 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct1792 := r.ContainerType() - if yyct1792 == codecSelferValueTypeMap1234 { - yyl1792 := r.ReadMapStart() - if yyl1792 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl1792, d) - } - } else if yyct1792 == codecSelferValueTypeArray1234 { - yyl1792 := r.ReadArrayStart() - if yyl1792 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl1792, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys1793Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1793Slc - var yyhl1793 bool = l >= 0 - for yyj1793 := 0; ; yyj1793++ { - if yyhl1793 { - if yyj1793 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1793Slc = r.DecodeBytes(yys1793Slc, true, true) - yys1793 := string(yys1793Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1793 { - case "replicas": - if r.TryDecodeAsNil() { - x.Replicas = 0 - } else { - x.Replicas = int32(r.DecodeInt(32)) - } - case "observedGeneration": - if r.TryDecodeAsNil() { - x.ObservedGeneration = 0 - } else { - x.ObservedGeneration = int64(r.DecodeInt(64)) - } - default: - z.DecStructFieldNotFound(-1, yys1793) - } // end switch yys1793 - } // end for yyj1793 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -23593,9 +23619,19 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Replicas = 0 + if x.Replicas != nil { + x.Replicas = nil + } } else { - x.Replicas = int32(r.DecodeInt(32)) + if x.Replicas == nil { + x.Replicas = new(int32) + } + yym1798 := z.DecBinary() + _ = yym1798 + if false { + } else { + *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) + } } yyj1796++ if yyhl1796 { @@ -23609,9 +23645,36 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ObservedGeneration = 0 + x.Selector = nil } else { - x.ObservedGeneration = int64(r.DecodeInt(64)) + yyv1799 := &x.Selector + yym1800 := z.DecBinary() + _ = yym1800 + if false { + } else { + z.F.DecMapStringStringX(yyv1799, false, d) + } + } + yyj1796++ + if yyhl1796 { + yyb1796 = yyj1796 > l + } else { + yyb1796 = r.CheckBreak() + } + if yyb1796 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Template != nil { + x.Template = nil + } + } else { + if x.Template == nil { + x.Template = new(PodTemplateSpec) + } + x.Template.CodecDecodeSelf(d) } for { yyj1796++ @@ -23629,6 +23692,216 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym1802 := z.EncBinary() + _ = yym1802 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep1803 := !z.EncBinary() + yy2arr1803 := z.EncBasicHandle().StructToArray + var yyq1803 [2]bool + _, _, _ = yysep1803, yyq1803, yy2arr1803 + const yyr1803 bool = false + yyq1803[1] = x.ObservedGeneration != 0 + var yynn1803 int + if yyr1803 || yy2arr1803 { + r.EncodeArrayStart(2) + } else { + yynn1803 = 1 + for _, b := range yyq1803 { + if b { + yynn1803++ + } + } + r.EncodeMapStart(yynn1803) + yynn1803 = 0 + } + if yyr1803 || yy2arr1803 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym1805 := z.EncBinary() + _ = yym1805 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("replicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1806 := z.EncBinary() + _ = yym1806 + if false { + } else { + r.EncodeInt(int64(x.Replicas)) + } + } + if yyr1803 || yy2arr1803 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1803[1] { + yym1808 := z.EncBinary() + _ = yym1808 + if false { + } else { + r.EncodeInt(int64(x.ObservedGeneration)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq1803[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym1809 := z.EncBinary() + _ = yym1809 + if false { + } else { + r.EncodeInt(int64(x.ObservedGeneration)) + } + } + } + if yyr1803 || yy2arr1803 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym1810 := z.DecBinary() + _ = yym1810 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct1811 := r.ContainerType() + if yyct1811 == codecSelferValueTypeMap1234 { + yyl1811 := r.ReadMapStart() + if yyl1811 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl1811, d) + } + } else if yyct1811 == codecSelferValueTypeArray1234 { + yyl1811 := r.ReadArrayStart() + if yyl1811 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl1811, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys1812Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1812Slc + var yyhl1812 bool = l >= 0 + for yyj1812 := 0; ; yyj1812++ { + if yyhl1812 { + if yyj1812 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys1812Slc = r.DecodeBytes(yys1812Slc, true, true) + yys1812 := string(yys1812Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys1812 { + case "replicas": + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int32(r.DecodeInt(32)) + } + case "observedGeneration": + if r.TryDecodeAsNil() { + x.ObservedGeneration = 0 + } else { + x.ObservedGeneration = int64(r.DecodeInt(64)) + } + default: + z.DecStructFieldNotFound(-1, yys1812) + } // end switch yys1812 + } // end for yyj1812 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj1815 int + var yyb1815 bool + var yyhl1815 bool = l >= 0 + yyj1815++ + if yyhl1815 { + yyb1815 = yyj1815 > l + } else { + yyb1815 = r.CheckBreak() + } + if yyb1815 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Replicas = 0 + } else { + x.Replicas = int32(r.DecodeInt(32)) + } + yyj1815++ + if yyhl1815 { + yyb1815 = yyj1815 > l + } else { + yyb1815 = r.CheckBreak() + } + if yyb1815 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObservedGeneration = 0 + } else { + x.ObservedGeneration = int64(r.DecodeInt(64)) + } + for { + yyj1815++ + if yyhl1815 { + yyb1815 = yyj1815 > l + } else { + yyb1815 = r.CheckBreak() + } + if yyb1815 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj1815-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -23636,39 +23909,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1799 := z.EncBinary() - _ = yym1799 + yym1818 := z.EncBinary() + _ = yym1818 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1800 := !z.EncBinary() - yy2arr1800 := z.EncBasicHandle().StructToArray - var yyq1800 [5]bool - _, _, _ = yysep1800, yyq1800, yy2arr1800 - const yyr1800 bool = false - yyq1800[0] = x.Kind != "" - yyq1800[1] = x.APIVersion != "" - yyq1800[2] = true - yyq1800[3] = true - yyq1800[4] = true - var yynn1800 int - if yyr1800 || yy2arr1800 { + yysep1819 := !z.EncBinary() + yy2arr1819 := z.EncBasicHandle().StructToArray + var yyq1819 [5]bool + _, _, _ = yysep1819, yyq1819, yy2arr1819 + const yyr1819 bool = false + yyq1819[0] = x.Kind != "" + yyq1819[1] = x.APIVersion != "" + yyq1819[2] = true + yyq1819[3] = true + yyq1819[4] = true + var yynn1819 int + if yyr1819 || yy2arr1819 { r.EncodeArrayStart(5) } else { - yynn1800 = 0 - for _, b := range yyq1800 { + yynn1819 = 0 + for _, b := range yyq1819 { if b { - yynn1800++ + yynn1819++ } } - r.EncodeMapStart(yynn1800) - yynn1800 = 0 + r.EncodeMapStart(yynn1819) + yynn1819 = 0 } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1800[0] { - yym1802 := z.EncBinary() - _ = yym1802 + if yyq1819[0] { + yym1821 := z.EncBinary() + _ = yym1821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23677,23 +23950,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1800[0] { + if yyq1819[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1803 := z.EncBinary() - _ = yym1803 + yym1822 := z.EncBinary() + _ = yym1822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1800[1] { - yym1805 := z.EncBinary() - _ = yym1805 + if yyq1819[1] { + yym1824 := z.EncBinary() + _ = yym1824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23702,70 +23975,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1800[1] { + if yyq1819[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1806 := z.EncBinary() - _ = yym1806 + yym1825 := z.EncBinary() + _ = yym1825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1800[2] { - yy1808 := &x.ObjectMeta - yy1808.CodecEncodeSelf(e) + if yyq1819[2] { + yy1827 := &x.ObjectMeta + yy1827.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1800[2] { + if yyq1819[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1809 := &x.ObjectMeta - yy1809.CodecEncodeSelf(e) + yy1828 := &x.ObjectMeta + yy1828.CodecEncodeSelf(e) } } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1800[3] { - yy1811 := &x.Spec - yy1811.CodecEncodeSelf(e) + if yyq1819[3] { + yy1830 := &x.Spec + yy1830.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1800[3] { + if yyq1819[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1812 := &x.Spec - yy1812.CodecEncodeSelf(e) + yy1831 := &x.Spec + yy1831.CodecEncodeSelf(e) } } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1800[4] { - yy1814 := &x.Status - yy1814.CodecEncodeSelf(e) + if yyq1819[4] { + yy1833 := &x.Status + yy1833.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1800[4] { + if yyq1819[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1815 := &x.Status - yy1815.CodecEncodeSelf(e) + yy1834 := &x.Status + yy1834.CodecEncodeSelf(e) } } - if yyr1800 || yy2arr1800 { + if yyr1819 || yy2arr1819 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23778,25 +24051,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1816 := z.DecBinary() - _ = yym1816 + yym1835 := z.DecBinary() + _ = yym1835 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1817 := r.ContainerType() - if yyct1817 == codecSelferValueTypeMap1234 { - yyl1817 := r.ReadMapStart() - if yyl1817 == 0 { + yyct1836 := r.ContainerType() + if yyct1836 == codecSelferValueTypeMap1234 { + yyl1836 := r.ReadMapStart() + if yyl1836 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1817, d) + x.codecDecodeSelfFromMap(yyl1836, d) } - } else if yyct1817 == codecSelferValueTypeArray1234 { - yyl1817 := r.ReadArrayStart() - if yyl1817 == 0 { + } else if yyct1836 == codecSelferValueTypeArray1234 { + yyl1836 := r.ReadArrayStart() + if yyl1836 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1817, d) + x.codecDecodeSelfFromArray(yyl1836, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23808,12 +24081,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1818Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1818Slc - var yyhl1818 bool = l >= 0 - for yyj1818 := 0; ; yyj1818++ { - if yyhl1818 { - if yyj1818 >= l { + var yys1837Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1837Slc + var yyhl1837 bool = l >= 0 + for yyj1837 := 0; ; yyj1837++ { + if yyhl1837 { + if yyj1837 >= l { break } } else { @@ -23822,10 +24095,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1818Slc = r.DecodeBytes(yys1818Slc, true, true) - yys1818 := string(yys1818Slc) + yys1837Slc = r.DecodeBytes(yys1837Slc, true, true) + yys1837 := string(yys1837Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1818 { + switch yys1837 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23842,27 +24115,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1821 := &x.ObjectMeta - yyv1821.CodecDecodeSelf(d) + yyv1840 := &x.ObjectMeta + yyv1840.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1822 := &x.Spec - yyv1822.CodecDecodeSelf(d) + yyv1841 := &x.Spec + yyv1841.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1823 := &x.Status - yyv1823.CodecDecodeSelf(d) + yyv1842 := &x.Status + yyv1842.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1818) - } // end switch yys1818 - } // end for yyj1818 + z.DecStructFieldNotFound(-1, yys1837) + } // end switch yys1837 + } // end for yyj1837 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23870,16 +24143,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1824 int - var yyb1824 bool - var yyhl1824 bool = l >= 0 - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + var yyj1843 int + var yyb1843 bool + var yyhl1843 bool = l >= 0 + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23889,13 +24162,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23905,13 +24178,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23919,16 +24192,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1827 := &x.ObjectMeta - yyv1827.CodecDecodeSelf(d) + yyv1846 := &x.ObjectMeta + yyv1846.CodecDecodeSelf(d) } - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23936,16 +24209,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1828 := &x.Spec - yyv1828.CodecDecodeSelf(d) + yyv1847 := &x.Spec + yyv1847.CodecDecodeSelf(d) } - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23953,21 +24226,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1829 := &x.Status - yyv1829.CodecDecodeSelf(d) + yyv1848 := &x.Status + yyv1848.CodecDecodeSelf(d) } for { - yyj1824++ - if yyhl1824 { - yyb1824 = yyj1824 > l + yyj1843++ + if yyhl1843 { + yyb1843 = yyj1843 > l } else { - yyb1824 = r.CheckBreak() + yyb1843 = r.CheckBreak() } - if yyb1824 { + if yyb1843 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1824-1, "") + z.DecStructFieldNotFound(yyj1843-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23979,37 +24252,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1830 := z.EncBinary() - _ = yym1830 + yym1849 := z.EncBinary() + _ = yym1849 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1831 := !z.EncBinary() - yy2arr1831 := z.EncBasicHandle().StructToArray - var yyq1831 [4]bool - _, _, _ = yysep1831, yyq1831, yy2arr1831 - const yyr1831 bool = false - yyq1831[0] = x.Kind != "" - yyq1831[1] = x.APIVersion != "" - yyq1831[2] = true - var yynn1831 int - if yyr1831 || yy2arr1831 { + yysep1850 := !z.EncBinary() + yy2arr1850 := z.EncBasicHandle().StructToArray + var yyq1850 [4]bool + _, _, _ = yysep1850, yyq1850, yy2arr1850 + const yyr1850 bool = false + yyq1850[0] = x.Kind != "" + yyq1850[1] = x.APIVersion != "" + yyq1850[2] = true + var yynn1850 int + if yyr1850 || yy2arr1850 { r.EncodeArrayStart(4) } else { - yynn1831 = 1 - for _, b := range yyq1831 { + yynn1850 = 1 + for _, b := range yyq1850 { if b { - yynn1831++ + yynn1850++ } } - r.EncodeMapStart(yynn1831) - yynn1831 = 0 + r.EncodeMapStart(yynn1850) + yynn1850 = 0 } - if yyr1831 || yy2arr1831 { + if yyr1850 || yy2arr1850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1831[0] { - yym1833 := z.EncBinary() - _ = yym1833 + if yyq1850[0] { + yym1852 := z.EncBinary() + _ = yym1852 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -24018,23 +24291,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1831[0] { + if yyq1850[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1834 := z.EncBinary() - _ = yym1834 + yym1853 := z.EncBinary() + _ = yym1853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1831 || yy2arr1831 { + if yyr1850 || yy2arr1850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1831[1] { - yym1836 := z.EncBinary() - _ = yym1836 + if yyq1850[1] { + yym1855 := z.EncBinary() + _ = yym1855 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -24043,54 +24316,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1831[1] { + if yyq1850[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1837 := z.EncBinary() - _ = yym1837 + yym1856 := z.EncBinary() + _ = yym1856 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1831 || yy2arr1831 { + if yyr1850 || yy2arr1850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1831[2] { - yy1839 := &x.ListMeta - yym1840 := z.EncBinary() - _ = yym1840 + if yyq1850[2] { + yy1858 := &x.ListMeta + yym1859 := z.EncBinary() + _ = yym1859 if false { - } else if z.HasExtensions() && z.EncExt(yy1839) { + } else if z.HasExtensions() && z.EncExt(yy1858) { } else { - z.EncFallback(yy1839) + z.EncFallback(yy1858) } } else { r.EncodeNil() } } else { - if yyq1831[2] { + if yyq1850[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1841 := &x.ListMeta - yym1842 := z.EncBinary() - _ = yym1842 + yy1860 := &x.ListMeta + yym1861 := z.EncBinary() + _ = yym1861 if false { - } else if z.HasExtensions() && z.EncExt(yy1841) { + } else if z.HasExtensions() && z.EncExt(yy1860) { } else { - z.EncFallback(yy1841) + z.EncFallback(yy1860) } } } - if yyr1831 || yy2arr1831 { + if yyr1850 || yy2arr1850 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1844 := z.EncBinary() - _ = yym1844 + yym1863 := z.EncBinary() + _ = yym1863 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -24103,15 +24376,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1845 := z.EncBinary() - _ = yym1845 + yym1864 := z.EncBinary() + _ = yym1864 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1831 || yy2arr1831 { + if yyr1850 || yy2arr1850 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24124,25 +24397,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1846 := z.DecBinary() - _ = yym1846 + yym1865 := z.DecBinary() + _ = yym1865 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1847 := r.ContainerType() - if yyct1847 == codecSelferValueTypeMap1234 { - yyl1847 := r.ReadMapStart() - if yyl1847 == 0 { + yyct1866 := r.ContainerType() + if yyct1866 == codecSelferValueTypeMap1234 { + yyl1866 := r.ReadMapStart() + if yyl1866 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1847, d) + x.codecDecodeSelfFromMap(yyl1866, d) } - } else if yyct1847 == codecSelferValueTypeArray1234 { - yyl1847 := r.ReadArrayStart() - if yyl1847 == 0 { + } else if yyct1866 == codecSelferValueTypeArray1234 { + yyl1866 := r.ReadArrayStart() + if yyl1866 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1847, d) + x.codecDecodeSelfFromArray(yyl1866, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24154,12 +24427,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1848Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1848Slc - var yyhl1848 bool = l >= 0 - for yyj1848 := 0; ; yyj1848++ { - if yyhl1848 { - if yyj1848 >= l { + var yys1867Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1867Slc + var yyhl1867 bool = l >= 0 + for yyj1867 := 0; ; yyj1867++ { + if yyhl1867 { + if yyj1867 >= l { break } } else { @@ -24168,10 +24441,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1848Slc = r.DecodeBytes(yys1848Slc, true, true) - yys1848 := string(yys1848Slc) + yys1867Slc = r.DecodeBytes(yys1867Slc, true, true) + yys1867 := string(yys1867Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1848 { + switch yys1867 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24188,31 +24461,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1851 := &x.ListMeta - yym1852 := z.DecBinary() - _ = yym1852 + yyv1870 := &x.ListMeta + yym1871 := z.DecBinary() + _ = yym1871 if false { - } else if z.HasExtensions() && z.DecExt(yyv1851) { + } else if z.HasExtensions() && z.DecExt(yyv1870) { } else { - z.DecFallback(yyv1851, false) + z.DecFallback(yyv1870, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1853 := &x.Items - yym1854 := z.DecBinary() - _ = yym1854 + yyv1872 := &x.Items + yym1873 := z.DecBinary() + _ = yym1873 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1853), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1872), d) } } default: - z.DecStructFieldNotFound(-1, yys1848) - } // end switch yys1848 - } // end for yyj1848 + z.DecStructFieldNotFound(-1, yys1867) + } // end switch yys1867 + } // end for yyj1867 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24220,16 +24493,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1855 int - var yyb1855 bool - var yyhl1855 bool = l >= 0 - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + var yyj1874 int + var yyb1874 bool + var yyhl1874 bool = l >= 0 + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l } else { - yyb1855 = r.CheckBreak() + yyb1874 = r.CheckBreak() } - if yyb1855 { + if yyb1874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24239,13 +24512,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l } else { - yyb1855 = r.CheckBreak() + yyb1874 = r.CheckBreak() } - if yyb1855 { + if yyb1874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24255,13 +24528,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l } else { - yyb1855 = r.CheckBreak() + yyb1874 = r.CheckBreak() } - if yyb1855 { + if yyb1874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24269,22 +24542,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1858 := &x.ListMeta - yym1859 := z.DecBinary() - _ = yym1859 + yyv1877 := &x.ListMeta + yym1878 := z.DecBinary() + _ = yym1878 if false { - } else if z.HasExtensions() && z.DecExt(yyv1858) { + } else if z.HasExtensions() && z.DecExt(yyv1877) { } else { - z.DecFallback(yyv1858, false) + z.DecFallback(yyv1877, false) } } - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l } else { - yyb1855 = r.CheckBreak() + yyb1874 = r.CheckBreak() } - if yyb1855 { + if yyb1874 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24292,26 +24565,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1860 := &x.Items - yym1861 := z.DecBinary() - _ = yym1861 + yyv1879 := &x.Items + yym1880 := z.DecBinary() + _ = yym1880 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1860), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1879), d) } } for { - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1874++ + if yyhl1874 { + yyb1874 = yyj1874 > l } else { - yyb1855 = r.CheckBreak() + yyb1874 = r.CheckBreak() } - if yyb1855 { + if yyb1874 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1855-1, "") + z.DecStructFieldNotFound(yyj1874-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24320,8 +24593,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1862 := z.EncBinary() - _ = yym1862 + yym1881 := z.EncBinary() + _ = yym1881 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24333,8 +24606,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1863 := z.DecBinary() - _ = yym1863 + yym1882 := z.DecBinary() + _ = yym1882 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24346,8 +24619,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1864 := z.EncBinary() - _ = yym1864 + yym1883 := z.EncBinary() + _ = yym1883 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24359,8 +24632,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1865 := z.DecBinary() - _ = yym1865 + yym1884 := z.DecBinary() + _ = yym1884 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24375,48 +24648,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1866 := z.EncBinary() - _ = yym1866 + yym1885 := z.EncBinary() + _ = yym1885 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1867 := !z.EncBinary() - yy2arr1867 := z.EncBasicHandle().StructToArray - var yyq1867 [1]bool - _, _, _ = yysep1867, yyq1867, yy2arr1867 - const yyr1867 bool = false - yyq1867[0] = true - var yynn1867 int - if yyr1867 || yy2arr1867 { + yysep1886 := !z.EncBinary() + yy2arr1886 := z.EncBasicHandle().StructToArray + var yyq1886 [1]bool + _, _, _ = yysep1886, yyq1886, yy2arr1886 + const yyr1886 bool = false + yyq1886[0] = true + var yynn1886 int + if yyr1886 || yy2arr1886 { r.EncodeArrayStart(1) } else { - yynn1867 = 0 - for _, b := range yyq1867 { + yynn1886 = 0 + for _, b := range yyq1886 { if b { - yynn1867++ + yynn1886++ } } - r.EncodeMapStart(yynn1867) - yynn1867 = 0 + r.EncodeMapStart(yynn1886) + yynn1886 = 0 } - if yyr1867 || yy2arr1867 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1867[0] { - yy1869 := &x.LoadBalancer - yy1869.CodecEncodeSelf(e) + if yyq1886[0] { + yy1888 := &x.LoadBalancer + yy1888.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1867[0] { + if yyq1886[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1870 := &x.LoadBalancer - yy1870.CodecEncodeSelf(e) + yy1889 := &x.LoadBalancer + yy1889.CodecEncodeSelf(e) } } - if yyr1867 || yy2arr1867 { + if yyr1886 || yy2arr1886 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24429,25 +24702,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1871 := z.DecBinary() - _ = yym1871 + yym1890 := z.DecBinary() + _ = yym1890 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1872 := r.ContainerType() - if yyct1872 == codecSelferValueTypeMap1234 { - yyl1872 := r.ReadMapStart() - if yyl1872 == 0 { + yyct1891 := r.ContainerType() + if yyct1891 == codecSelferValueTypeMap1234 { + yyl1891 := r.ReadMapStart() + if yyl1891 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1872, d) + x.codecDecodeSelfFromMap(yyl1891, d) } - } else if yyct1872 == codecSelferValueTypeArray1234 { - yyl1872 := r.ReadArrayStart() - if yyl1872 == 0 { + } else if yyct1891 == codecSelferValueTypeArray1234 { + yyl1891 := r.ReadArrayStart() + if yyl1891 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1872, d) + x.codecDecodeSelfFromArray(yyl1891, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24459,12 +24732,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1873Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1873Slc - var yyhl1873 bool = l >= 0 - for yyj1873 := 0; ; yyj1873++ { - if yyhl1873 { - if yyj1873 >= l { + var yys1892Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1892Slc + var yyhl1892 bool = l >= 0 + for yyj1892 := 0; ; yyj1892++ { + if yyhl1892 { + if yyj1892 >= l { break } } else { @@ -24473,21 +24746,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1873Slc = r.DecodeBytes(yys1873Slc, true, true) - yys1873 := string(yys1873Slc) + yys1892Slc = r.DecodeBytes(yys1892Slc, true, true) + yys1892 := string(yys1892Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1873 { + switch yys1892 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1874 := &x.LoadBalancer - yyv1874.CodecDecodeSelf(d) + yyv1893 := &x.LoadBalancer + yyv1893.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1873) - } // end switch yys1873 - } // end for yyj1873 + z.DecStructFieldNotFound(-1, yys1892) + } // end switch yys1892 + } // end for yyj1892 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24495,16 +24768,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1875 int - var yyb1875 bool - var yyhl1875 bool = l >= 0 - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + var yyj1894 int + var yyb1894 bool + var yyhl1894 bool = l >= 0 + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24512,21 +24785,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1876 := &x.LoadBalancer - yyv1876.CodecDecodeSelf(d) + yyv1895 := &x.LoadBalancer + yyv1895.CodecDecodeSelf(d) } for { - yyj1875++ - if yyhl1875 { - yyb1875 = yyj1875 > l + yyj1894++ + if yyhl1894 { + yyb1894 = yyj1894 > l } else { - yyb1875 = r.CheckBreak() + yyb1894 = r.CheckBreak() } - if yyb1875 { + if yyb1894 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1875-1, "") + z.DecStructFieldNotFound(yyj1894-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24538,38 +24811,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1877 := z.EncBinary() - _ = yym1877 + yym1896 := z.EncBinary() + _ = yym1896 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1878 := !z.EncBinary() - yy2arr1878 := z.EncBasicHandle().StructToArray - var yyq1878 [1]bool - _, _, _ = yysep1878, yyq1878, yy2arr1878 - const yyr1878 bool = false - yyq1878[0] = len(x.Ingress) != 0 - var yynn1878 int - if yyr1878 || yy2arr1878 { + yysep1897 := !z.EncBinary() + yy2arr1897 := z.EncBasicHandle().StructToArray + var yyq1897 [1]bool + _, _, _ = yysep1897, yyq1897, yy2arr1897 + const yyr1897 bool = false + yyq1897[0] = len(x.Ingress) != 0 + var yynn1897 int + if yyr1897 || yy2arr1897 { r.EncodeArrayStart(1) } else { - yynn1878 = 0 - for _, b := range yyq1878 { + yynn1897 = 0 + for _, b := range yyq1897 { if b { - yynn1878++ + yynn1897++ } } - r.EncodeMapStart(yynn1878) - yynn1878 = 0 + r.EncodeMapStart(yynn1897) + yynn1897 = 0 } - if yyr1878 || yy2arr1878 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1878[0] { + if yyq1897[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym1880 := z.EncBinary() - _ = yym1880 + yym1899 := z.EncBinary() + _ = yym1899 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -24579,15 +24852,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1878[0] { + if yyq1897[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1881 := z.EncBinary() - _ = yym1881 + yym1900 := z.EncBinary() + _ = yym1900 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -24595,7 +24868,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1878 || yy2arr1878 { + if yyr1897 || yy2arr1897 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24608,25 +24881,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1882 := z.DecBinary() - _ = yym1882 + yym1901 := z.DecBinary() + _ = yym1901 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1883 := r.ContainerType() - if yyct1883 == codecSelferValueTypeMap1234 { - yyl1883 := r.ReadMapStart() - if yyl1883 == 0 { + yyct1902 := r.ContainerType() + if yyct1902 == codecSelferValueTypeMap1234 { + yyl1902 := r.ReadMapStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1883, d) + x.codecDecodeSelfFromMap(yyl1902, d) } - } else if yyct1883 == codecSelferValueTypeArray1234 { - yyl1883 := r.ReadArrayStart() - if yyl1883 == 0 { + } else if yyct1902 == codecSelferValueTypeArray1234 { + yyl1902 := r.ReadArrayStart() + if yyl1902 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1883, d) + x.codecDecodeSelfFromArray(yyl1902, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24638,12 +24911,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1884Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1884Slc - var yyhl1884 bool = l >= 0 - for yyj1884 := 0; ; yyj1884++ { - if yyhl1884 { - if yyj1884 >= l { + var yys1903Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1903Slc + var yyhl1903 bool = l >= 0 + for yyj1903 := 0; ; yyj1903++ { + if yyhl1903 { + if yyj1903 >= l { break } } else { @@ -24652,26 +24925,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1884Slc = r.DecodeBytes(yys1884Slc, true, true) - yys1884 := string(yys1884Slc) + yys1903Slc = r.DecodeBytes(yys1903Slc, true, true) + yys1903 := string(yys1903Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1884 { + switch yys1903 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1885 := &x.Ingress - yym1886 := z.DecBinary() - _ = yym1886 + yyv1904 := &x.Ingress + yym1905 := z.DecBinary() + _ = yym1905 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1885), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1904), d) } } default: - z.DecStructFieldNotFound(-1, yys1884) - } // end switch yys1884 - } // end for yyj1884 + z.DecStructFieldNotFound(-1, yys1903) + } // end switch yys1903 + } // end for yyj1903 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24679,16 +24952,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1887 int - var yyb1887 bool - var yyhl1887 bool = l >= 0 - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + var yyj1906 int + var yyb1906 bool + var yyhl1906 bool = l >= 0 + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1887 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1887 { + if yyb1906 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24696,26 +24969,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1888 := &x.Ingress - yym1889 := z.DecBinary() - _ = yym1889 + yyv1907 := &x.Ingress + yym1908 := z.DecBinary() + _ = yym1908 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1888), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1907), d) } } for { - yyj1887++ - if yyhl1887 { - yyb1887 = yyj1887 > l + yyj1906++ + if yyhl1906 { + yyb1906 = yyj1906 > l } else { - yyb1887 = r.CheckBreak() + yyb1906 = r.CheckBreak() } - if yyb1887 { + if yyb1906 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1887-1, "") + z.DecStructFieldNotFound(yyj1906-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24727,36 +25000,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1890 := z.EncBinary() - _ = yym1890 + yym1909 := z.EncBinary() + _ = yym1909 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1891 := !z.EncBinary() - yy2arr1891 := z.EncBasicHandle().StructToArray - var yyq1891 [2]bool - _, _, _ = yysep1891, yyq1891, yy2arr1891 - const yyr1891 bool = false - yyq1891[0] = x.IP != "" - yyq1891[1] = x.Hostname != "" - var yynn1891 int - if yyr1891 || yy2arr1891 { + yysep1910 := !z.EncBinary() + yy2arr1910 := z.EncBasicHandle().StructToArray + var yyq1910 [2]bool + _, _, _ = yysep1910, yyq1910, yy2arr1910 + const yyr1910 bool = false + yyq1910[0] = x.IP != "" + yyq1910[1] = x.Hostname != "" + var yynn1910 int + if yyr1910 || yy2arr1910 { r.EncodeArrayStart(2) } else { - yynn1891 = 0 - for _, b := range yyq1891 { + yynn1910 = 0 + for _, b := range yyq1910 { if b { - yynn1891++ + yynn1910++ } } - r.EncodeMapStart(yynn1891) - yynn1891 = 0 + r.EncodeMapStart(yynn1910) + yynn1910 = 0 } - if yyr1891 || yy2arr1891 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1891[0] { - yym1893 := z.EncBinary() - _ = yym1893 + if yyq1910[0] { + yym1912 := z.EncBinary() + _ = yym1912 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -24765,23 +25038,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1891[0] { + if yyq1910[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1894 := z.EncBinary() - _ = yym1894 + yym1913 := z.EncBinary() + _ = yym1913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr1891 || yy2arr1891 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1891[1] { - yym1896 := z.EncBinary() - _ = yym1896 + if yyq1910[1] { + yym1915 := z.EncBinary() + _ = yym1915 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -24790,19 +25063,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1891[1] { + if yyq1910[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1897 := z.EncBinary() - _ = yym1897 + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1891 || yy2arr1891 { + if yyr1910 || yy2arr1910 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24815,25 +25088,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1898 := z.DecBinary() - _ = yym1898 + yym1917 := z.DecBinary() + _ = yym1917 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1899 := r.ContainerType() - if yyct1899 == codecSelferValueTypeMap1234 { - yyl1899 := r.ReadMapStart() - if yyl1899 == 0 { + yyct1918 := r.ContainerType() + if yyct1918 == codecSelferValueTypeMap1234 { + yyl1918 := r.ReadMapStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1899, d) + x.codecDecodeSelfFromMap(yyl1918, d) } - } else if yyct1899 == codecSelferValueTypeArray1234 { - yyl1899 := r.ReadArrayStart() - if yyl1899 == 0 { + } else if yyct1918 == codecSelferValueTypeArray1234 { + yyl1918 := r.ReadArrayStart() + if yyl1918 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1899, d) + x.codecDecodeSelfFromArray(yyl1918, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24845,12 +25118,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1900Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1900Slc - var yyhl1900 bool = l >= 0 - for yyj1900 := 0; ; yyj1900++ { - if yyhl1900 { - if yyj1900 >= l { + var yys1919Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1919Slc + var yyhl1919 bool = l >= 0 + for yyj1919 := 0; ; yyj1919++ { + if yyhl1919 { + if yyj1919 >= l { break } } else { @@ -24859,10 +25132,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1900Slc = r.DecodeBytes(yys1900Slc, true, true) - yys1900 := string(yys1900Slc) + yys1919Slc = r.DecodeBytes(yys1919Slc, true, true) + yys1919 := string(yys1919Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1900 { + switch yys1919 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -24876,9 +25149,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1900) - } // end switch yys1900 - } // end for yyj1900 + z.DecStructFieldNotFound(-1, yys1919) + } // end switch yys1919 + } // end for yyj1919 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24886,16 +25159,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1903 int - var yyb1903 bool - var yyhl1903 bool = l >= 0 - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + var yyj1922 int + var yyb1922 bool + var yyhl1922 bool = l >= 0 + yyj1922++ + if yyhl1922 { + yyb1922 = yyj1922 > l } else { - yyb1903 = r.CheckBreak() + yyb1922 = r.CheckBreak() } - if yyb1903 { + if yyb1922 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24905,13 +25178,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + yyj1922++ + if yyhl1922 { + yyb1922 = yyj1922 > l } else { - yyb1903 = r.CheckBreak() + yyb1922 = r.CheckBreak() } - if yyb1903 { + if yyb1922 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24922,17 +25195,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj1903++ - if yyhl1903 { - yyb1903 = yyj1903 > l + yyj1922++ + if yyhl1922 { + yyb1922 = yyj1922 > l } else { - yyb1903 = r.CheckBreak() + yyb1922 = r.CheckBreak() } - if yyb1903 { + if yyb1922 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1903-1, "") + z.DecStructFieldNotFound(yyj1922-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24944,43 +25217,43 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1906 := z.EncBinary() - _ = yym1906 + yym1925 := z.EncBinary() + _ = yym1925 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1907 := !z.EncBinary() - yy2arr1907 := z.EncBasicHandle().StructToArray - var yyq1907 [8]bool - _, _, _ = yysep1907, yyq1907, yy2arr1907 - const yyr1907 bool = false - yyq1907[1] = len(x.Selector) != 0 - yyq1907[2] = x.ClusterIP != "" - yyq1907[3] = x.Type != "" - yyq1907[4] = len(x.ExternalIPs) != 0 - yyq1907[5] = len(x.DeprecatedPublicIPs) != 0 - yyq1907[6] = x.SessionAffinity != "" - yyq1907[7] = x.LoadBalancerIP != "" - var yynn1907 int - if yyr1907 || yy2arr1907 { + yysep1926 := !z.EncBinary() + yy2arr1926 := z.EncBasicHandle().StructToArray + var yyq1926 [8]bool + _, _, _ = yysep1926, yyq1926, yy2arr1926 + const yyr1926 bool = false + yyq1926[1] = len(x.Selector) != 0 + yyq1926[2] = x.ClusterIP != "" + yyq1926[3] = x.Type != "" + yyq1926[4] = len(x.ExternalIPs) != 0 + yyq1926[5] = len(x.DeprecatedPublicIPs) != 0 + yyq1926[6] = x.SessionAffinity != "" + yyq1926[7] = x.LoadBalancerIP != "" + var yynn1926 int + if yyr1926 || yy2arr1926 { r.EncodeArrayStart(8) } else { - yynn1907 = 1 - for _, b := range yyq1907 { + yynn1926 = 1 + for _, b := range yyq1926 { if b { - yynn1907++ + yynn1926++ } } - r.EncodeMapStart(yynn1907) - yynn1907 = 0 + r.EncodeMapStart(yynn1926) + yynn1926 = 0 } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym1909 := z.EncBinary() - _ = yym1909 + yym1928 := z.EncBinary() + _ = yym1928 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -24993,22 +25266,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym1910 := z.EncBinary() - _ = yym1910 + yym1929 := z.EncBinary() + _ = yym1929 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[1] { + if yyq1926[1] { if x.Selector == nil { r.EncodeNil() } else { - yym1912 := z.EncBinary() - _ = yym1912 + yym1931 := z.EncBinary() + _ = yym1931 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -25018,15 +25291,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1907[1] { + if yyq1926[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1913 := z.EncBinary() - _ = yym1913 + yym1932 := z.EncBinary() + _ = yym1932 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -25034,11 +25307,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[2] { - yym1915 := z.EncBinary() - _ = yym1915 + if yyq1926[2] { + yym1934 := z.EncBinary() + _ = yym1934 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -25047,41 +25320,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1907[2] { + if yyq1926[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1916 := z.EncBinary() - _ = yym1916 + yym1935 := z.EncBinary() + _ = yym1935 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[3] { + if yyq1926[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1907[3] { + if yyq1926[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[4] { + if yyq1926[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1919 := z.EncBinary() - _ = yym1919 + yym1938 := z.EncBinary() + _ = yym1938 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25091,15 +25364,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1907[4] { + if yyq1926[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1920 := z.EncBinary() - _ = yym1920 + yym1939 := z.EncBinary() + _ = yym1939 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25107,14 +25380,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[5] { + if yyq1926[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym1922 := z.EncBinary() - _ = yym1922 + yym1941 := z.EncBinary() + _ = yym1941 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -25124,15 +25397,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1907[5] { + if yyq1926[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym1923 := z.EncBinary() - _ = yym1923 + yym1942 := z.EncBinary() + _ = yym1942 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -25140,26 +25413,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[6] { + if yyq1926[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1907[6] { + if yyq1926[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1907[7] { - yym1926 := z.EncBinary() - _ = yym1926 + if yyq1926[7] { + yym1945 := z.EncBinary() + _ = yym1945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -25168,19 +25441,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1907[7] { + if yyq1926[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1927 := z.EncBinary() - _ = yym1927 + yym1946 := z.EncBinary() + _ = yym1946 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr1907 || yy2arr1907 { + if yyr1926 || yy2arr1926 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25193,25 +25466,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1928 := z.DecBinary() - _ = yym1928 + yym1947 := z.DecBinary() + _ = yym1947 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1929 := r.ContainerType() - if yyct1929 == codecSelferValueTypeMap1234 { - yyl1929 := r.ReadMapStart() - if yyl1929 == 0 { + yyct1948 := r.ContainerType() + if yyct1948 == codecSelferValueTypeMap1234 { + yyl1948 := r.ReadMapStart() + if yyl1948 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1929, d) + x.codecDecodeSelfFromMap(yyl1948, d) } - } else if yyct1929 == codecSelferValueTypeArray1234 { - yyl1929 := r.ReadArrayStart() - if yyl1929 == 0 { + } else if yyct1948 == codecSelferValueTypeArray1234 { + yyl1948 := r.ReadArrayStart() + if yyl1948 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1929, d) + x.codecDecodeSelfFromArray(yyl1948, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25223,12 +25496,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1930Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1930Slc - var yyhl1930 bool = l >= 0 - for yyj1930 := 0; ; yyj1930++ { - if yyhl1930 { - if yyj1930 >= l { + var yys1949Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1949Slc + var yyhl1949 bool = l >= 0 + for yyj1949 := 0; ; yyj1949++ { + if yyhl1949 { + if yyj1949 >= l { break } } else { @@ -25237,32 +25510,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1930Slc = r.DecodeBytes(yys1930Slc, true, true) - yys1930 := string(yys1930Slc) + yys1949Slc = r.DecodeBytes(yys1949Slc, true, true) + yys1949 := string(yys1949Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1930 { + switch yys1949 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1931 := &x.Ports - yym1932 := z.DecBinary() - _ = yym1932 + yyv1950 := &x.Ports + yym1951 := z.DecBinary() + _ = yym1951 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1931), d) + h.decSliceServicePort((*[]ServicePort)(yyv1950), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1933 := &x.Selector - yym1934 := z.DecBinary() - _ = yym1934 + yyv1952 := &x.Selector + yym1953 := z.DecBinary() + _ = yym1953 if false { } else { - z.F.DecMapStringStringX(yyv1933, false, d) + z.F.DecMapStringStringX(yyv1952, false, d) } } case "clusterIP": @@ -25281,24 +25554,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1937 := &x.ExternalIPs - yym1938 := z.DecBinary() - _ = yym1938 + yyv1956 := &x.ExternalIPs + yym1957 := z.DecBinary() + _ = yym1957 if false { } else { - z.F.DecSliceStringX(yyv1937, false, d) + z.F.DecSliceStringX(yyv1956, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv1939 := &x.DeprecatedPublicIPs - yym1940 := z.DecBinary() - _ = yym1940 + yyv1958 := &x.DeprecatedPublicIPs + yym1959 := z.DecBinary() + _ = yym1959 if false { } else { - z.F.DecSliceStringX(yyv1939, false, d) + z.F.DecSliceStringX(yyv1958, false, d) } } case "sessionAffinity": @@ -25314,9 +25587,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1930) - } // end switch yys1930 - } // end for yyj1930 + z.DecStructFieldNotFound(-1, yys1949) + } // end switch yys1949 + } // end for yyj1949 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25324,16 +25597,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1943 int - var yyb1943 bool - var yyhl1943 bool = l >= 0 - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + var yyj1962 int + var yyb1962 bool + var yyhl1962 bool = l >= 0 + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25341,21 +25614,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1944 := &x.Ports - yym1945 := z.DecBinary() - _ = yym1945 + yyv1963 := &x.Ports + yym1964 := z.DecBinary() + _ = yym1964 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1944), d) + h.decSliceServicePort((*[]ServicePort)(yyv1963), d) } } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25363,21 +25636,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1946 := &x.Selector - yym1947 := z.DecBinary() - _ = yym1947 + yyv1965 := &x.Selector + yym1966 := z.DecBinary() + _ = yym1966 if false { } else { - z.F.DecMapStringStringX(yyv1946, false, d) + z.F.DecMapStringStringX(yyv1965, false, d) } } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25387,13 +25660,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25403,13 +25676,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25417,21 +25690,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1950 := &x.ExternalIPs - yym1951 := z.DecBinary() - _ = yym1951 + yyv1969 := &x.ExternalIPs + yym1970 := z.DecBinary() + _ = yym1970 if false { } else { - z.F.DecSliceStringX(yyv1950, false, d) + z.F.DecSliceStringX(yyv1969, false, d) } } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25439,21 +25712,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv1952 := &x.DeprecatedPublicIPs - yym1953 := z.DecBinary() - _ = yym1953 + yyv1971 := &x.DeprecatedPublicIPs + yym1972 := z.DecBinary() + _ = yym1972 if false { } else { - z.F.DecSliceStringX(yyv1952, false, d) + z.F.DecSliceStringX(yyv1971, false, d) } } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25463,13 +25736,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25480,17 +25753,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } for { - yyj1943++ - if yyhl1943 { - yyb1943 = yyj1943 > l + yyj1962++ + if yyhl1962 { + yyb1962 = yyj1962 > l } else { - yyb1943 = r.CheckBreak() + yyb1962 = r.CheckBreak() } - if yyb1943 { + if yyb1962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1943-1, "") + z.DecStructFieldNotFound(yyj1962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25502,38 +25775,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1956 := z.EncBinary() - _ = yym1956 + yym1975 := z.EncBinary() + _ = yym1975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1957 := !z.EncBinary() - yy2arr1957 := z.EncBasicHandle().StructToArray - var yyq1957 [5]bool - _, _, _ = yysep1957, yyq1957, yy2arr1957 - const yyr1957 bool = false - yyq1957[0] = x.Name != "" - yyq1957[1] = x.Protocol != "" - yyq1957[3] = true - yyq1957[4] = x.NodePort != 0 - var yynn1957 int - if yyr1957 || yy2arr1957 { + yysep1976 := !z.EncBinary() + yy2arr1976 := z.EncBasicHandle().StructToArray + var yyq1976 [5]bool + _, _, _ = yysep1976, yyq1976, yy2arr1976 + const yyr1976 bool = false + yyq1976[0] = x.Name != "" + yyq1976[1] = x.Protocol != "" + yyq1976[3] = true + yyq1976[4] = x.NodePort != 0 + var yynn1976 int + if yyr1976 || yy2arr1976 { r.EncodeArrayStart(5) } else { - yynn1957 = 1 - for _, b := range yyq1957 { + yynn1976 = 1 + for _, b := range yyq1976 { if b { - yynn1957++ + yynn1976++ } } - r.EncodeMapStart(yynn1957) - yynn1957 = 0 + r.EncodeMapStart(yynn1976) + yynn1976 = 0 } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1957[0] { - yym1959 := z.EncBinary() - _ = yym1959 + if yyq1976[0] { + yym1978 := z.EncBinary() + _ = yym1978 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -25542,37 +25815,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1957[0] { + if yyq1976[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1960 := z.EncBinary() - _ = yym1960 + yym1979 := z.EncBinary() + _ = yym1979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1957[1] { + if yyq1976[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1957[1] { + if yyq1976[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1963 := z.EncBinary() - _ = yym1963 + yym1982 := z.EncBinary() + _ = yym1982 if false { } else { r.EncodeInt(int64(x.Port)) @@ -25581,51 +25854,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1964 := z.EncBinary() - _ = yym1964 + yym1983 := z.EncBinary() + _ = yym1983 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1957[3] { - yy1966 := &x.TargetPort - yym1967 := z.EncBinary() - _ = yym1967 + if yyq1976[3] { + yy1985 := &x.TargetPort + yym1986 := z.EncBinary() + _ = yym1986 if false { - } else if z.HasExtensions() && z.EncExt(yy1966) { - } else if !yym1967 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1966) + } else if z.HasExtensions() && z.EncExt(yy1985) { + } else if !yym1986 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1985) } else { - z.EncFallback(yy1966) + z.EncFallback(yy1985) } } else { r.EncodeNil() } } else { - if yyq1957[3] { + if yyq1976[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1968 := &x.TargetPort - yym1969 := z.EncBinary() - _ = yym1969 + yy1987 := &x.TargetPort + yym1988 := z.EncBinary() + _ = yym1988 if false { - } else if z.HasExtensions() && z.EncExt(yy1968) { - } else if !yym1969 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1968) + } else if z.HasExtensions() && z.EncExt(yy1987) { + } else if !yym1988 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1987) } else { - z.EncFallback(yy1968) + z.EncFallback(yy1987) } } } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1957[4] { - yym1971 := z.EncBinary() - _ = yym1971 + if yyq1976[4] { + yym1990 := z.EncBinary() + _ = yym1990 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -25634,19 +25907,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1957[4] { + if yyq1976[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1972 := z.EncBinary() - _ = yym1972 + yym1991 := z.EncBinary() + _ = yym1991 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr1957 || yy2arr1957 { + if yyr1976 || yy2arr1976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25659,25 +25932,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1973 := z.DecBinary() - _ = yym1973 + yym1992 := z.DecBinary() + _ = yym1992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1974 := r.ContainerType() - if yyct1974 == codecSelferValueTypeMap1234 { - yyl1974 := r.ReadMapStart() - if yyl1974 == 0 { + yyct1993 := r.ContainerType() + if yyct1993 == codecSelferValueTypeMap1234 { + yyl1993 := r.ReadMapStart() + if yyl1993 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1974, d) + x.codecDecodeSelfFromMap(yyl1993, d) } - } else if yyct1974 == codecSelferValueTypeArray1234 { - yyl1974 := r.ReadArrayStart() - if yyl1974 == 0 { + } else if yyct1993 == codecSelferValueTypeArray1234 { + yyl1993 := r.ReadArrayStart() + if yyl1993 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1974, d) + x.codecDecodeSelfFromArray(yyl1993, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25689,12 +25962,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1975Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1975Slc - var yyhl1975 bool = l >= 0 - for yyj1975 := 0; ; yyj1975++ { - if yyhl1975 { - if yyj1975 >= l { + var yys1994Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1994Slc + var yyhl1994 bool = l >= 0 + for yyj1994 := 0; ; yyj1994++ { + if yyhl1994 { + if yyj1994 >= l { break } } else { @@ -25703,10 +25976,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1975Slc = r.DecodeBytes(yys1975Slc, true, true) - yys1975 := string(yys1975Slc) + yys1994Slc = r.DecodeBytes(yys1994Slc, true, true) + yys1994 := string(yys1994Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1975 { + switch yys1994 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -25729,15 +26002,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1979 := &x.TargetPort - yym1980 := z.DecBinary() - _ = yym1980 + yyv1998 := &x.TargetPort + yym1999 := z.DecBinary() + _ = yym1999 if false { - } else if z.HasExtensions() && z.DecExt(yyv1979) { - } else if !yym1980 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1979) + } else if z.HasExtensions() && z.DecExt(yyv1998) { + } else if !yym1999 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1998) } else { - z.DecFallback(yyv1979, false) + z.DecFallback(yyv1998, false) } } case "nodePort": @@ -25747,9 +26020,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1975) - } // end switch yys1975 - } // end for yyj1975 + z.DecStructFieldNotFound(-1, yys1994) + } // end switch yys1994 + } // end for yyj1994 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25757,16 +26030,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1982 int - var yyb1982 bool - var yyhl1982 bool = l >= 0 - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + var yyj2001 int + var yyb2001 bool + var yyhl2001 bool = l >= 0 + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25776,13 +26049,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25792,13 +26065,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25808,13 +26081,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25822,24 +26095,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1986 := &x.TargetPort - yym1987 := z.DecBinary() - _ = yym1987 + yyv2005 := &x.TargetPort + yym2006 := z.DecBinary() + _ = yym2006 if false { - } else if z.HasExtensions() && z.DecExt(yyv1986) { - } else if !yym1987 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1986) + } else if z.HasExtensions() && z.DecExt(yyv2005) { + } else if !yym2006 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2005) } else { - z.DecFallback(yyv1986, false) + z.DecFallback(yyv2005, false) } } - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25850,17 +26123,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj1982++ - if yyhl1982 { - yyb1982 = yyj1982 > l + yyj2001++ + if yyhl2001 { + yyb2001 = yyj2001 > l } else { - yyb1982 = r.CheckBreak() + yyb2001 = r.CheckBreak() } - if yyb1982 { + if yyb2001 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1982-1, "") + z.DecStructFieldNotFound(yyj2001-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25872,39 +26145,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1989 := z.EncBinary() - _ = yym1989 + yym2008 := z.EncBinary() + _ = yym2008 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1990 := !z.EncBinary() - yy2arr1990 := z.EncBasicHandle().StructToArray - var yyq1990 [5]bool - _, _, _ = yysep1990, yyq1990, yy2arr1990 - const yyr1990 bool = false - yyq1990[0] = x.Kind != "" - yyq1990[1] = x.APIVersion != "" - yyq1990[2] = true - yyq1990[3] = true - yyq1990[4] = true - var yynn1990 int - if yyr1990 || yy2arr1990 { + yysep2009 := !z.EncBinary() + yy2arr2009 := z.EncBasicHandle().StructToArray + var yyq2009 [5]bool + _, _, _ = yysep2009, yyq2009, yy2arr2009 + const yyr2009 bool = false + yyq2009[0] = x.Kind != "" + yyq2009[1] = x.APIVersion != "" + yyq2009[2] = true + yyq2009[3] = true + yyq2009[4] = true + var yynn2009 int + if yyr2009 || yy2arr2009 { r.EncodeArrayStart(5) } else { - yynn1990 = 0 - for _, b := range yyq1990 { + yynn2009 = 0 + for _, b := range yyq2009 { if b { - yynn1990++ + yynn2009++ } } - r.EncodeMapStart(yynn1990) - yynn1990 = 0 + r.EncodeMapStart(yynn2009) + yynn2009 = 0 } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[0] { - yym1992 := z.EncBinary() - _ = yym1992 + if yyq2009[0] { + yym2011 := z.EncBinary() + _ = yym2011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25913,23 +26186,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1990[0] { + if yyq2009[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1993 := z.EncBinary() - _ = yym1993 + yym2012 := z.EncBinary() + _ = yym2012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[1] { - yym1995 := z.EncBinary() - _ = yym1995 + if yyq2009[1] { + yym2014 := z.EncBinary() + _ = yym2014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25938,70 +26211,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1990[1] { + if yyq2009[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1996 := z.EncBinary() - _ = yym1996 + yym2015 := z.EncBinary() + _ = yym2015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[2] { - yy1998 := &x.ObjectMeta - yy1998.CodecEncodeSelf(e) + if yyq2009[2] { + yy2017 := &x.ObjectMeta + yy2017.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1990[2] { + if yyq2009[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1999 := &x.ObjectMeta - yy1999.CodecEncodeSelf(e) + yy2018 := &x.ObjectMeta + yy2018.CodecEncodeSelf(e) } } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[3] { - yy2001 := &x.Spec - yy2001.CodecEncodeSelf(e) + if yyq2009[3] { + yy2020 := &x.Spec + yy2020.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1990[3] { + if yyq2009[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2002 := &x.Spec - yy2002.CodecEncodeSelf(e) + yy2021 := &x.Spec + yy2021.CodecEncodeSelf(e) } } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1990[4] { - yy2004 := &x.Status - yy2004.CodecEncodeSelf(e) + if yyq2009[4] { + yy2023 := &x.Status + yy2023.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1990[4] { + if yyq2009[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2005 := &x.Status - yy2005.CodecEncodeSelf(e) + yy2024 := &x.Status + yy2024.CodecEncodeSelf(e) } } - if yyr1990 || yy2arr1990 { + if yyr2009 || yy2arr2009 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26014,25 +26287,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2006 := z.DecBinary() - _ = yym2006 + yym2025 := z.DecBinary() + _ = yym2025 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2007 := r.ContainerType() - if yyct2007 == codecSelferValueTypeMap1234 { - yyl2007 := r.ReadMapStart() - if yyl2007 == 0 { + yyct2026 := r.ContainerType() + if yyct2026 == codecSelferValueTypeMap1234 { + yyl2026 := r.ReadMapStart() + if yyl2026 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2007, d) + x.codecDecodeSelfFromMap(yyl2026, d) } - } else if yyct2007 == codecSelferValueTypeArray1234 { - yyl2007 := r.ReadArrayStart() - if yyl2007 == 0 { + } else if yyct2026 == codecSelferValueTypeArray1234 { + yyl2026 := r.ReadArrayStart() + if yyl2026 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2007, d) + x.codecDecodeSelfFromArray(yyl2026, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26044,12 +26317,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2008Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2008Slc - var yyhl2008 bool = l >= 0 - for yyj2008 := 0; ; yyj2008++ { - if yyhl2008 { - if yyj2008 >= l { + var yys2027Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2027Slc + var yyhl2027 bool = l >= 0 + for yyj2027 := 0; ; yyj2027++ { + if yyhl2027 { + if yyj2027 >= l { break } } else { @@ -26058,10 +26331,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2008Slc = r.DecodeBytes(yys2008Slc, true, true) - yys2008 := string(yys2008Slc) + yys2027Slc = r.DecodeBytes(yys2027Slc, true, true) + yys2027 := string(yys2027Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2008 { + switch yys2027 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26078,27 +26351,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2011 := &x.ObjectMeta - yyv2011.CodecDecodeSelf(d) + yyv2030 := &x.ObjectMeta + yyv2030.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2012 := &x.Spec - yyv2012.CodecDecodeSelf(d) + yyv2031 := &x.Spec + yyv2031.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2013 := &x.Status - yyv2013.CodecDecodeSelf(d) + yyv2032 := &x.Status + yyv2032.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2008) - } // end switch yys2008 - } // end for yyj2008 + z.DecStructFieldNotFound(-1, yys2027) + } // end switch yys2027 + } // end for yyj2027 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26106,16 +26379,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2014 int - var yyb2014 bool - var yyhl2014 bool = l >= 0 - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + var yyj2033 int + var yyb2033 bool + var yyhl2033 bool = l >= 0 + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26125,13 +26398,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26141,13 +26414,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26155,16 +26428,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2017 := &x.ObjectMeta - yyv2017.CodecDecodeSelf(d) + yyv2036 := &x.ObjectMeta + yyv2036.CodecDecodeSelf(d) } - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26172,16 +26445,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2018 := &x.Spec - yyv2018.CodecDecodeSelf(d) + yyv2037 := &x.Spec + yyv2037.CodecDecodeSelf(d) } - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26189,21 +26462,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2019 := &x.Status - yyv2019.CodecDecodeSelf(d) + yyv2038 := &x.Status + yyv2038.CodecDecodeSelf(d) } for { - yyj2014++ - if yyhl2014 { - yyb2014 = yyj2014 > l + yyj2033++ + if yyhl2033 { + yyb2033 = yyj2033 > l } else { - yyb2014 = r.CheckBreak() + yyb2033 = r.CheckBreak() } - if yyb2014 { + if yyb2033 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2014-1, "") + z.DecStructFieldNotFound(yyj2033-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26215,37 +26488,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2020 := z.EncBinary() - _ = yym2020 + yym2039 := z.EncBinary() + _ = yym2039 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2021 := !z.EncBinary() - yy2arr2021 := z.EncBasicHandle().StructToArray - var yyq2021 [4]bool - _, _, _ = yysep2021, yyq2021, yy2arr2021 - const yyr2021 bool = false - yyq2021[0] = x.Kind != "" - yyq2021[1] = x.APIVersion != "" - yyq2021[2] = true - var yynn2021 int - if yyr2021 || yy2arr2021 { + yysep2040 := !z.EncBinary() + yy2arr2040 := z.EncBasicHandle().StructToArray + var yyq2040 [4]bool + _, _, _ = yysep2040, yyq2040, yy2arr2040 + const yyr2040 bool = false + yyq2040[0] = x.Kind != "" + yyq2040[1] = x.APIVersion != "" + yyq2040[2] = true + var yynn2040 int + if yyr2040 || yy2arr2040 { r.EncodeArrayStart(4) } else { - yynn2021 = 1 - for _, b := range yyq2021 { + yynn2040 = 1 + for _, b := range yyq2040 { if b { - yynn2021++ + yynn2040++ } } - r.EncodeMapStart(yynn2021) - yynn2021 = 0 + r.EncodeMapStart(yynn2040) + yynn2040 = 0 } - if yyr2021 || yy2arr2021 { + if yyr2040 || yy2arr2040 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2021[0] { - yym2023 := z.EncBinary() - _ = yym2023 + if yyq2040[0] { + yym2042 := z.EncBinary() + _ = yym2042 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26254,23 +26527,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2021[0] { + if yyq2040[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2024 := z.EncBinary() - _ = yym2024 + yym2043 := z.EncBinary() + _ = yym2043 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2021 || yy2arr2021 { + if yyr2040 || yy2arr2040 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2021[1] { - yym2026 := z.EncBinary() - _ = yym2026 + if yyq2040[1] { + yym2045 := z.EncBinary() + _ = yym2045 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26279,54 +26552,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2021[1] { + if yyq2040[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2027 := z.EncBinary() - _ = yym2027 + yym2046 := z.EncBinary() + _ = yym2046 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2021 || yy2arr2021 { + if yyr2040 || yy2arr2040 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2021[2] { - yy2029 := &x.ListMeta - yym2030 := z.EncBinary() - _ = yym2030 + if yyq2040[2] { + yy2048 := &x.ListMeta + yym2049 := z.EncBinary() + _ = yym2049 if false { - } else if z.HasExtensions() && z.EncExt(yy2029) { + } else if z.HasExtensions() && z.EncExt(yy2048) { } else { - z.EncFallback(yy2029) + z.EncFallback(yy2048) } } else { r.EncodeNil() } } else { - if yyq2021[2] { + if yyq2040[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2031 := &x.ListMeta - yym2032 := z.EncBinary() - _ = yym2032 + yy2050 := &x.ListMeta + yym2051 := z.EncBinary() + _ = yym2051 if false { - } else if z.HasExtensions() && z.EncExt(yy2031) { + } else if z.HasExtensions() && z.EncExt(yy2050) { } else { - z.EncFallback(yy2031) + z.EncFallback(yy2050) } } } - if yyr2021 || yy2arr2021 { + if yyr2040 || yy2arr2040 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2034 := z.EncBinary() - _ = yym2034 + yym2053 := z.EncBinary() + _ = yym2053 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -26339,15 +26612,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2035 := z.EncBinary() - _ = yym2035 + yym2054 := z.EncBinary() + _ = yym2054 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2021 || yy2arr2021 { + if yyr2040 || yy2arr2040 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26360,25 +26633,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2036 := z.DecBinary() - _ = yym2036 + yym2055 := z.DecBinary() + _ = yym2055 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2037 := r.ContainerType() - if yyct2037 == codecSelferValueTypeMap1234 { - yyl2037 := r.ReadMapStart() - if yyl2037 == 0 { + yyct2056 := r.ContainerType() + if yyct2056 == codecSelferValueTypeMap1234 { + yyl2056 := r.ReadMapStart() + if yyl2056 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2037, d) + x.codecDecodeSelfFromMap(yyl2056, d) } - } else if yyct2037 == codecSelferValueTypeArray1234 { - yyl2037 := r.ReadArrayStart() - if yyl2037 == 0 { + } else if yyct2056 == codecSelferValueTypeArray1234 { + yyl2056 := r.ReadArrayStart() + if yyl2056 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2037, d) + x.codecDecodeSelfFromArray(yyl2056, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26390,12 +26663,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2038Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2038Slc - var yyhl2038 bool = l >= 0 - for yyj2038 := 0; ; yyj2038++ { - if yyhl2038 { - if yyj2038 >= l { + var yys2057Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2057Slc + var yyhl2057 bool = l >= 0 + for yyj2057 := 0; ; yyj2057++ { + if yyhl2057 { + if yyj2057 >= l { break } } else { @@ -26404,10 +26677,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2038Slc = r.DecodeBytes(yys2038Slc, true, true) - yys2038 := string(yys2038Slc) + yys2057Slc = r.DecodeBytes(yys2057Slc, true, true) + yys2057 := string(yys2057Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2038 { + switch yys2057 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26424,31 +26697,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2041 := &x.ListMeta - yym2042 := z.DecBinary() - _ = yym2042 + yyv2060 := &x.ListMeta + yym2061 := z.DecBinary() + _ = yym2061 if false { - } else if z.HasExtensions() && z.DecExt(yyv2041) { + } else if z.HasExtensions() && z.DecExt(yyv2060) { } else { - z.DecFallback(yyv2041, false) + z.DecFallback(yyv2060, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2043 := &x.Items - yym2044 := z.DecBinary() - _ = yym2044 + yyv2062 := &x.Items + yym2063 := z.DecBinary() + _ = yym2063 if false { } else { - h.decSliceService((*[]Service)(yyv2043), d) + h.decSliceService((*[]Service)(yyv2062), d) } } default: - z.DecStructFieldNotFound(-1, yys2038) - } // end switch yys2038 - } // end for yyj2038 + z.DecStructFieldNotFound(-1, yys2057) + } // end switch yys2057 + } // end for yyj2057 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26456,16 +26729,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2045 int - var yyb2045 bool - var yyhl2045 bool = l >= 0 - yyj2045++ - if yyhl2045 { - yyb2045 = yyj2045 > l + var yyj2064 int + var yyb2064 bool + var yyhl2064 bool = l >= 0 + yyj2064++ + if yyhl2064 { + yyb2064 = yyj2064 > l } else { - yyb2045 = r.CheckBreak() + yyb2064 = r.CheckBreak() } - if yyb2045 { + if yyb2064 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26475,13 +26748,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2045++ - if yyhl2045 { - yyb2045 = yyj2045 > l + yyj2064++ + if yyhl2064 { + yyb2064 = yyj2064 > l } else { - yyb2045 = r.CheckBreak() + yyb2064 = r.CheckBreak() } - if yyb2045 { + if yyb2064 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26491,13 +26764,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2045++ - if yyhl2045 { - yyb2045 = yyj2045 > l + yyj2064++ + if yyhl2064 { + yyb2064 = yyj2064 > l } else { - yyb2045 = r.CheckBreak() + yyb2064 = r.CheckBreak() } - if yyb2045 { + if yyb2064 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26505,22 +26778,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2048 := &x.ListMeta - yym2049 := z.DecBinary() - _ = yym2049 + yyv2067 := &x.ListMeta + yym2068 := z.DecBinary() + _ = yym2068 if false { - } else if z.HasExtensions() && z.DecExt(yyv2048) { + } else if z.HasExtensions() && z.DecExt(yyv2067) { } else { - z.DecFallback(yyv2048, false) + z.DecFallback(yyv2067, false) } } - yyj2045++ - if yyhl2045 { - yyb2045 = yyj2045 > l + yyj2064++ + if yyhl2064 { + yyb2064 = yyj2064 > l } else { - yyb2045 = r.CheckBreak() + yyb2064 = r.CheckBreak() } - if yyb2045 { + if yyb2064 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26528,26 +26801,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2050 := &x.Items - yym2051 := z.DecBinary() - _ = yym2051 + yyv2069 := &x.Items + yym2070 := z.DecBinary() + _ = yym2070 if false { } else { - h.decSliceService((*[]Service)(yyv2050), d) + h.decSliceService((*[]Service)(yyv2069), d) } } for { - yyj2045++ - if yyhl2045 { - yyb2045 = yyj2045 > l + yyj2064++ + if yyhl2064 { + yyb2064 = yyj2064 > l } else { - yyb2045 = r.CheckBreak() + yyb2064 = r.CheckBreak() } - if yyb2045 { + if yyb2064 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2045-1, "") + z.DecStructFieldNotFound(yyj2064-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26559,39 +26832,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2052 := z.EncBinary() - _ = yym2052 + yym2071 := z.EncBinary() + _ = yym2071 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2053 := !z.EncBinary() - yy2arr2053 := z.EncBasicHandle().StructToArray - var yyq2053 [5]bool - _, _, _ = yysep2053, yyq2053, yy2arr2053 - const yyr2053 bool = false - yyq2053[0] = x.Kind != "" - yyq2053[1] = x.APIVersion != "" - yyq2053[2] = true - yyq2053[3] = len(x.Secrets) != 0 - yyq2053[4] = len(x.ImagePullSecrets) != 0 - var yynn2053 int - if yyr2053 || yy2arr2053 { + yysep2072 := !z.EncBinary() + yy2arr2072 := z.EncBasicHandle().StructToArray + var yyq2072 [5]bool + _, _, _ = yysep2072, yyq2072, yy2arr2072 + const yyr2072 bool = false + yyq2072[0] = x.Kind != "" + yyq2072[1] = x.APIVersion != "" + yyq2072[2] = true + yyq2072[3] = len(x.Secrets) != 0 + yyq2072[4] = len(x.ImagePullSecrets) != 0 + var yynn2072 int + if yyr2072 || yy2arr2072 { r.EncodeArrayStart(5) } else { - yynn2053 = 0 - for _, b := range yyq2053 { + yynn2072 = 0 + for _, b := range yyq2072 { if b { - yynn2053++ + yynn2072++ } } - r.EncodeMapStart(yynn2053) - yynn2053 = 0 + r.EncodeMapStart(yynn2072) + yynn2072 = 0 } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[0] { - yym2055 := z.EncBinary() - _ = yym2055 + if yyq2072[0] { + yym2074 := z.EncBinary() + _ = yym2074 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26600,23 +26873,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2053[0] { + if yyq2072[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2056 := z.EncBinary() - _ = yym2056 + yym2075 := z.EncBinary() + _ = yym2075 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[1] { - yym2058 := z.EncBinary() - _ = yym2058 + if yyq2072[1] { + yym2077 := z.EncBinary() + _ = yym2077 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26625,43 +26898,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2053[1] { + if yyq2072[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2059 := z.EncBinary() - _ = yym2059 + yym2078 := z.EncBinary() + _ = yym2078 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[2] { - yy2061 := &x.ObjectMeta - yy2061.CodecEncodeSelf(e) + if yyq2072[2] { + yy2080 := &x.ObjectMeta + yy2080.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2053[2] { + if yyq2072[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2062 := &x.ObjectMeta - yy2062.CodecEncodeSelf(e) + yy2081 := &x.ObjectMeta + yy2081.CodecEncodeSelf(e) } } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[3] { + if yyq2072[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2064 := z.EncBinary() - _ = yym2064 + yym2083 := z.EncBinary() + _ = yym2083 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -26671,15 +26944,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2053[3] { + if yyq2072[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2065 := z.EncBinary() - _ = yym2065 + yym2084 := z.EncBinary() + _ = yym2084 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -26687,14 +26960,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[4] { + if yyq2072[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2067 := z.EncBinary() - _ = yym2067 + yym2086 := z.EncBinary() + _ = yym2086 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26704,15 +26977,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2053[4] { + if yyq2072[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2068 := z.EncBinary() - _ = yym2068 + yym2087 := z.EncBinary() + _ = yym2087 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26720,7 +26993,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2053 || yy2arr2053 { + if yyr2072 || yy2arr2072 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26733,25 +27006,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2069 := z.DecBinary() - _ = yym2069 + yym2088 := z.DecBinary() + _ = yym2088 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2070 := r.ContainerType() - if yyct2070 == codecSelferValueTypeMap1234 { - yyl2070 := r.ReadMapStart() - if yyl2070 == 0 { + yyct2089 := r.ContainerType() + if yyct2089 == codecSelferValueTypeMap1234 { + yyl2089 := r.ReadMapStart() + if yyl2089 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2070, d) + x.codecDecodeSelfFromMap(yyl2089, d) } - } else if yyct2070 == codecSelferValueTypeArray1234 { - yyl2070 := r.ReadArrayStart() - if yyl2070 == 0 { + } else if yyct2089 == codecSelferValueTypeArray1234 { + yyl2089 := r.ReadArrayStart() + if yyl2089 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2070, d) + x.codecDecodeSelfFromArray(yyl2089, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26763,12 +27036,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2071Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2071Slc - var yyhl2071 bool = l >= 0 - for yyj2071 := 0; ; yyj2071++ { - if yyhl2071 { - if yyj2071 >= l { + var yys2090Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2090Slc + var yyhl2090 bool = l >= 0 + for yyj2090 := 0; ; yyj2090++ { + if yyhl2090 { + if yyj2090 >= l { break } } else { @@ -26777,10 +27050,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2071Slc = r.DecodeBytes(yys2071Slc, true, true) - yys2071 := string(yys2071Slc) + yys2090Slc = r.DecodeBytes(yys2090Slc, true, true) + yys2090 := string(yys2090Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2071 { + switch yys2090 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26797,37 +27070,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2074 := &x.ObjectMeta - yyv2074.CodecDecodeSelf(d) + yyv2093 := &x.ObjectMeta + yyv2093.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2075 := &x.Secrets - yym2076 := z.DecBinary() - _ = yym2076 + yyv2094 := &x.Secrets + yym2095 := z.DecBinary() + _ = yym2095 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2075), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2094), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2077 := &x.ImagePullSecrets - yym2078 := z.DecBinary() - _ = yym2078 + yyv2096 := &x.ImagePullSecrets + yym2097 := z.DecBinary() + _ = yym2097 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2077), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2096), d) } } default: - z.DecStructFieldNotFound(-1, yys2071) - } // end switch yys2071 - } // end for yyj2071 + z.DecStructFieldNotFound(-1, yys2090) + } // end switch yys2090 + } // end for yyj2090 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26835,16 +27108,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2079 int - var yyb2079 bool - var yyhl2079 bool = l >= 0 - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + var yyj2098 int + var yyb2098 bool + var yyhl2098 bool = l >= 0 + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26854,13 +27127,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26870,13 +27143,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26884,16 +27157,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2082 := &x.ObjectMeta - yyv2082.CodecDecodeSelf(d) + yyv2101 := &x.ObjectMeta + yyv2101.CodecDecodeSelf(d) } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26901,21 +27174,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2083 := &x.Secrets - yym2084 := z.DecBinary() - _ = yym2084 + yyv2102 := &x.Secrets + yym2103 := z.DecBinary() + _ = yym2103 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2083), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2102), d) } } - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26923,26 +27196,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2085 := &x.ImagePullSecrets - yym2086 := z.DecBinary() - _ = yym2086 + yyv2104 := &x.ImagePullSecrets + yym2105 := z.DecBinary() + _ = yym2105 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2085), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2104), d) } } for { - yyj2079++ - if yyhl2079 { - yyb2079 = yyj2079 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2079 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2079 { + if yyb2098 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2079-1, "") + z.DecStructFieldNotFound(yyj2098-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26954,37 +27227,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2087 := z.EncBinary() - _ = yym2087 + yym2106 := z.EncBinary() + _ = yym2106 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2088 := !z.EncBinary() - yy2arr2088 := z.EncBasicHandle().StructToArray - var yyq2088 [4]bool - _, _, _ = yysep2088, yyq2088, yy2arr2088 - const yyr2088 bool = false - yyq2088[0] = x.Kind != "" - yyq2088[1] = x.APIVersion != "" - yyq2088[2] = true - var yynn2088 int - if yyr2088 || yy2arr2088 { + yysep2107 := !z.EncBinary() + yy2arr2107 := z.EncBasicHandle().StructToArray + var yyq2107 [4]bool + _, _, _ = yysep2107, yyq2107, yy2arr2107 + const yyr2107 bool = false + yyq2107[0] = x.Kind != "" + yyq2107[1] = x.APIVersion != "" + yyq2107[2] = true + var yynn2107 int + if yyr2107 || yy2arr2107 { r.EncodeArrayStart(4) } else { - yynn2088 = 1 - for _, b := range yyq2088 { + yynn2107 = 1 + for _, b := range yyq2107 { if b { - yynn2088++ + yynn2107++ } } - r.EncodeMapStart(yynn2088) - yynn2088 = 0 + r.EncodeMapStart(yynn2107) + yynn2107 = 0 } - if yyr2088 || yy2arr2088 { + if yyr2107 || yy2arr2107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2088[0] { - yym2090 := z.EncBinary() - _ = yym2090 + if yyq2107[0] { + yym2109 := z.EncBinary() + _ = yym2109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26993,23 +27266,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2088[0] { + if yyq2107[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2091 := z.EncBinary() - _ = yym2091 + yym2110 := z.EncBinary() + _ = yym2110 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2088 || yy2arr2088 { + if yyr2107 || yy2arr2107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2088[1] { - yym2093 := z.EncBinary() - _ = yym2093 + if yyq2107[1] { + yym2112 := z.EncBinary() + _ = yym2112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27018,54 +27291,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2088[1] { + if yyq2107[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2094 := z.EncBinary() - _ = yym2094 + yym2113 := z.EncBinary() + _ = yym2113 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2088 || yy2arr2088 { + if yyr2107 || yy2arr2107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2088[2] { - yy2096 := &x.ListMeta - yym2097 := z.EncBinary() - _ = yym2097 + if yyq2107[2] { + yy2115 := &x.ListMeta + yym2116 := z.EncBinary() + _ = yym2116 if false { - } else if z.HasExtensions() && z.EncExt(yy2096) { + } else if z.HasExtensions() && z.EncExt(yy2115) { } else { - z.EncFallback(yy2096) + z.EncFallback(yy2115) } } else { r.EncodeNil() } } else { - if yyq2088[2] { + if yyq2107[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2098 := &x.ListMeta - yym2099 := z.EncBinary() - _ = yym2099 + yy2117 := &x.ListMeta + yym2118 := z.EncBinary() + _ = yym2118 if false { - } else if z.HasExtensions() && z.EncExt(yy2098) { + } else if z.HasExtensions() && z.EncExt(yy2117) { } else { - z.EncFallback(yy2098) + z.EncFallback(yy2117) } } } - if yyr2088 || yy2arr2088 { + if yyr2107 || yy2arr2107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2101 := z.EncBinary() - _ = yym2101 + yym2120 := z.EncBinary() + _ = yym2120 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -27078,15 +27351,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2102 := z.EncBinary() - _ = yym2102 + yym2121 := z.EncBinary() + _ = yym2121 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2088 || yy2arr2088 { + if yyr2107 || yy2arr2107 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27099,25 +27372,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2103 := z.DecBinary() - _ = yym2103 + yym2122 := z.DecBinary() + _ = yym2122 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2104 := r.ContainerType() - if yyct2104 == codecSelferValueTypeMap1234 { - yyl2104 := r.ReadMapStart() - if yyl2104 == 0 { + yyct2123 := r.ContainerType() + if yyct2123 == codecSelferValueTypeMap1234 { + yyl2123 := r.ReadMapStart() + if yyl2123 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2104, d) + x.codecDecodeSelfFromMap(yyl2123, d) } - } else if yyct2104 == codecSelferValueTypeArray1234 { - yyl2104 := r.ReadArrayStart() - if yyl2104 == 0 { + } else if yyct2123 == codecSelferValueTypeArray1234 { + yyl2123 := r.ReadArrayStart() + if yyl2123 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2104, d) + x.codecDecodeSelfFromArray(yyl2123, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27129,12 +27402,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2105Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2105Slc - var yyhl2105 bool = l >= 0 - for yyj2105 := 0; ; yyj2105++ { - if yyhl2105 { - if yyj2105 >= l { + var yys2124Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2124Slc + var yyhl2124 bool = l >= 0 + for yyj2124 := 0; ; yyj2124++ { + if yyhl2124 { + if yyj2124 >= l { break } } else { @@ -27143,10 +27416,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2105Slc = r.DecodeBytes(yys2105Slc, true, true) - yys2105 := string(yys2105Slc) + yys2124Slc = r.DecodeBytes(yys2124Slc, true, true) + yys2124 := string(yys2124Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2105 { + switch yys2124 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27163,31 +27436,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2108 := &x.ListMeta - yym2109 := z.DecBinary() - _ = yym2109 + yyv2127 := &x.ListMeta + yym2128 := z.DecBinary() + _ = yym2128 if false { - } else if z.HasExtensions() && z.DecExt(yyv2108) { + } else if z.HasExtensions() && z.DecExt(yyv2127) { } else { - z.DecFallback(yyv2108, false) + z.DecFallback(yyv2127, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2110 := &x.Items - yym2111 := z.DecBinary() - _ = yym2111 + yyv2129 := &x.Items + yym2130 := z.DecBinary() + _ = yym2130 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2110), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2129), d) } } default: - z.DecStructFieldNotFound(-1, yys2105) - } // end switch yys2105 - } // end for yyj2105 + z.DecStructFieldNotFound(-1, yys2124) + } // end switch yys2124 + } // end for yyj2124 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27195,16 +27468,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2112 int - var yyb2112 bool - var yyhl2112 bool = l >= 0 - yyj2112++ - if yyhl2112 { - yyb2112 = yyj2112 > l + var yyj2131 int + var yyb2131 bool + var yyhl2131 bool = l >= 0 + yyj2131++ + if yyhl2131 { + yyb2131 = yyj2131 > l } else { - yyb2112 = r.CheckBreak() + yyb2131 = r.CheckBreak() } - if yyb2112 { + if yyb2131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27214,13 +27487,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2112++ - if yyhl2112 { - yyb2112 = yyj2112 > l + yyj2131++ + if yyhl2131 { + yyb2131 = yyj2131 > l } else { - yyb2112 = r.CheckBreak() + yyb2131 = r.CheckBreak() } - if yyb2112 { + if yyb2131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27230,13 +27503,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2112++ - if yyhl2112 { - yyb2112 = yyj2112 > l + yyj2131++ + if yyhl2131 { + yyb2131 = yyj2131 > l } else { - yyb2112 = r.CheckBreak() + yyb2131 = r.CheckBreak() } - if yyb2112 { + if yyb2131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27244,22 +27517,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2115 := &x.ListMeta - yym2116 := z.DecBinary() - _ = yym2116 + yyv2134 := &x.ListMeta + yym2135 := z.DecBinary() + _ = yym2135 if false { - } else if z.HasExtensions() && z.DecExt(yyv2115) { + } else if z.HasExtensions() && z.DecExt(yyv2134) { } else { - z.DecFallback(yyv2115, false) + z.DecFallback(yyv2134, false) } } - yyj2112++ - if yyhl2112 { - yyb2112 = yyj2112 > l + yyj2131++ + if yyhl2131 { + yyb2131 = yyj2131 > l } else { - yyb2112 = r.CheckBreak() + yyb2131 = r.CheckBreak() } - if yyb2112 { + if yyb2131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27267,26 +27540,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2117 := &x.Items - yym2118 := z.DecBinary() - _ = yym2118 + yyv2136 := &x.Items + yym2137 := z.DecBinary() + _ = yym2137 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2117), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2136), d) } } for { - yyj2112++ - if yyhl2112 { - yyb2112 = yyj2112 > l + yyj2131++ + if yyhl2131 { + yyb2131 = yyj2131 > l } else { - yyb2112 = r.CheckBreak() + yyb2131 = r.CheckBreak() } - if yyb2112 { + if yyb2131 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2112-1, "") + z.DecStructFieldNotFound(yyj2131-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27298,37 +27571,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2119 := z.EncBinary() - _ = yym2119 + yym2138 := z.EncBinary() + _ = yym2138 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2120 := !z.EncBinary() - yy2arr2120 := z.EncBasicHandle().StructToArray - var yyq2120 [4]bool - _, _, _ = yysep2120, yyq2120, yy2arr2120 - const yyr2120 bool = false - yyq2120[0] = x.Kind != "" - yyq2120[1] = x.APIVersion != "" - yyq2120[2] = true - var yynn2120 int - if yyr2120 || yy2arr2120 { + yysep2139 := !z.EncBinary() + yy2arr2139 := z.EncBasicHandle().StructToArray + var yyq2139 [4]bool + _, _, _ = yysep2139, yyq2139, yy2arr2139 + const yyr2139 bool = false + yyq2139[0] = x.Kind != "" + yyq2139[1] = x.APIVersion != "" + yyq2139[2] = true + var yynn2139 int + if yyr2139 || yy2arr2139 { r.EncodeArrayStart(4) } else { - yynn2120 = 1 - for _, b := range yyq2120 { + yynn2139 = 1 + for _, b := range yyq2139 { if b { - yynn2120++ + yynn2139++ } } - r.EncodeMapStart(yynn2120) - yynn2120 = 0 + r.EncodeMapStart(yynn2139) + yynn2139 = 0 } - if yyr2120 || yy2arr2120 { + if yyr2139 || yy2arr2139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2120[0] { - yym2122 := z.EncBinary() - _ = yym2122 + if yyq2139[0] { + yym2141 := z.EncBinary() + _ = yym2141 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27337,23 +27610,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2120[0] { + if yyq2139[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2123 := z.EncBinary() - _ = yym2123 + yym2142 := z.EncBinary() + _ = yym2142 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2120 || yy2arr2120 { + if yyr2139 || yy2arr2139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2120[1] { - yym2125 := z.EncBinary() - _ = yym2125 + if yyq2139[1] { + yym2144 := z.EncBinary() + _ = yym2144 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27362,42 +27635,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2120[1] { + if yyq2139[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2126 := z.EncBinary() - _ = yym2126 + yym2145 := z.EncBinary() + _ = yym2145 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2120 || yy2arr2120 { + if yyr2139 || yy2arr2139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2120[2] { - yy2128 := &x.ObjectMeta - yy2128.CodecEncodeSelf(e) + if yyq2139[2] { + yy2147 := &x.ObjectMeta + yy2147.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2120[2] { + if yyq2139[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2129 := &x.ObjectMeta - yy2129.CodecEncodeSelf(e) + yy2148 := &x.ObjectMeta + yy2148.CodecEncodeSelf(e) } } - if yyr2120 || yy2arr2120 { + if yyr2139 || yy2arr2139 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2131 := z.EncBinary() - _ = yym2131 + yym2150 := z.EncBinary() + _ = yym2150 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -27410,15 +27683,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2132 := z.EncBinary() - _ = yym2132 + yym2151 := z.EncBinary() + _ = yym2151 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2120 || yy2arr2120 { + if yyr2139 || yy2arr2139 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27431,25 +27704,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2133 := z.DecBinary() - _ = yym2133 + yym2152 := z.DecBinary() + _ = yym2152 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2134 := r.ContainerType() - if yyct2134 == codecSelferValueTypeMap1234 { - yyl2134 := r.ReadMapStart() - if yyl2134 == 0 { + yyct2153 := r.ContainerType() + if yyct2153 == codecSelferValueTypeMap1234 { + yyl2153 := r.ReadMapStart() + if yyl2153 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2134, d) + x.codecDecodeSelfFromMap(yyl2153, d) } - } else if yyct2134 == codecSelferValueTypeArray1234 { - yyl2134 := r.ReadArrayStart() - if yyl2134 == 0 { + } else if yyct2153 == codecSelferValueTypeArray1234 { + yyl2153 := r.ReadArrayStart() + if yyl2153 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2134, d) + x.codecDecodeSelfFromArray(yyl2153, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27461,12 +27734,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2135Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2135Slc - var yyhl2135 bool = l >= 0 - for yyj2135 := 0; ; yyj2135++ { - if yyhl2135 { - if yyj2135 >= l { + var yys2154Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2154Slc + var yyhl2154 bool = l >= 0 + for yyj2154 := 0; ; yyj2154++ { + if yyhl2154 { + if yyj2154 >= l { break } } else { @@ -27475,10 +27748,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2135Slc = r.DecodeBytes(yys2135Slc, true, true) - yys2135 := string(yys2135Slc) + yys2154Slc = r.DecodeBytes(yys2154Slc, true, true) + yys2154 := string(yys2154Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2135 { + switch yys2154 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27495,25 +27768,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2138 := &x.ObjectMeta - yyv2138.CodecDecodeSelf(d) + yyv2157 := &x.ObjectMeta + yyv2157.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2139 := &x.Subsets - yym2140 := z.DecBinary() - _ = yym2140 + yyv2158 := &x.Subsets + yym2159 := z.DecBinary() + _ = yym2159 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2139), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2158), d) } } default: - z.DecStructFieldNotFound(-1, yys2135) - } // end switch yys2135 - } // end for yyj2135 + z.DecStructFieldNotFound(-1, yys2154) + } // end switch yys2154 + } // end for yyj2154 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27521,16 +27794,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2141 int - var yyb2141 bool - var yyhl2141 bool = l >= 0 - yyj2141++ - if yyhl2141 { - yyb2141 = yyj2141 > l + var yyj2160 int + var yyb2160 bool + var yyhl2160 bool = l >= 0 + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2141 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2141 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27540,13 +27813,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2141++ - if yyhl2141 { - yyb2141 = yyj2141 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2141 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2141 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27556,13 +27829,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2141++ - if yyhl2141 { - yyb2141 = yyj2141 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2141 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2141 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27570,16 +27843,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2144 := &x.ObjectMeta - yyv2144.CodecDecodeSelf(d) + yyv2163 := &x.ObjectMeta + yyv2163.CodecDecodeSelf(d) } - yyj2141++ - if yyhl2141 { - yyb2141 = yyj2141 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2141 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2141 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27587,26 +27860,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2145 := &x.Subsets - yym2146 := z.DecBinary() - _ = yym2146 + yyv2164 := &x.Subsets + yym2165 := z.DecBinary() + _ = yym2165 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2145), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2164), d) } } for { - yyj2141++ - if yyhl2141 { - yyb2141 = yyj2141 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2141 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2141 { + if yyb2160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2141-1, "") + z.DecStructFieldNotFound(yyj2160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27618,40 +27891,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2147 := z.EncBinary() - _ = yym2147 + yym2166 := z.EncBinary() + _ = yym2166 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2148 := !z.EncBinary() - yy2arr2148 := z.EncBasicHandle().StructToArray - var yyq2148 [3]bool - _, _, _ = yysep2148, yyq2148, yy2arr2148 - const yyr2148 bool = false - yyq2148[0] = len(x.Addresses) != 0 - yyq2148[1] = len(x.NotReadyAddresses) != 0 - yyq2148[2] = len(x.Ports) != 0 - var yynn2148 int - if yyr2148 || yy2arr2148 { + yysep2167 := !z.EncBinary() + yy2arr2167 := z.EncBasicHandle().StructToArray + var yyq2167 [3]bool + _, _, _ = yysep2167, yyq2167, yy2arr2167 + const yyr2167 bool = false + yyq2167[0] = len(x.Addresses) != 0 + yyq2167[1] = len(x.NotReadyAddresses) != 0 + yyq2167[2] = len(x.Ports) != 0 + var yynn2167 int + if yyr2167 || yy2arr2167 { r.EncodeArrayStart(3) } else { - yynn2148 = 0 - for _, b := range yyq2148 { + yynn2167 = 0 + for _, b := range yyq2167 { if b { - yynn2148++ + yynn2167++ } } - r.EncodeMapStart(yynn2148) - yynn2148 = 0 + r.EncodeMapStart(yynn2167) + yynn2167 = 0 } - if yyr2148 || yy2arr2148 { + if yyr2167 || yy2arr2167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2148[0] { + if yyq2167[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2150 := z.EncBinary() - _ = yym2150 + yym2169 := z.EncBinary() + _ = yym2169 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -27661,15 +27934,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2148[0] { + if yyq2167[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2151 := z.EncBinary() - _ = yym2151 + yym2170 := z.EncBinary() + _ = yym2170 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -27677,14 +27950,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2148 || yy2arr2148 { + if yyr2167 || yy2arr2167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2148[1] { + if yyq2167[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2153 := z.EncBinary() - _ = yym2153 + yym2172 := z.EncBinary() + _ = yym2172 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27694,15 +27967,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2148[1] { + if yyq2167[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2154 := z.EncBinary() - _ = yym2154 + yym2173 := z.EncBinary() + _ = yym2173 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27710,14 +27983,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2148 || yy2arr2148 { + if yyr2167 || yy2arr2167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2148[2] { + if yyq2167[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2156 := z.EncBinary() - _ = yym2156 + yym2175 := z.EncBinary() + _ = yym2175 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27727,15 +28000,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2148[2] { + if yyq2167[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2157 := z.EncBinary() - _ = yym2157 + yym2176 := z.EncBinary() + _ = yym2176 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27743,7 +28016,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2148 || yy2arr2148 { + if yyr2167 || yy2arr2167 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27756,25 +28029,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2158 := z.DecBinary() - _ = yym2158 + yym2177 := z.DecBinary() + _ = yym2177 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2159 := r.ContainerType() - if yyct2159 == codecSelferValueTypeMap1234 { - yyl2159 := r.ReadMapStart() - if yyl2159 == 0 { + yyct2178 := r.ContainerType() + if yyct2178 == codecSelferValueTypeMap1234 { + yyl2178 := r.ReadMapStart() + if yyl2178 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2159, d) + x.codecDecodeSelfFromMap(yyl2178, d) } - } else if yyct2159 == codecSelferValueTypeArray1234 { - yyl2159 := r.ReadArrayStart() - if yyl2159 == 0 { + } else if yyct2178 == codecSelferValueTypeArray1234 { + yyl2178 := r.ReadArrayStart() + if yyl2178 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2159, d) + x.codecDecodeSelfFromArray(yyl2178, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27786,12 +28059,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2160Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2160Slc - var yyhl2160 bool = l >= 0 - for yyj2160 := 0; ; yyj2160++ { - if yyhl2160 { - if yyj2160 >= l { + var yys2179Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2179Slc + var yyhl2179 bool = l >= 0 + for yyj2179 := 0; ; yyj2179++ { + if yyhl2179 { + if yyj2179 >= l { break } } else { @@ -27800,50 +28073,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2160Slc = r.DecodeBytes(yys2160Slc, true, true) - yys2160 := string(yys2160Slc) + yys2179Slc = r.DecodeBytes(yys2179Slc, true, true) + yys2179 := string(yys2179Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2160 { + switch yys2179 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2161 := &x.Addresses - yym2162 := z.DecBinary() - _ = yym2162 + yyv2180 := &x.Addresses + yym2181 := z.DecBinary() + _ = yym2181 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2161), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2180), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2163 := &x.NotReadyAddresses - yym2164 := z.DecBinary() - _ = yym2164 + yyv2182 := &x.NotReadyAddresses + yym2183 := z.DecBinary() + _ = yym2183 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2163), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2182), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2165 := &x.Ports - yym2166 := z.DecBinary() - _ = yym2166 + yyv2184 := &x.Ports + yym2185 := z.DecBinary() + _ = yym2185 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2165), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2184), d) } } default: - z.DecStructFieldNotFound(-1, yys2160) - } // end switch yys2160 - } // end for yyj2160 + z.DecStructFieldNotFound(-1, yys2179) + } // end switch yys2179 + } // end for yyj2179 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27851,16 +28124,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2167 int - var yyb2167 bool - var yyhl2167 bool = l >= 0 - yyj2167++ - if yyhl2167 { - yyb2167 = yyj2167 > l + var yyj2186 int + var yyb2186 bool + var yyhl2186 bool = l >= 0 + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2167 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2167 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27868,21 +28141,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2168 := &x.Addresses - yym2169 := z.DecBinary() - _ = yym2169 + yyv2187 := &x.Addresses + yym2188 := z.DecBinary() + _ = yym2188 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2168), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2187), d) } } - yyj2167++ - if yyhl2167 { - yyb2167 = yyj2167 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2167 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2167 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27890,21 +28163,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2170 := &x.NotReadyAddresses - yym2171 := z.DecBinary() - _ = yym2171 + yyv2189 := &x.NotReadyAddresses + yym2190 := z.DecBinary() + _ = yym2190 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2170), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2189), d) } } - yyj2167++ - if yyhl2167 { - yyb2167 = yyj2167 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2167 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2167 { + if yyb2186 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27912,26 +28185,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2172 := &x.Ports - yym2173 := z.DecBinary() - _ = yym2173 + yyv2191 := &x.Ports + yym2192 := z.DecBinary() + _ = yym2192 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2172), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2191), d) } } for { - yyj2167++ - if yyhl2167 { - yyb2167 = yyj2167 > l + yyj2186++ + if yyhl2186 { + yyb2186 = yyj2186 > l } else { - yyb2167 = r.CheckBreak() + yyb2186 = r.CheckBreak() } - if yyb2167 { + if yyb2186 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2167-1, "") + z.DecStructFieldNotFound(yyj2186-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27943,34 +28216,34 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2174 := z.EncBinary() - _ = yym2174 + yym2193 := z.EncBinary() + _ = yym2193 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2175 := !z.EncBinary() - yy2arr2175 := z.EncBasicHandle().StructToArray - var yyq2175 [2]bool - _, _, _ = yysep2175, yyq2175, yy2arr2175 - const yyr2175 bool = false - yyq2175[1] = x.TargetRef != nil - var yynn2175 int - if yyr2175 || yy2arr2175 { + yysep2194 := !z.EncBinary() + yy2arr2194 := z.EncBasicHandle().StructToArray + var yyq2194 [2]bool + _, _, _ = yysep2194, yyq2194, yy2arr2194 + const yyr2194 bool = false + yyq2194[1] = x.TargetRef != nil + var yynn2194 int + if yyr2194 || yy2arr2194 { r.EncodeArrayStart(2) } else { - yynn2175 = 1 - for _, b := range yyq2175 { + yynn2194 = 1 + for _, b := range yyq2194 { if b { - yynn2175++ + yynn2194++ } } - r.EncodeMapStart(yynn2175) - yynn2175 = 0 + r.EncodeMapStart(yynn2194) + yynn2194 = 0 } - if yyr2175 || yy2arr2175 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2177 := z.EncBinary() - _ = yym2177 + yym2196 := z.EncBinary() + _ = yym2196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -27979,16 +28252,16 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2178 := z.EncBinary() - _ = yym2178 + yym2197 := z.EncBinary() + _ = yym2197 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2175 || yy2arr2175 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2175[1] { + if yyq2194[1] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -27998,7 +28271,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2175[1] { + if yyq2194[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -28009,7 +28282,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2175 || yy2arr2175 { + if yyr2194 || yy2arr2194 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28022,25 +28295,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2180 := z.DecBinary() - _ = yym2180 + yym2199 := z.DecBinary() + _ = yym2199 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2181 := r.ContainerType() - if yyct2181 == codecSelferValueTypeMap1234 { - yyl2181 := r.ReadMapStart() - if yyl2181 == 0 { + yyct2200 := r.ContainerType() + if yyct2200 == codecSelferValueTypeMap1234 { + yyl2200 := r.ReadMapStart() + if yyl2200 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2181, d) + x.codecDecodeSelfFromMap(yyl2200, d) } - } else if yyct2181 == codecSelferValueTypeArray1234 { - yyl2181 := r.ReadArrayStart() - if yyl2181 == 0 { + } else if yyct2200 == codecSelferValueTypeArray1234 { + yyl2200 := r.ReadArrayStart() + if yyl2200 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2181, d) + x.codecDecodeSelfFromArray(yyl2200, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28052,12 +28325,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2182Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2182Slc - var yyhl2182 bool = l >= 0 - for yyj2182 := 0; ; yyj2182++ { - if yyhl2182 { - if yyj2182 >= l { + var yys2201Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2201Slc + var yyhl2201 bool = l >= 0 + for yyj2201 := 0; ; yyj2201++ { + if yyhl2201 { + if yyj2201 >= l { break } } else { @@ -28066,10 +28339,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2182Slc = r.DecodeBytes(yys2182Slc, true, true) - yys2182 := string(yys2182Slc) + yys2201Slc = r.DecodeBytes(yys2201Slc, true, true) + yys2201 := string(yys2201Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2182 { + switch yys2201 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -28088,9 +28361,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2182) - } // end switch yys2182 - } // end for yyj2182 + z.DecStructFieldNotFound(-1, yys2201) + } // end switch yys2201 + } // end for yyj2201 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28098,16 +28371,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2185 int - var yyb2185 bool - var yyhl2185 bool = l >= 0 - yyj2185++ - if yyhl2185 { - yyb2185 = yyj2185 > l + var yyj2204 int + var yyb2204 bool + var yyhl2204 bool = l >= 0 + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2185 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2185 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28117,13 +28390,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2185++ - if yyhl2185 { - yyb2185 = yyj2185 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2185 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2185 { + if yyb2204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28139,17 +28412,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2185++ - if yyhl2185 { - yyb2185 = yyj2185 > l + yyj2204++ + if yyhl2204 { + yyb2204 = yyj2204 > l } else { - yyb2185 = r.CheckBreak() + yyb2204 = r.CheckBreak() } - if yyb2185 { + if yyb2204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2185-1, "") + z.DecStructFieldNotFound(yyj2204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28161,36 +28434,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2188 := z.EncBinary() - _ = yym2188 + yym2207 := z.EncBinary() + _ = yym2207 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2189 := !z.EncBinary() - yy2arr2189 := z.EncBasicHandle().StructToArray - var yyq2189 [3]bool - _, _, _ = yysep2189, yyq2189, yy2arr2189 - const yyr2189 bool = false - yyq2189[0] = x.Name != "" - yyq2189[2] = x.Protocol != "" - var yynn2189 int - if yyr2189 || yy2arr2189 { + yysep2208 := !z.EncBinary() + yy2arr2208 := z.EncBasicHandle().StructToArray + var yyq2208 [3]bool + _, _, _ = yysep2208, yyq2208, yy2arr2208 + const yyr2208 bool = false + yyq2208[0] = x.Name != "" + yyq2208[2] = x.Protocol != "" + var yynn2208 int + if yyr2208 || yy2arr2208 { r.EncodeArrayStart(3) } else { - yynn2189 = 1 - for _, b := range yyq2189 { + yynn2208 = 1 + for _, b := range yyq2208 { if b { - yynn2189++ + yynn2208++ } } - r.EncodeMapStart(yynn2189) - yynn2189 = 0 + r.EncodeMapStart(yynn2208) + yynn2208 = 0 } - if yyr2189 || yy2arr2189 { + if yyr2208 || yy2arr2208 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[0] { - yym2191 := z.EncBinary() - _ = yym2191 + if yyq2208[0] { + yym2210 := z.EncBinary() + _ = yym2210 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -28199,22 +28472,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2189[0] { + if yyq2208[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2192 := z.EncBinary() - _ = yym2192 + yym2211 := z.EncBinary() + _ = yym2211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2189 || yy2arr2189 { + if yyr2208 || yy2arr2208 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2194 := z.EncBinary() - _ = yym2194 + yym2213 := z.EncBinary() + _ = yym2213 if false { } else { r.EncodeInt(int64(x.Port)) @@ -28223,29 +28496,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2195 := z.EncBinary() - _ = yym2195 + yym2214 := z.EncBinary() + _ = yym2214 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2189 || yy2arr2189 { + if yyr2208 || yy2arr2208 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2189[2] { + if yyq2208[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2189[2] { + if yyq2208[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2189 || yy2arr2189 { + if yyr2208 || yy2arr2208 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28258,25 +28531,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2197 := z.DecBinary() - _ = yym2197 + yym2216 := z.DecBinary() + _ = yym2216 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2198 := r.ContainerType() - if yyct2198 == codecSelferValueTypeMap1234 { - yyl2198 := r.ReadMapStart() - if yyl2198 == 0 { + yyct2217 := r.ContainerType() + if yyct2217 == codecSelferValueTypeMap1234 { + yyl2217 := r.ReadMapStart() + if yyl2217 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2198, d) + x.codecDecodeSelfFromMap(yyl2217, d) } - } else if yyct2198 == codecSelferValueTypeArray1234 { - yyl2198 := r.ReadArrayStart() - if yyl2198 == 0 { + } else if yyct2217 == codecSelferValueTypeArray1234 { + yyl2217 := r.ReadArrayStart() + if yyl2217 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2198, d) + x.codecDecodeSelfFromArray(yyl2217, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28288,12 +28561,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2199Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2199Slc - var yyhl2199 bool = l >= 0 - for yyj2199 := 0; ; yyj2199++ { - if yyhl2199 { - if yyj2199 >= l { + var yys2218Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2218Slc + var yyhl2218 bool = l >= 0 + for yyj2218 := 0; ; yyj2218++ { + if yyhl2218 { + if yyj2218 >= l { break } } else { @@ -28302,10 +28575,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2199Slc = r.DecodeBytes(yys2199Slc, true, true) - yys2199 := string(yys2199Slc) + yys2218Slc = r.DecodeBytes(yys2218Slc, true, true) + yys2218 := string(yys2218Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2199 { + switch yys2218 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -28325,9 +28598,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2199) - } // end switch yys2199 - } // end for yyj2199 + z.DecStructFieldNotFound(-1, yys2218) + } // end switch yys2218 + } // end for yyj2218 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28335,16 +28608,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2203 int - var yyb2203 bool - var yyhl2203 bool = l >= 0 - yyj2203++ - if yyhl2203 { - yyb2203 = yyj2203 > l + var yyj2222 int + var yyb2222 bool + var yyhl2222 bool = l >= 0 + yyj2222++ + if yyhl2222 { + yyb2222 = yyj2222 > l } else { - yyb2203 = r.CheckBreak() + yyb2222 = r.CheckBreak() } - if yyb2203 { + if yyb2222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28354,13 +28627,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2203++ - if yyhl2203 { - yyb2203 = yyj2203 > l + yyj2222++ + if yyhl2222 { + yyb2222 = yyj2222 > l } else { - yyb2203 = r.CheckBreak() + yyb2222 = r.CheckBreak() } - if yyb2203 { + if yyb2222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28370,13 +28643,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2203++ - if yyhl2203 { - yyb2203 = yyj2203 > l + yyj2222++ + if yyhl2222 { + yyb2222 = yyj2222 > l } else { - yyb2203 = r.CheckBreak() + yyb2222 = r.CheckBreak() } - if yyb2203 { + if yyb2222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28387,17 +28660,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2203++ - if yyhl2203 { - yyb2203 = yyj2203 > l + yyj2222++ + if yyhl2222 { + yyb2222 = yyj2222 > l } else { - yyb2203 = r.CheckBreak() + yyb2222 = r.CheckBreak() } - if yyb2203 { + if yyb2222 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2203-1, "") + z.DecStructFieldNotFound(yyj2222-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28409,37 +28682,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2207 := z.EncBinary() - _ = yym2207 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2208 := !z.EncBinary() - yy2arr2208 := z.EncBasicHandle().StructToArray - var yyq2208 [4]bool - _, _, _ = yysep2208, yyq2208, yy2arr2208 - const yyr2208 bool = false - yyq2208[0] = x.Kind != "" - yyq2208[1] = x.APIVersion != "" - yyq2208[2] = true - var yynn2208 int - if yyr2208 || yy2arr2208 { + yysep2227 := !z.EncBinary() + yy2arr2227 := z.EncBasicHandle().StructToArray + var yyq2227 [4]bool + _, _, _ = yysep2227, yyq2227, yy2arr2227 + const yyr2227 bool = false + yyq2227[0] = x.Kind != "" + yyq2227[1] = x.APIVersion != "" + yyq2227[2] = true + var yynn2227 int + if yyr2227 || yy2arr2227 { r.EncodeArrayStart(4) } else { - yynn2208 = 1 - for _, b := range yyq2208 { + yynn2227 = 1 + for _, b := range yyq2227 { if b { - yynn2208++ + yynn2227++ } } - r.EncodeMapStart(yynn2208) - yynn2208 = 0 + r.EncodeMapStart(yynn2227) + yynn2227 = 0 } - if yyr2208 || yy2arr2208 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2208[0] { - yym2210 := z.EncBinary() - _ = yym2210 + if yyq2227[0] { + yym2229 := z.EncBinary() + _ = yym2229 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -28448,23 +28721,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2208[0] { + if yyq2227[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2211 := z.EncBinary() - _ = yym2211 + yym2230 := z.EncBinary() + _ = yym2230 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2208 || yy2arr2208 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2208[1] { - yym2213 := z.EncBinary() - _ = yym2213 + if yyq2227[1] { + yym2232 := z.EncBinary() + _ = yym2232 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -28473,54 +28746,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2208[1] { + if yyq2227[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2214 := z.EncBinary() - _ = yym2214 + yym2233 := z.EncBinary() + _ = yym2233 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2208 || yy2arr2208 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2208[2] { - yy2216 := &x.ListMeta - yym2217 := z.EncBinary() - _ = yym2217 + if yyq2227[2] { + yy2235 := &x.ListMeta + yym2236 := z.EncBinary() + _ = yym2236 if false { - } else if z.HasExtensions() && z.EncExt(yy2216) { + } else if z.HasExtensions() && z.EncExt(yy2235) { } else { - z.EncFallback(yy2216) + z.EncFallback(yy2235) } } else { r.EncodeNil() } } else { - if yyq2208[2] { + if yyq2227[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2218 := &x.ListMeta - yym2219 := z.EncBinary() - _ = yym2219 + yy2237 := &x.ListMeta + yym2238 := z.EncBinary() + _ = yym2238 if false { - } else if z.HasExtensions() && z.EncExt(yy2218) { + } else if z.HasExtensions() && z.EncExt(yy2237) { } else { - z.EncFallback(yy2218) + z.EncFallback(yy2237) } } } - if yyr2208 || yy2arr2208 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2221 := z.EncBinary() - _ = yym2221 + yym2240 := z.EncBinary() + _ = yym2240 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -28533,15 +28806,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2222 := z.EncBinary() - _ = yym2222 + yym2241 := z.EncBinary() + _ = yym2241 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2208 || yy2arr2208 { + if yyr2227 || yy2arr2227 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28554,25 +28827,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2223 := z.DecBinary() - _ = yym2223 + yym2242 := z.DecBinary() + _ = yym2242 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2224 := r.ContainerType() - if yyct2224 == codecSelferValueTypeMap1234 { - yyl2224 := r.ReadMapStart() - if yyl2224 == 0 { + yyct2243 := r.ContainerType() + if yyct2243 == codecSelferValueTypeMap1234 { + yyl2243 := r.ReadMapStart() + if yyl2243 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2224, d) + x.codecDecodeSelfFromMap(yyl2243, d) } - } else if yyct2224 == codecSelferValueTypeArray1234 { - yyl2224 := r.ReadArrayStart() - if yyl2224 == 0 { + } else if yyct2243 == codecSelferValueTypeArray1234 { + yyl2243 := r.ReadArrayStart() + if yyl2243 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2224, d) + x.codecDecodeSelfFromArray(yyl2243, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28584,12 +28857,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2225Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2225Slc - var yyhl2225 bool = l >= 0 - for yyj2225 := 0; ; yyj2225++ { - if yyhl2225 { - if yyj2225 >= l { + var yys2244Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2244Slc + var yyhl2244 bool = l >= 0 + for yyj2244 := 0; ; yyj2244++ { + if yyhl2244 { + if yyj2244 >= l { break } } else { @@ -28598,10 +28871,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2225Slc = r.DecodeBytes(yys2225Slc, true, true) - yys2225 := string(yys2225Slc) + yys2244Slc = r.DecodeBytes(yys2244Slc, true, true) + yys2244 := string(yys2244Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2225 { + switch yys2244 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28618,31 +28891,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2228 := &x.ListMeta - yym2229 := z.DecBinary() - _ = yym2229 + yyv2247 := &x.ListMeta + yym2248 := z.DecBinary() + _ = yym2248 if false { - } else if z.HasExtensions() && z.DecExt(yyv2228) { + } else if z.HasExtensions() && z.DecExt(yyv2247) { } else { - z.DecFallback(yyv2228, false) + z.DecFallback(yyv2247, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2230 := &x.Items - yym2231 := z.DecBinary() - _ = yym2231 + yyv2249 := &x.Items + yym2250 := z.DecBinary() + _ = yym2250 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2230), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2249), d) } } default: - z.DecStructFieldNotFound(-1, yys2225) - } // end switch yys2225 - } // end for yyj2225 + z.DecStructFieldNotFound(-1, yys2244) + } // end switch yys2244 + } // end for yyj2244 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28650,16 +28923,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2232 int - var yyb2232 bool - var yyhl2232 bool = l >= 0 - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + var yyj2251 int + var yyb2251 bool + var yyhl2251 bool = l >= 0 + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2232 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2232 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28669,13 +28942,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2232 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2232 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28685,13 +28958,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2232 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2232 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28699,22 +28972,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2235 := &x.ListMeta - yym2236 := z.DecBinary() - _ = yym2236 + yyv2254 := &x.ListMeta + yym2255 := z.DecBinary() + _ = yym2255 if false { - } else if z.HasExtensions() && z.DecExt(yyv2235) { + } else if z.HasExtensions() && z.DecExt(yyv2254) { } else { - z.DecFallback(yyv2235, false) + z.DecFallback(yyv2254, false) } } - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2232 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2232 { + if yyb2251 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28722,26 +28995,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2237 := &x.Items - yym2238 := z.DecBinary() - _ = yym2238 + yyv2256 := &x.Items + yym2257 := z.DecBinary() + _ = yym2257 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2237), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2256), d) } } for { - yyj2232++ - if yyhl2232 { - yyb2232 = yyj2232 > l + yyj2251++ + if yyhl2251 { + yyb2251 = yyj2251 > l } else { - yyb2232 = r.CheckBreak() + yyb2251 = r.CheckBreak() } - if yyb2232 { + if yyb2251 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2232-1, "") + z.DecStructFieldNotFound(yyj2251-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28753,38 +29026,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2239 := z.EncBinary() - _ = yym2239 + yym2258 := z.EncBinary() + _ = yym2258 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2240 := !z.EncBinary() - yy2arr2240 := z.EncBasicHandle().StructToArray - var yyq2240 [4]bool - _, _, _ = yysep2240, yyq2240, yy2arr2240 - const yyr2240 bool = false - yyq2240[0] = x.PodCIDR != "" - yyq2240[1] = x.ExternalID != "" - yyq2240[2] = x.ProviderID != "" - yyq2240[3] = x.Unschedulable != false - var yynn2240 int - if yyr2240 || yy2arr2240 { + yysep2259 := !z.EncBinary() + yy2arr2259 := z.EncBasicHandle().StructToArray + var yyq2259 [4]bool + _, _, _ = yysep2259, yyq2259, yy2arr2259 + const yyr2259 bool = false + yyq2259[0] = x.PodCIDR != "" + yyq2259[1] = x.ExternalID != "" + yyq2259[2] = x.ProviderID != "" + yyq2259[3] = x.Unschedulable != false + var yynn2259 int + if yyr2259 || yy2arr2259 { r.EncodeArrayStart(4) } else { - yynn2240 = 0 - for _, b := range yyq2240 { + yynn2259 = 0 + for _, b := range yyq2259 { if b { - yynn2240++ + yynn2259++ } } - r.EncodeMapStart(yynn2240) - yynn2240 = 0 + r.EncodeMapStart(yynn2259) + yynn2259 = 0 } - if yyr2240 || yy2arr2240 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2240[0] { - yym2242 := z.EncBinary() - _ = yym2242 + if yyq2259[0] { + yym2261 := z.EncBinary() + _ = yym2261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -28793,23 +29066,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2240[0] { + if yyq2259[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2243 := z.EncBinary() - _ = yym2243 + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2240 || yy2arr2240 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2240[1] { - yym2245 := z.EncBinary() - _ = yym2245 + if yyq2259[1] { + yym2264 := z.EncBinary() + _ = yym2264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -28818,23 +29091,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2240[1] { + if yyq2259[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2246 := z.EncBinary() - _ = yym2246 + yym2265 := z.EncBinary() + _ = yym2265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2240 || yy2arr2240 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2240[2] { - yym2248 := z.EncBinary() - _ = yym2248 + if yyq2259[2] { + yym2267 := z.EncBinary() + _ = yym2267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -28843,23 +29116,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2240[2] { + if yyq2259[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2249 := z.EncBinary() - _ = yym2249 + yym2268 := z.EncBinary() + _ = yym2268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2240 || yy2arr2240 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2240[3] { - yym2251 := z.EncBinary() - _ = yym2251 + if yyq2259[3] { + yym2270 := z.EncBinary() + _ = yym2270 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -28868,19 +29141,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2240[3] { + if yyq2259[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2252 := z.EncBinary() - _ = yym2252 + yym2271 := z.EncBinary() + _ = yym2271 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2240 || yy2arr2240 { + if yyr2259 || yy2arr2259 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28893,25 +29166,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2253 := z.DecBinary() - _ = yym2253 + yym2272 := z.DecBinary() + _ = yym2272 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2254 := r.ContainerType() - if yyct2254 == codecSelferValueTypeMap1234 { - yyl2254 := r.ReadMapStart() - if yyl2254 == 0 { + yyct2273 := r.ContainerType() + if yyct2273 == codecSelferValueTypeMap1234 { + yyl2273 := r.ReadMapStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2254, d) + x.codecDecodeSelfFromMap(yyl2273, d) } - } else if yyct2254 == codecSelferValueTypeArray1234 { - yyl2254 := r.ReadArrayStart() - if yyl2254 == 0 { + } else if yyct2273 == codecSelferValueTypeArray1234 { + yyl2273 := r.ReadArrayStart() + if yyl2273 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2254, d) + x.codecDecodeSelfFromArray(yyl2273, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28923,12 +29196,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2255Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2255Slc - var yyhl2255 bool = l >= 0 - for yyj2255 := 0; ; yyj2255++ { - if yyhl2255 { - if yyj2255 >= l { + var yys2274Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2274Slc + var yyhl2274 bool = l >= 0 + for yyj2274 := 0; ; yyj2274++ { + if yyhl2274 { + if yyj2274 >= l { break } } else { @@ -28937,10 +29210,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2255Slc = r.DecodeBytes(yys2255Slc, true, true) - yys2255 := string(yys2255Slc) + yys2274Slc = r.DecodeBytes(yys2274Slc, true, true) + yys2274 := string(yys2274Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2255 { + switch yys2274 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -28966,9 +29239,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2255) - } // end switch yys2255 - } // end for yyj2255 + z.DecStructFieldNotFound(-1, yys2274) + } // end switch yys2274 + } // end for yyj2274 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28976,16 +29249,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2260 int - var yyb2260 bool - var yyhl2260 bool = l >= 0 - yyj2260++ - if yyhl2260 { - yyb2260 = yyj2260 > l + var yyj2279 int + var yyb2279 bool + var yyhl2279 bool = l >= 0 + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2260 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2260 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28995,13 +29268,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2260++ - if yyhl2260 { - yyb2260 = yyj2260 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2260 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2260 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29011,13 +29284,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2260++ - if yyhl2260 { - yyb2260 = yyj2260 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2260 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2260 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29027,13 +29300,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2260++ - if yyhl2260 { - yyb2260 = yyj2260 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2260 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2260 { + if yyb2279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29044,17 +29317,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2260++ - if yyhl2260 { - yyb2260 = yyj2260 > l + yyj2279++ + if yyhl2279 { + yyb2279 = yyj2279 > l } else { - yyb2260 = r.CheckBreak() + yyb2279 = r.CheckBreak() } - if yyb2260 { + if yyb2279 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2260-1, "") + z.DecStructFieldNotFound(yyj2279-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29066,33 +29339,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2265 := z.EncBinary() - _ = yym2265 + yym2284 := z.EncBinary() + _ = yym2284 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2266 := !z.EncBinary() - yy2arr2266 := z.EncBasicHandle().StructToArray - var yyq2266 [1]bool - _, _, _ = yysep2266, yyq2266, yy2arr2266 - const yyr2266 bool = false - var yynn2266 int - if yyr2266 || yy2arr2266 { + yysep2285 := !z.EncBinary() + yy2arr2285 := z.EncBasicHandle().StructToArray + var yyq2285 [1]bool + _, _, _ = yysep2285, yyq2285, yy2arr2285 + const yyr2285 bool = false + var yynn2285 int + if yyr2285 || yy2arr2285 { r.EncodeArrayStart(1) } else { - yynn2266 = 1 - for _, b := range yyq2266 { + yynn2285 = 1 + for _, b := range yyq2285 { if b { - yynn2266++ + yynn2285++ } } - r.EncodeMapStart(yynn2266) - yynn2266 = 0 + r.EncodeMapStart(yynn2285) + yynn2285 = 0 } - if yyr2266 || yy2arr2266 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2268 := z.EncBinary() - _ = yym2268 + yym2287 := z.EncBinary() + _ = yym2287 if false { } else { r.EncodeInt(int64(x.Port)) @@ -29101,14 +29374,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2269 := z.EncBinary() - _ = yym2269 + yym2288 := z.EncBinary() + _ = yym2288 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2266 || yy2arr2266 { + if yyr2285 || yy2arr2285 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29121,25 +29394,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2270 := z.DecBinary() - _ = yym2270 + yym2289 := z.DecBinary() + _ = yym2289 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2271 := r.ContainerType() - if yyct2271 == codecSelferValueTypeMap1234 { - yyl2271 := r.ReadMapStart() - if yyl2271 == 0 { + yyct2290 := r.ContainerType() + if yyct2290 == codecSelferValueTypeMap1234 { + yyl2290 := r.ReadMapStart() + if yyl2290 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2271, d) + x.codecDecodeSelfFromMap(yyl2290, d) } - } else if yyct2271 == codecSelferValueTypeArray1234 { - yyl2271 := r.ReadArrayStart() - if yyl2271 == 0 { + } else if yyct2290 == codecSelferValueTypeArray1234 { + yyl2290 := r.ReadArrayStart() + if yyl2290 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2271, d) + x.codecDecodeSelfFromArray(yyl2290, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29151,12 +29424,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2272Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2272Slc - var yyhl2272 bool = l >= 0 - for yyj2272 := 0; ; yyj2272++ { - if yyhl2272 { - if yyj2272 >= l { + var yys2291Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2291Slc + var yyhl2291 bool = l >= 0 + for yyj2291 := 0; ; yyj2291++ { + if yyhl2291 { + if yyj2291 >= l { break } } else { @@ -29165,10 +29438,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2272Slc = r.DecodeBytes(yys2272Slc, true, true) - yys2272 := string(yys2272Slc) + yys2291Slc = r.DecodeBytes(yys2291Slc, true, true) + yys2291 := string(yys2291Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2272 { + switch yys2291 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -29176,9 +29449,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2272) - } // end switch yys2272 - } // end for yyj2272 + z.DecStructFieldNotFound(-1, yys2291) + } // end switch yys2291 + } // end for yyj2291 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29186,16 +29459,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2274 int - var yyb2274 bool - var yyhl2274 bool = l >= 0 - yyj2274++ - if yyhl2274 { - yyb2274 = yyj2274 > l + var yyj2293 int + var yyb2293 bool + var yyhl2293 bool = l >= 0 + yyj2293++ + if yyhl2293 { + yyb2293 = yyj2293 > l } else { - yyb2274 = r.CheckBreak() + yyb2293 = r.CheckBreak() } - if yyb2274 { + if yyb2293 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29206,17 +29479,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2274++ - if yyhl2274 { - yyb2274 = yyj2274 > l + yyj2293++ + if yyhl2293 { + yyb2293 = yyj2293 > l } else { - yyb2274 = r.CheckBreak() + yyb2293 = r.CheckBreak() } - if yyb2274 { + if yyb2293 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2274-1, "") + z.DecStructFieldNotFound(yyj2293-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29228,48 +29501,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2276 := z.EncBinary() - _ = yym2276 + yym2295 := z.EncBinary() + _ = yym2295 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2277 := !z.EncBinary() - yy2arr2277 := z.EncBasicHandle().StructToArray - var yyq2277 [1]bool - _, _, _ = yysep2277, yyq2277, yy2arr2277 - const yyr2277 bool = false - yyq2277[0] = true - var yynn2277 int - if yyr2277 || yy2arr2277 { + yysep2296 := !z.EncBinary() + yy2arr2296 := z.EncBasicHandle().StructToArray + var yyq2296 [1]bool + _, _, _ = yysep2296, yyq2296, yy2arr2296 + const yyr2296 bool = false + yyq2296[0] = true + var yynn2296 int + if yyr2296 || yy2arr2296 { r.EncodeArrayStart(1) } else { - yynn2277 = 0 - for _, b := range yyq2277 { + yynn2296 = 0 + for _, b := range yyq2296 { if b { - yynn2277++ + yynn2296++ } } - r.EncodeMapStart(yynn2277) - yynn2277 = 0 + r.EncodeMapStart(yynn2296) + yynn2296 = 0 } - if yyr2277 || yy2arr2277 { + if yyr2296 || yy2arr2296 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2277[0] { - yy2279 := &x.KubeletEndpoint - yy2279.CodecEncodeSelf(e) + if yyq2296[0] { + yy2298 := &x.KubeletEndpoint + yy2298.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2277[0] { + if yyq2296[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2280 := &x.KubeletEndpoint - yy2280.CodecEncodeSelf(e) + yy2299 := &x.KubeletEndpoint + yy2299.CodecEncodeSelf(e) } } - if yyr2277 || yy2arr2277 { + if yyr2296 || yy2arr2296 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29282,25 +29555,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2281 := z.DecBinary() - _ = yym2281 + yym2300 := z.DecBinary() + _ = yym2300 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2282 := r.ContainerType() - if yyct2282 == codecSelferValueTypeMap1234 { - yyl2282 := r.ReadMapStart() - if yyl2282 == 0 { + yyct2301 := r.ContainerType() + if yyct2301 == codecSelferValueTypeMap1234 { + yyl2301 := r.ReadMapStart() + if yyl2301 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2282, d) + x.codecDecodeSelfFromMap(yyl2301, d) } - } else if yyct2282 == codecSelferValueTypeArray1234 { - yyl2282 := r.ReadArrayStart() - if yyl2282 == 0 { + } else if yyct2301 == codecSelferValueTypeArray1234 { + yyl2301 := r.ReadArrayStart() + if yyl2301 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2282, d) + x.codecDecodeSelfFromArray(yyl2301, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29312,12 +29585,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2283Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2283Slc - var yyhl2283 bool = l >= 0 - for yyj2283 := 0; ; yyj2283++ { - if yyhl2283 { - if yyj2283 >= l { + var yys2302Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2302Slc + var yyhl2302 bool = l >= 0 + for yyj2302 := 0; ; yyj2302++ { + if yyhl2302 { + if yyj2302 >= l { break } } else { @@ -29326,21 +29599,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2283Slc = r.DecodeBytes(yys2283Slc, true, true) - yys2283 := string(yys2283Slc) + yys2302Slc = r.DecodeBytes(yys2302Slc, true, true) + yys2302 := string(yys2302Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2283 { + switch yys2302 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2284 := &x.KubeletEndpoint - yyv2284.CodecDecodeSelf(d) + yyv2303 := &x.KubeletEndpoint + yyv2303.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2283) - } // end switch yys2283 - } // end for yyj2283 + z.DecStructFieldNotFound(-1, yys2302) + } // end switch yys2302 + } // end for yyj2302 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29348,16 +29621,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2285 int - var yyb2285 bool - var yyhl2285 bool = l >= 0 - yyj2285++ - if yyhl2285 { - yyb2285 = yyj2285 > l + var yyj2304 int + var yyb2304 bool + var yyhl2304 bool = l >= 0 + yyj2304++ + if yyhl2304 { + yyb2304 = yyj2304 > l } else { - yyb2285 = r.CheckBreak() + yyb2304 = r.CheckBreak() } - if yyb2285 { + if yyb2304 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29365,21 +29638,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2286 := &x.KubeletEndpoint - yyv2286.CodecDecodeSelf(d) + yyv2305 := &x.KubeletEndpoint + yyv2305.CodecDecodeSelf(d) } for { - yyj2285++ - if yyhl2285 { - yyb2285 = yyj2285 > l + yyj2304++ + if yyhl2304 { + yyb2304 = yyj2304 > l } else { - yyb2285 = r.CheckBreak() + yyb2304 = r.CheckBreak() } - if yyb2285 { + if yyb2304 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2285-1, "") + z.DecStructFieldNotFound(yyj2304-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29391,33 +29664,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2287 := z.EncBinary() - _ = yym2287 + yym2306 := z.EncBinary() + _ = yym2306 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2288 := !z.EncBinary() - yy2arr2288 := z.EncBasicHandle().StructToArray - var yyq2288 [8]bool - _, _, _ = yysep2288, yyq2288, yy2arr2288 - const yyr2288 bool = false - var yynn2288 int - if yyr2288 || yy2arr2288 { + yysep2307 := !z.EncBinary() + yy2arr2307 := z.EncBasicHandle().StructToArray + var yyq2307 [8]bool + _, _, _ = yysep2307, yyq2307, yy2arr2307 + const yyr2307 bool = false + var yynn2307 int + if yyr2307 || yy2arr2307 { r.EncodeArrayStart(8) } else { - yynn2288 = 8 - for _, b := range yyq2288 { + yynn2307 = 8 + for _, b := range yyq2307 { if b { - yynn2288++ + yynn2307++ } } - r.EncodeMapStart(yynn2288) - yynn2288 = 0 + r.EncodeMapStart(yynn2307) + yynn2307 = 0 } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2290 := z.EncBinary() - _ = yym2290 + yym2309 := z.EncBinary() + _ = yym2309 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -29426,17 +29699,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2291 := z.EncBinary() - _ = yym2291 + yym2310 := z.EncBinary() + _ = yym2310 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2293 := z.EncBinary() - _ = yym2293 + yym2312 := z.EncBinary() + _ = yym2312 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -29445,17 +29718,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2294 := z.EncBinary() - _ = yym2294 + yym2313 := z.EncBinary() + _ = yym2313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2296 := z.EncBinary() - _ = yym2296 + yym2315 := z.EncBinary() + _ = yym2315 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -29464,17 +29737,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2297 := z.EncBinary() - _ = yym2297 + yym2316 := z.EncBinary() + _ = yym2316 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2299 := z.EncBinary() - _ = yym2299 + yym2318 := z.EncBinary() + _ = yym2318 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -29483,17 +29756,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2300 := z.EncBinary() - _ = yym2300 + yym2319 := z.EncBinary() + _ = yym2319 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2302 := z.EncBinary() - _ = yym2302 + yym2321 := z.EncBinary() + _ = yym2321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -29502,17 +29775,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2303 := z.EncBinary() - _ = yym2303 + yym2322 := z.EncBinary() + _ = yym2322 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2305 := z.EncBinary() - _ = yym2305 + yym2324 := z.EncBinary() + _ = yym2324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -29521,17 +29794,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2306 := z.EncBinary() - _ = yym2306 + yym2325 := z.EncBinary() + _ = yym2325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2308 := z.EncBinary() - _ = yym2308 + yym2327 := z.EncBinary() + _ = yym2327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -29540,17 +29813,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2309 := z.EncBinary() - _ = yym2309 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2311 := z.EncBinary() - _ = yym2311 + yym2330 := z.EncBinary() + _ = yym2330 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -29559,14 +29832,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2312 := z.EncBinary() - _ = yym2312 + yym2331 := z.EncBinary() + _ = yym2331 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2288 || yy2arr2288 { + if yyr2307 || yy2arr2307 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29579,25 +29852,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2313 := z.DecBinary() - _ = yym2313 + yym2332 := z.DecBinary() + _ = yym2332 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2314 := r.ContainerType() - if yyct2314 == codecSelferValueTypeMap1234 { - yyl2314 := r.ReadMapStart() - if yyl2314 == 0 { + yyct2333 := r.ContainerType() + if yyct2333 == codecSelferValueTypeMap1234 { + yyl2333 := r.ReadMapStart() + if yyl2333 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2314, d) + x.codecDecodeSelfFromMap(yyl2333, d) } - } else if yyct2314 == codecSelferValueTypeArray1234 { - yyl2314 := r.ReadArrayStart() - if yyl2314 == 0 { + } else if yyct2333 == codecSelferValueTypeArray1234 { + yyl2333 := r.ReadArrayStart() + if yyl2333 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2314, d) + x.codecDecodeSelfFromArray(yyl2333, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29609,12 +29882,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2315Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2315Slc - var yyhl2315 bool = l >= 0 - for yyj2315 := 0; ; yyj2315++ { - if yyhl2315 { - if yyj2315 >= l { + var yys2334Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2334Slc + var yyhl2334 bool = l >= 0 + for yyj2334 := 0; ; yyj2334++ { + if yyhl2334 { + if yyj2334 >= l { break } } else { @@ -29623,10 +29896,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2315Slc = r.DecodeBytes(yys2315Slc, true, true) - yys2315 := string(yys2315Slc) + yys2334Slc = r.DecodeBytes(yys2334Slc, true, true) + yys2334 := string(yys2334Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2315 { + switch yys2334 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -29676,9 +29949,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2315) - } // end switch yys2315 - } // end for yyj2315 + z.DecStructFieldNotFound(-1, yys2334) + } // end switch yys2334 + } // end for yyj2334 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29686,16 +29959,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2324 int - var yyb2324 bool - var yyhl2324 bool = l >= 0 - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + var yyj2343 int + var yyb2343 bool + var yyhl2343 bool = l >= 0 + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29705,13 +29978,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29721,13 +29994,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29737,13 +30010,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29753,13 +30026,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29769,13 +30042,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29785,13 +30058,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29801,13 +30074,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29818,17 +30091,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2324++ - if yyhl2324 { - yyb2324 = yyj2324 > l + yyj2343++ + if yyhl2343 { + yyb2343 = yyj2343 > l } else { - yyb2324 = r.CheckBreak() + yyb2343 = r.CheckBreak() } - if yyb2324 { + if yyb2343 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2324-1, "") + z.DecStructFieldNotFound(yyj2343-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29840,39 +30113,39 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2333 := z.EncBinary() - _ = yym2333 + yym2352 := z.EncBinary() + _ = yym2352 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2334 := !z.EncBinary() - yy2arr2334 := z.EncBasicHandle().StructToArray - var yyq2334 [8]bool - _, _, _ = yysep2334, yyq2334, yy2arr2334 - const yyr2334 bool = false - yyq2334[0] = len(x.Capacity) != 0 - yyq2334[1] = len(x.Allocatable) != 0 - yyq2334[2] = x.Phase != "" - yyq2334[3] = len(x.Conditions) != 0 - yyq2334[4] = len(x.Addresses) != 0 - yyq2334[5] = true - yyq2334[6] = true - var yynn2334 int - if yyr2334 || yy2arr2334 { + yysep2353 := !z.EncBinary() + yy2arr2353 := z.EncBasicHandle().StructToArray + var yyq2353 [8]bool + _, _, _ = yysep2353, yyq2353, yy2arr2353 + const yyr2353 bool = false + yyq2353[0] = len(x.Capacity) != 0 + yyq2353[1] = len(x.Allocatable) != 0 + yyq2353[2] = x.Phase != "" + yyq2353[3] = len(x.Conditions) != 0 + yyq2353[4] = len(x.Addresses) != 0 + yyq2353[5] = true + yyq2353[6] = true + var yynn2353 int + if yyr2353 || yy2arr2353 { r.EncodeArrayStart(8) } else { - yynn2334 = 1 - for _, b := range yyq2334 { + yynn2353 = 1 + for _, b := range yyq2353 { if b { - yynn2334++ + yynn2353++ } } - r.EncodeMapStart(yynn2334) - yynn2334 = 0 + r.EncodeMapStart(yynn2353) + yynn2353 = 0 } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[0] { + if yyq2353[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -29882,7 +30155,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2334[0] { + if yyq2353[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29893,9 +30166,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[1] { + if yyq2353[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -29905,7 +30178,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2334[1] { + if yyq2353[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29916,29 +30189,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[2] { + if yyq2353[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2334[2] { + if yyq2353[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[3] { + if yyq2353[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym2339 := z.EncBinary() - _ = yym2339 + yym2358 := z.EncBinary() + _ = yym2358 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29948,15 +30221,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2334[3] { + if yyq2353[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2340 := z.EncBinary() - _ = yym2340 + yym2359 := z.EncBinary() + _ = yym2359 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29964,14 +30237,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[4] { + if yyq2353[4] { if x.Addresses == nil { r.EncodeNil() } else { - yym2342 := z.EncBinary() - _ = yym2342 + yym2361 := z.EncBinary() + _ = yym2361 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29981,15 +30254,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2334[4] { + if yyq2353[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2343 := z.EncBinary() - _ = yym2343 + yym2362 := z.EncBinary() + _ = yym2362 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29997,47 +30270,47 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[5] { - yy2345 := &x.DaemonEndpoints - yy2345.CodecEncodeSelf(e) + if yyq2353[5] { + yy2364 := &x.DaemonEndpoints + yy2364.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2334[5] { + if yyq2353[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2346 := &x.DaemonEndpoints - yy2346.CodecEncodeSelf(e) + yy2365 := &x.DaemonEndpoints + yy2365.CodecEncodeSelf(e) } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2334[6] { - yy2348 := &x.NodeInfo - yy2348.CodecEncodeSelf(e) + if yyq2353[6] { + yy2367 := &x.NodeInfo + yy2367.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2334[6] { + if yyq2353[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2349 := &x.NodeInfo - yy2349.CodecEncodeSelf(e) + yy2368 := &x.NodeInfo + yy2368.CodecEncodeSelf(e) } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Images == nil { r.EncodeNil() } else { - yym2351 := z.EncBinary() - _ = yym2351 + yym2370 := z.EncBinary() + _ = yym2370 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) @@ -30050,15 +30323,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x.Images == nil { r.EncodeNil() } else { - yym2352 := z.EncBinary() - _ = yym2352 + yym2371 := z.EncBinary() + _ = yym2371 if false { } else { h.encSliceContainerImage(([]ContainerImage)(x.Images), e) } } } - if yyr2334 || yy2arr2334 { + if yyr2353 || yy2arr2353 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30071,25 +30344,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2353 := z.DecBinary() - _ = yym2353 + yym2372 := z.DecBinary() + _ = yym2372 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2354 := r.ContainerType() - if yyct2354 == codecSelferValueTypeMap1234 { - yyl2354 := r.ReadMapStart() - if yyl2354 == 0 { + yyct2373 := r.ContainerType() + if yyct2373 == codecSelferValueTypeMap1234 { + yyl2373 := r.ReadMapStart() + if yyl2373 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2354, d) + x.codecDecodeSelfFromMap(yyl2373, d) } - } else if yyct2354 == codecSelferValueTypeArray1234 { - yyl2354 := r.ReadArrayStart() - if yyl2354 == 0 { + } else if yyct2373 == codecSelferValueTypeArray1234 { + yyl2373 := r.ReadArrayStart() + if yyl2373 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2354, d) + x.codecDecodeSelfFromArray(yyl2373, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30101,12 +30374,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2355Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2355Slc - var yyhl2355 bool = l >= 0 - for yyj2355 := 0; ; yyj2355++ { - if yyhl2355 { - if yyj2355 >= l { + var yys2374Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2374Slc + var yyhl2374 bool = l >= 0 + for yyj2374 := 0; ; yyj2374++ { + if yyhl2374 { + if yyj2374 >= l { break } } else { @@ -30115,23 +30388,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2355Slc = r.DecodeBytes(yys2355Slc, true, true) - yys2355 := string(yys2355Slc) + yys2374Slc = r.DecodeBytes(yys2374Slc, true, true) + yys2374 := string(yys2374Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2355 { + switch yys2374 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2356 := &x.Capacity - yyv2356.CodecDecodeSelf(d) + yyv2375 := &x.Capacity + yyv2375.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2357 := &x.Allocatable - yyv2357.CodecDecodeSelf(d) + yyv2376 := &x.Allocatable + yyv2376.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -30143,56 +30416,56 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2359 := &x.Conditions - yym2360 := z.DecBinary() - _ = yym2360 + yyv2378 := &x.Conditions + yym2379 := z.DecBinary() + _ = yym2379 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2359), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2378), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2361 := &x.Addresses - yym2362 := z.DecBinary() - _ = yym2362 + yyv2380 := &x.Addresses + yym2381 := z.DecBinary() + _ = yym2381 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2361), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2380), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2363 := &x.DaemonEndpoints - yyv2363.CodecDecodeSelf(d) + yyv2382 := &x.DaemonEndpoints + yyv2382.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2364 := &x.NodeInfo - yyv2364.CodecDecodeSelf(d) + yyv2383 := &x.NodeInfo + yyv2383.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2365 := &x.Images - yym2366 := z.DecBinary() - _ = yym2366 + yyv2384 := &x.Images + yym2385 := z.DecBinary() + _ = yym2385 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2365), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2384), d) } } default: - z.DecStructFieldNotFound(-1, yys2355) - } // end switch yys2355 - } // end for yyj2355 + z.DecStructFieldNotFound(-1, yys2374) + } // end switch yys2374 + } // end for yyj2374 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30200,16 +30473,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2367 int - var yyb2367 bool - var yyhl2367 bool = l >= 0 - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + var yyj2386 int + var yyb2386 bool + var yyhl2386 bool = l >= 0 + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30217,16 +30490,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2368 := &x.Capacity - yyv2368.CodecDecodeSelf(d) + yyv2387 := &x.Capacity + yyv2387.CodecDecodeSelf(d) } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30234,16 +30507,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv2369 := &x.Allocatable - yyv2369.CodecDecodeSelf(d) + yyv2388 := &x.Allocatable + yyv2388.CodecDecodeSelf(d) } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30253,13 +30526,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30267,21 +30540,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2371 := &x.Conditions - yym2372 := z.DecBinary() - _ = yym2372 + yyv2390 := &x.Conditions + yym2391 := z.DecBinary() + _ = yym2391 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2371), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2390), d) } } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30289,21 +30562,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2373 := &x.Addresses - yym2374 := z.DecBinary() - _ = yym2374 + yyv2392 := &x.Addresses + yym2393 := z.DecBinary() + _ = yym2393 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2373), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2392), d) } } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30311,16 +30584,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2375 := &x.DaemonEndpoints - yyv2375.CodecDecodeSelf(d) + yyv2394 := &x.DaemonEndpoints + yyv2394.CodecDecodeSelf(d) } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30328,16 +30601,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2376 := &x.NodeInfo - yyv2376.CodecDecodeSelf(d) + yyv2395 := &x.NodeInfo + yyv2395.CodecDecodeSelf(d) } - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30345,26 +30618,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv2377 := &x.Images - yym2378 := z.DecBinary() - _ = yym2378 + yyv2396 := &x.Images + yym2397 := z.DecBinary() + _ = yym2397 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv2377), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv2396), d) } } for { - yyj2367++ - if yyhl2367 { - yyb2367 = yyj2367 > l + yyj2386++ + if yyhl2386 { + yyb2386 = yyj2386 > l } else { - yyb2367 = r.CheckBreak() + yyb2386 = r.CheckBreak() } - if yyb2367 { + if yyb2386 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2367-1, "") + z.DecStructFieldNotFound(yyj2386-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30376,37 +30649,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2379 := z.EncBinary() - _ = yym2379 + yym2398 := z.EncBinary() + _ = yym2398 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2380 := !z.EncBinary() - yy2arr2380 := z.EncBasicHandle().StructToArray - var yyq2380 [2]bool - _, _, _ = yysep2380, yyq2380, yy2arr2380 - const yyr2380 bool = false - yyq2380[1] = x.Size != 0 - var yynn2380 int - if yyr2380 || yy2arr2380 { + yysep2399 := !z.EncBinary() + yy2arr2399 := z.EncBasicHandle().StructToArray + var yyq2399 [2]bool + _, _, _ = yysep2399, yyq2399, yy2arr2399 + const yyr2399 bool = false + yyq2399[1] = x.Size != 0 + var yynn2399 int + if yyr2399 || yy2arr2399 { r.EncodeArrayStart(2) } else { - yynn2380 = 1 - for _, b := range yyq2380 { + yynn2399 = 1 + for _, b := range yyq2399 { if b { - yynn2380++ + yynn2399++ } } - r.EncodeMapStart(yynn2380) - yynn2380 = 0 + r.EncodeMapStart(yynn2399) + yynn2399 = 0 } - if yyr2380 || yy2arr2380 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.RepoTags == nil { r.EncodeNil() } else { - yym2382 := z.EncBinary() - _ = yym2382 + yym2401 := z.EncBinary() + _ = yym2401 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) @@ -30419,19 +30692,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.RepoTags == nil { r.EncodeNil() } else { - yym2383 := z.EncBinary() - _ = yym2383 + yym2402 := z.EncBinary() + _ = yym2402 if false { } else { z.F.EncSliceStringV(x.RepoTags, false, e) } } } - if yyr2380 || yy2arr2380 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2380[1] { - yym2385 := z.EncBinary() - _ = yym2385 + if yyq2399[1] { + yym2404 := z.EncBinary() + _ = yym2404 if false { } else { r.EncodeInt(int64(x.Size)) @@ -30440,19 +30713,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2380[1] { + if yyq2399[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("size")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2386 := z.EncBinary() - _ = yym2386 + yym2405 := z.EncBinary() + _ = yym2405 if false { } else { r.EncodeInt(int64(x.Size)) } } } - if yyr2380 || yy2arr2380 { + if yyr2399 || yy2arr2399 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30465,25 +30738,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2387 := z.DecBinary() - _ = yym2387 + yym2406 := z.DecBinary() + _ = yym2406 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2388 := r.ContainerType() - if yyct2388 == codecSelferValueTypeMap1234 { - yyl2388 := r.ReadMapStart() - if yyl2388 == 0 { + yyct2407 := r.ContainerType() + if yyct2407 == codecSelferValueTypeMap1234 { + yyl2407 := r.ReadMapStart() + if yyl2407 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2388, d) + x.codecDecodeSelfFromMap(yyl2407, d) } - } else if yyct2388 == codecSelferValueTypeArray1234 { - yyl2388 := r.ReadArrayStart() - if yyl2388 == 0 { + } else if yyct2407 == codecSelferValueTypeArray1234 { + yyl2407 := r.ReadArrayStart() + if yyl2407 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2388, d) + x.codecDecodeSelfFromArray(yyl2407, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30495,12 +30768,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2389Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2389Slc - var yyhl2389 bool = l >= 0 - for yyj2389 := 0; ; yyj2389++ { - if yyhl2389 { - if yyj2389 >= l { + var yys2408Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2408Slc + var yyhl2408 bool = l >= 0 + for yyj2408 := 0; ; yyj2408++ { + if yyhl2408 { + if yyj2408 >= l { break } } else { @@ -30509,20 +30782,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2389Slc = r.DecodeBytes(yys2389Slc, true, true) - yys2389 := string(yys2389Slc) + yys2408Slc = r.DecodeBytes(yys2408Slc, true, true) + yys2408 := string(yys2408Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2389 { + switch yys2408 { case "repoTags": if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2390 := &x.RepoTags - yym2391 := z.DecBinary() - _ = yym2391 + yyv2409 := &x.RepoTags + yym2410 := z.DecBinary() + _ = yym2410 if false { } else { - z.F.DecSliceStringX(yyv2390, false, d) + z.F.DecSliceStringX(yyv2409, false, d) } } case "size": @@ -30532,9 +30805,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys2389) - } // end switch yys2389 - } // end for yyj2389 + z.DecStructFieldNotFound(-1, yys2408) + } // end switch yys2408 + } // end for yyj2408 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30542,16 +30815,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2393 int - var yyb2393 bool - var yyhl2393 bool = l >= 0 - yyj2393++ - if yyhl2393 { - yyb2393 = yyj2393 > l + var yyj2412 int + var yyb2412 bool + var yyhl2412 bool = l >= 0 + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l } else { - yyb2393 = r.CheckBreak() + yyb2412 = r.CheckBreak() } - if yyb2393 { + if yyb2412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30559,21 +30832,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RepoTags = nil } else { - yyv2394 := &x.RepoTags - yym2395 := z.DecBinary() - _ = yym2395 + yyv2413 := &x.RepoTags + yym2414 := z.DecBinary() + _ = yym2414 if false { } else { - z.F.DecSliceStringX(yyv2394, false, d) + z.F.DecSliceStringX(yyv2413, false, d) } } - yyj2393++ - if yyhl2393 { - yyb2393 = yyj2393 > l + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l } else { - yyb2393 = r.CheckBreak() + yyb2412 = r.CheckBreak() } - if yyb2393 { + if yyb2412 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30584,17 +30857,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Size = int64(r.DecodeInt(64)) } for { - yyj2393++ - if yyhl2393 { - yyb2393 = yyj2393 > l + yyj2412++ + if yyhl2412 { + yyb2412 = yyj2412 > l } else { - yyb2393 = r.CheckBreak() + yyb2412 = r.CheckBreak() } - if yyb2393 { + if yyb2412 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2393-1, "") + z.DecStructFieldNotFound(yyj2412-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30603,8 +30876,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2397 := z.EncBinary() - _ = yym2397 + yym2416 := z.EncBinary() + _ = yym2416 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30616,8 +30889,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2398 := z.DecBinary() - _ = yym2398 + yym2417 := z.DecBinary() + _ = yym2417 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30629,8 +30902,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2399 := z.EncBinary() - _ = yym2399 + yym2418 := z.EncBinary() + _ = yym2418 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30642,8 +30915,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2400 := z.DecBinary() - _ = yym2400 + yym2419 := z.DecBinary() + _ = yym2419 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30658,34 +30931,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2401 := z.EncBinary() - _ = yym2401 + yym2420 := z.EncBinary() + _ = yym2420 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2402 := !z.EncBinary() - yy2arr2402 := z.EncBasicHandle().StructToArray - var yyq2402 [6]bool - _, _, _ = yysep2402, yyq2402, yy2arr2402 - const yyr2402 bool = false - yyq2402[2] = true - yyq2402[3] = true - yyq2402[4] = x.Reason != "" - yyq2402[5] = x.Message != "" - var yynn2402 int - if yyr2402 || yy2arr2402 { + yysep2421 := !z.EncBinary() + yy2arr2421 := z.EncBasicHandle().StructToArray + var yyq2421 [6]bool + _, _, _ = yysep2421, yyq2421, yy2arr2421 + const yyr2421 bool = false + yyq2421[2] = true + yyq2421[3] = true + yyq2421[4] = x.Reason != "" + yyq2421[5] = x.Message != "" + var yynn2421 int + if yyr2421 || yy2arr2421 { r.EncodeArrayStart(6) } else { - yynn2402 = 2 - for _, b := range yyq2402 { + yynn2421 = 2 + for _, b := range yyq2421 { if b { - yynn2402++ + yynn2421++ } } - r.EncodeMapStart(yynn2402) - yynn2402 = 0 + r.EncodeMapStart(yynn2421) + yynn2421 = 0 } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -30694,7 +30967,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -30703,85 +30976,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2402[2] { - yy2406 := &x.LastHeartbeatTime - yym2407 := z.EncBinary() - _ = yym2407 + if yyq2421[2] { + yy2425 := &x.LastHeartbeatTime + yym2426 := z.EncBinary() + _ = yym2426 if false { - } else if z.HasExtensions() && z.EncExt(yy2406) { - } else if yym2407 { - z.EncBinaryMarshal(yy2406) - } else if !yym2407 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2406) + } else if z.HasExtensions() && z.EncExt(yy2425) { + } else if yym2426 { + z.EncBinaryMarshal(yy2425) + } else if !yym2426 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2425) } else { - z.EncFallback(yy2406) + z.EncFallback(yy2425) } } else { r.EncodeNil() } } else { - if yyq2402[2] { + if yyq2421[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2408 := &x.LastHeartbeatTime - yym2409 := z.EncBinary() - _ = yym2409 + yy2427 := &x.LastHeartbeatTime + yym2428 := z.EncBinary() + _ = yym2428 if false { - } else if z.HasExtensions() && z.EncExt(yy2408) { - } else if yym2409 { - z.EncBinaryMarshal(yy2408) - } else if !yym2409 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2408) + } else if z.HasExtensions() && z.EncExt(yy2427) { + } else if yym2428 { + z.EncBinaryMarshal(yy2427) + } else if !yym2428 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2427) } else { - z.EncFallback(yy2408) + z.EncFallback(yy2427) } } } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2402[3] { - yy2411 := &x.LastTransitionTime - yym2412 := z.EncBinary() - _ = yym2412 + if yyq2421[3] { + yy2430 := &x.LastTransitionTime + yym2431 := z.EncBinary() + _ = yym2431 if false { - } else if z.HasExtensions() && z.EncExt(yy2411) { - } else if yym2412 { - z.EncBinaryMarshal(yy2411) - } else if !yym2412 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2411) + } else if z.HasExtensions() && z.EncExt(yy2430) { + } else if yym2431 { + z.EncBinaryMarshal(yy2430) + } else if !yym2431 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2430) } else { - z.EncFallback(yy2411) + z.EncFallback(yy2430) } } else { r.EncodeNil() } } else { - if yyq2402[3] { + if yyq2421[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2413 := &x.LastTransitionTime - yym2414 := z.EncBinary() - _ = yym2414 + yy2432 := &x.LastTransitionTime + yym2433 := z.EncBinary() + _ = yym2433 if false { - } else if z.HasExtensions() && z.EncExt(yy2413) { - } else if yym2414 { - z.EncBinaryMarshal(yy2413) - } else if !yym2414 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2413) + } else if z.HasExtensions() && z.EncExt(yy2432) { + } else if yym2433 { + z.EncBinaryMarshal(yy2432) + } else if !yym2433 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2432) } else { - z.EncFallback(yy2413) + z.EncFallback(yy2432) } } } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2402[4] { - yym2416 := z.EncBinary() - _ = yym2416 + if yyq2421[4] { + yym2435 := z.EncBinary() + _ = yym2435 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -30790,23 +31063,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2402[4] { + if yyq2421[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2417 := z.EncBinary() - _ = yym2417 + yym2436 := z.EncBinary() + _ = yym2436 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2402[5] { - yym2419 := z.EncBinary() - _ = yym2419 + if yyq2421[5] { + yym2438 := z.EncBinary() + _ = yym2438 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -30815,19 +31088,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2402[5] { + if yyq2421[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2420 := z.EncBinary() - _ = yym2420 + yym2439 := z.EncBinary() + _ = yym2439 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2402 || yy2arr2402 { + if yyr2421 || yy2arr2421 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30840,25 +31113,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2421 := z.DecBinary() - _ = yym2421 + yym2440 := z.DecBinary() + _ = yym2440 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2422 := r.ContainerType() - if yyct2422 == codecSelferValueTypeMap1234 { - yyl2422 := r.ReadMapStart() - if yyl2422 == 0 { + yyct2441 := r.ContainerType() + if yyct2441 == codecSelferValueTypeMap1234 { + yyl2441 := r.ReadMapStart() + if yyl2441 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2422, d) + x.codecDecodeSelfFromMap(yyl2441, d) } - } else if yyct2422 == codecSelferValueTypeArray1234 { - yyl2422 := r.ReadArrayStart() - if yyl2422 == 0 { + } else if yyct2441 == codecSelferValueTypeArray1234 { + yyl2441 := r.ReadArrayStart() + if yyl2441 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2422, d) + x.codecDecodeSelfFromArray(yyl2441, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30870,12 +31143,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2423Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2423Slc - var yyhl2423 bool = l >= 0 - for yyj2423 := 0; ; yyj2423++ { - if yyhl2423 { - if yyj2423 >= l { + var yys2442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2442Slc + var yyhl2442 bool = l >= 0 + for yyj2442 := 0; ; yyj2442++ { + if yyhl2442 { + if yyj2442 >= l { break } } else { @@ -30884,10 +31157,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2423Slc = r.DecodeBytes(yys2423Slc, true, true) - yys2423 := string(yys2423Slc) + yys2442Slc = r.DecodeBytes(yys2442Slc, true, true) + yys2442 := string(yys2442Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2423 { + switch yys2442 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -30904,34 +31177,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2426 := &x.LastHeartbeatTime - yym2427 := z.DecBinary() - _ = yym2427 + yyv2445 := &x.LastHeartbeatTime + yym2446 := z.DecBinary() + _ = yym2446 if false { - } else if z.HasExtensions() && z.DecExt(yyv2426) { - } else if yym2427 { - z.DecBinaryUnmarshal(yyv2426) - } else if !yym2427 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2426) + } else if z.HasExtensions() && z.DecExt(yyv2445) { + } else if yym2446 { + z.DecBinaryUnmarshal(yyv2445) + } else if !yym2446 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2445) } else { - z.DecFallback(yyv2426, false) + z.DecFallback(yyv2445, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2428 := &x.LastTransitionTime - yym2429 := z.DecBinary() - _ = yym2429 + yyv2447 := &x.LastTransitionTime + yym2448 := z.DecBinary() + _ = yym2448 if false { - } else if z.HasExtensions() && z.DecExt(yyv2428) { - } else if yym2429 { - z.DecBinaryUnmarshal(yyv2428) - } else if !yym2429 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2428) + } else if z.HasExtensions() && z.DecExt(yyv2447) { + } else if yym2448 { + z.DecBinaryUnmarshal(yyv2447) + } else if !yym2448 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2447) } else { - z.DecFallback(yyv2428, false) + z.DecFallback(yyv2447, false) } } case "reason": @@ -30947,9 +31220,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2423) - } // end switch yys2423 - } // end for yyj2423 + z.DecStructFieldNotFound(-1, yys2442) + } // end switch yys2442 + } // end for yyj2442 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30957,16 +31230,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2432 int - var yyb2432 bool - var yyhl2432 bool = l >= 0 - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + var yyj2451 int + var yyb2451 bool + var yyhl2451 bool = l >= 0 + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30976,13 +31249,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30992,13 +31265,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31006,26 +31279,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2435 := &x.LastHeartbeatTime - yym2436 := z.DecBinary() - _ = yym2436 + yyv2454 := &x.LastHeartbeatTime + yym2455 := z.DecBinary() + _ = yym2455 if false { - } else if z.HasExtensions() && z.DecExt(yyv2435) { - } else if yym2436 { - z.DecBinaryUnmarshal(yyv2435) - } else if !yym2436 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2435) + } else if z.HasExtensions() && z.DecExt(yyv2454) { + } else if yym2455 { + z.DecBinaryUnmarshal(yyv2454) + } else if !yym2455 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2454) } else { - z.DecFallback(yyv2435, false) + z.DecFallback(yyv2454, false) } } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31033,26 +31306,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2437 := &x.LastTransitionTime - yym2438 := z.DecBinary() - _ = yym2438 + yyv2456 := &x.LastTransitionTime + yym2457 := z.DecBinary() + _ = yym2457 if false { - } else if z.HasExtensions() && z.DecExt(yyv2437) { - } else if yym2438 { - z.DecBinaryUnmarshal(yyv2437) - } else if !yym2438 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2437) + } else if z.HasExtensions() && z.DecExt(yyv2456) { + } else if yym2457 { + z.DecBinaryUnmarshal(yyv2456) + } else if !yym2457 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2456) } else { - z.DecFallback(yyv2437, false) + z.DecFallback(yyv2456, false) } } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31062,13 +31335,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31079,17 +31352,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2451++ + if yyhl2451 { + yyb2451 = yyj2451 > l } else { - yyb2432 = r.CheckBreak() + yyb2451 = r.CheckBreak() } - if yyb2432 { + if yyb2451 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2432-1, "") + z.DecStructFieldNotFound(yyj2451-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31098,8 +31371,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2441 := z.EncBinary() - _ = yym2441 + yym2460 := z.EncBinary() + _ = yym2460 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31111,8 +31384,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2442 := z.DecBinary() - _ = yym2442 + yym2461 := z.DecBinary() + _ = yym2461 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31127,30 +31400,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2443 := z.EncBinary() - _ = yym2443 + yym2462 := z.EncBinary() + _ = yym2462 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2444 := !z.EncBinary() - yy2arr2444 := z.EncBasicHandle().StructToArray - var yyq2444 [2]bool - _, _, _ = yysep2444, yyq2444, yy2arr2444 - const yyr2444 bool = false - var yynn2444 int - if yyr2444 || yy2arr2444 { + yysep2463 := !z.EncBinary() + yy2arr2463 := z.EncBasicHandle().StructToArray + var yyq2463 [2]bool + _, _, _ = yysep2463, yyq2463, yy2arr2463 + const yyr2463 bool = false + var yynn2463 int + if yyr2463 || yy2arr2463 { r.EncodeArrayStart(2) } else { - yynn2444 = 2 - for _, b := range yyq2444 { + yynn2463 = 2 + for _, b := range yyq2463 { if b { - yynn2444++ + yynn2463++ } } - r.EncodeMapStart(yynn2444) - yynn2444 = 0 + r.EncodeMapStart(yynn2463) + yynn2463 = 0 } - if yyr2444 || yy2arr2444 { + if yyr2463 || yy2arr2463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -31159,10 +31432,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2444 || yy2arr2444 { + if yyr2463 || yy2arr2463 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2447 := z.EncBinary() - _ = yym2447 + yym2466 := z.EncBinary() + _ = yym2466 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -31171,14 +31444,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2448 := z.EncBinary() - _ = yym2448 + yym2467 := z.EncBinary() + _ = yym2467 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2444 || yy2arr2444 { + if yyr2463 || yy2arr2463 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31191,25 +31464,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2449 := z.DecBinary() - _ = yym2449 + yym2468 := z.DecBinary() + _ = yym2468 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2450 := r.ContainerType() - if yyct2450 == codecSelferValueTypeMap1234 { - yyl2450 := r.ReadMapStart() - if yyl2450 == 0 { + yyct2469 := r.ContainerType() + if yyct2469 == codecSelferValueTypeMap1234 { + yyl2469 := r.ReadMapStart() + if yyl2469 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2450, d) + x.codecDecodeSelfFromMap(yyl2469, d) } - } else if yyct2450 == codecSelferValueTypeArray1234 { - yyl2450 := r.ReadArrayStart() - if yyl2450 == 0 { + } else if yyct2469 == codecSelferValueTypeArray1234 { + yyl2469 := r.ReadArrayStart() + if yyl2469 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2450, d) + x.codecDecodeSelfFromArray(yyl2469, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31221,12 +31494,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2451Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2451Slc - var yyhl2451 bool = l >= 0 - for yyj2451 := 0; ; yyj2451++ { - if yyhl2451 { - if yyj2451 >= l { + var yys2470Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2470Slc + var yyhl2470 bool = l >= 0 + for yyj2470 := 0; ; yyj2470++ { + if yyhl2470 { + if yyj2470 >= l { break } } else { @@ -31235,10 +31508,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2451Slc = r.DecodeBytes(yys2451Slc, true, true) - yys2451 := string(yys2451Slc) + yys2470Slc = r.DecodeBytes(yys2470Slc, true, true) + yys2470 := string(yys2470Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2451 { + switch yys2470 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -31252,9 +31525,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2451) - } // end switch yys2451 - } // end for yyj2451 + z.DecStructFieldNotFound(-1, yys2470) + } // end switch yys2470 + } // end for yyj2470 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31262,16 +31535,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2454 int - var yyb2454 bool - var yyhl2454 bool = l >= 0 - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + var yyj2473 int + var yyb2473 bool + var yyhl2473 bool = l >= 0 + yyj2473++ + if yyhl2473 { + yyb2473 = yyj2473 > l } else { - yyb2454 = r.CheckBreak() + yyb2473 = r.CheckBreak() } - if yyb2454 { + if yyb2473 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31281,13 +31554,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2473++ + if yyhl2473 { + yyb2473 = yyj2473 > l } else { - yyb2454 = r.CheckBreak() + yyb2473 = r.CheckBreak() } - if yyb2454 { + if yyb2473 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31298,17 +31571,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2454++ - if yyhl2454 { - yyb2454 = yyj2454 > l + yyj2473++ + if yyhl2473 { + yyb2473 = yyj2473 > l } else { - yyb2454 = r.CheckBreak() + yyb2473 = r.CheckBreak() } - if yyb2454 { + if yyb2473 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2454-1, "") + z.DecStructFieldNotFound(yyj2473-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31317,8 +31590,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2457 := z.EncBinary() - _ = yym2457 + yym2476 := z.EncBinary() + _ = yym2476 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31330,8 +31603,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2458 := z.DecBinary() - _ = yym2458 + yym2477 := z.DecBinary() + _ = yym2477 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31346,8 +31619,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2459 := z.EncBinary() - _ = yym2459 + yym2478 := z.EncBinary() + _ = yym2478 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31360,8 +31633,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2460 := z.DecBinary() - _ = yym2460 + yym2479 := z.DecBinary() + _ = yym2479 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31376,39 +31649,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2461 := z.EncBinary() - _ = yym2461 + yym2480 := z.EncBinary() + _ = yym2480 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2462 := !z.EncBinary() - yy2arr2462 := z.EncBasicHandle().StructToArray - var yyq2462 [5]bool - _, _, _ = yysep2462, yyq2462, yy2arr2462 - const yyr2462 bool = false - yyq2462[0] = x.Kind != "" - yyq2462[1] = x.APIVersion != "" - yyq2462[2] = true - yyq2462[3] = true - yyq2462[4] = true - var yynn2462 int - if yyr2462 || yy2arr2462 { + yysep2481 := !z.EncBinary() + yy2arr2481 := z.EncBasicHandle().StructToArray + var yyq2481 [5]bool + _, _, _ = yysep2481, yyq2481, yy2arr2481 + const yyr2481 bool = false + yyq2481[0] = x.Kind != "" + yyq2481[1] = x.APIVersion != "" + yyq2481[2] = true + yyq2481[3] = true + yyq2481[4] = true + var yynn2481 int + if yyr2481 || yy2arr2481 { r.EncodeArrayStart(5) } else { - yynn2462 = 0 - for _, b := range yyq2462 { + yynn2481 = 0 + for _, b := range yyq2481 { if b { - yynn2462++ + yynn2481++ } } - r.EncodeMapStart(yynn2462) - yynn2462 = 0 + r.EncodeMapStart(yynn2481) + yynn2481 = 0 } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[0] { - yym2464 := z.EncBinary() - _ = yym2464 + if yyq2481[0] { + yym2483 := z.EncBinary() + _ = yym2483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31417,23 +31690,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[0] { + if yyq2481[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2465 := z.EncBinary() - _ = yym2465 + yym2484 := z.EncBinary() + _ = yym2484 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[1] { - yym2467 := z.EncBinary() - _ = yym2467 + if yyq2481[1] { + yym2486 := z.EncBinary() + _ = yym2486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31442,70 +31715,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2462[1] { + if yyq2481[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2468 := z.EncBinary() - _ = yym2468 + yym2487 := z.EncBinary() + _ = yym2487 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[2] { - yy2470 := &x.ObjectMeta - yy2470.CodecEncodeSelf(e) + if yyq2481[2] { + yy2489 := &x.ObjectMeta + yy2489.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[2] { + if yyq2481[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2471 := &x.ObjectMeta - yy2471.CodecEncodeSelf(e) + yy2490 := &x.ObjectMeta + yy2490.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[3] { - yy2473 := &x.Spec - yy2473.CodecEncodeSelf(e) + if yyq2481[3] { + yy2492 := &x.Spec + yy2492.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[3] { + if yyq2481[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2474 := &x.Spec - yy2474.CodecEncodeSelf(e) + yy2493 := &x.Spec + yy2493.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2462[4] { - yy2476 := &x.Status - yy2476.CodecEncodeSelf(e) + if yyq2481[4] { + yy2495 := &x.Status + yy2495.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2462[4] { + if yyq2481[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2477 := &x.Status - yy2477.CodecEncodeSelf(e) + yy2496 := &x.Status + yy2496.CodecEncodeSelf(e) } } - if yyr2462 || yy2arr2462 { + if yyr2481 || yy2arr2481 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31518,25 +31791,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2478 := z.DecBinary() - _ = yym2478 + yym2497 := z.DecBinary() + _ = yym2497 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2479 := r.ContainerType() - if yyct2479 == codecSelferValueTypeMap1234 { - yyl2479 := r.ReadMapStart() - if yyl2479 == 0 { + yyct2498 := r.ContainerType() + if yyct2498 == codecSelferValueTypeMap1234 { + yyl2498 := r.ReadMapStart() + if yyl2498 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2479, d) + x.codecDecodeSelfFromMap(yyl2498, d) } - } else if yyct2479 == codecSelferValueTypeArray1234 { - yyl2479 := r.ReadArrayStart() - if yyl2479 == 0 { + } else if yyct2498 == codecSelferValueTypeArray1234 { + yyl2498 := r.ReadArrayStart() + if yyl2498 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2479, d) + x.codecDecodeSelfFromArray(yyl2498, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31548,12 +31821,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2480Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2480Slc - var yyhl2480 bool = l >= 0 - for yyj2480 := 0; ; yyj2480++ { - if yyhl2480 { - if yyj2480 >= l { + var yys2499Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2499Slc + var yyhl2499 bool = l >= 0 + for yyj2499 := 0; ; yyj2499++ { + if yyhl2499 { + if yyj2499 >= l { break } } else { @@ -31562,10 +31835,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2480Slc = r.DecodeBytes(yys2480Slc, true, true) - yys2480 := string(yys2480Slc) + yys2499Slc = r.DecodeBytes(yys2499Slc, true, true) + yys2499 := string(yys2499Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2480 { + switch yys2499 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31582,27 +31855,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2483 := &x.ObjectMeta - yyv2483.CodecDecodeSelf(d) + yyv2502 := &x.ObjectMeta + yyv2502.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2484 := &x.Spec - yyv2484.CodecDecodeSelf(d) + yyv2503 := &x.Spec + yyv2503.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2485 := &x.Status - yyv2485.CodecDecodeSelf(d) + yyv2504 := &x.Status + yyv2504.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2480) - } // end switch yys2480 - } // end for yyj2480 + z.DecStructFieldNotFound(-1, yys2499) + } // end switch yys2499 + } // end for yyj2499 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31610,16 +31883,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2486 int - var yyb2486 bool - var yyhl2486 bool = l >= 0 - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + var yyj2505 int + var yyb2505 bool + var yyhl2505 bool = l >= 0 + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31629,13 +31902,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31645,13 +31918,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31659,16 +31932,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2489 := &x.ObjectMeta - yyv2489.CodecDecodeSelf(d) + yyv2508 := &x.ObjectMeta + yyv2508.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31676,16 +31949,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2490 := &x.Spec - yyv2490.CodecDecodeSelf(d) + yyv2509 := &x.Spec + yyv2509.CodecDecodeSelf(d) } - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31693,21 +31966,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2491 := &x.Status - yyv2491.CodecDecodeSelf(d) + yyv2510 := &x.Status + yyv2510.CodecDecodeSelf(d) } for { - yyj2486++ - if yyhl2486 { - yyb2486 = yyj2486 > l + yyj2505++ + if yyhl2505 { + yyb2505 = yyj2505 > l } else { - yyb2486 = r.CheckBreak() + yyb2505 = r.CheckBreak() } - if yyb2486 { + if yyb2505 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2486-1, "") + z.DecStructFieldNotFound(yyj2505-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31719,37 +31992,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2492 := z.EncBinary() - _ = yym2492 + yym2511 := z.EncBinary() + _ = yym2511 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2493 := !z.EncBinary() - yy2arr2493 := z.EncBasicHandle().StructToArray - var yyq2493 [4]bool - _, _, _ = yysep2493, yyq2493, yy2arr2493 - const yyr2493 bool = false - yyq2493[0] = x.Kind != "" - yyq2493[1] = x.APIVersion != "" - yyq2493[2] = true - var yynn2493 int - if yyr2493 || yy2arr2493 { + yysep2512 := !z.EncBinary() + yy2arr2512 := z.EncBasicHandle().StructToArray + var yyq2512 [4]bool + _, _, _ = yysep2512, yyq2512, yy2arr2512 + const yyr2512 bool = false + yyq2512[0] = x.Kind != "" + yyq2512[1] = x.APIVersion != "" + yyq2512[2] = true + var yynn2512 int + if yyr2512 || yy2arr2512 { r.EncodeArrayStart(4) } else { - yynn2493 = 1 - for _, b := range yyq2493 { + yynn2512 = 1 + for _, b := range yyq2512 { if b { - yynn2493++ + yynn2512++ } } - r.EncodeMapStart(yynn2493) - yynn2493 = 0 + r.EncodeMapStart(yynn2512) + yynn2512 = 0 } - if yyr2493 || yy2arr2493 { + if yyr2512 || yy2arr2512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[0] { - yym2495 := z.EncBinary() - _ = yym2495 + if yyq2512[0] { + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31758,23 +32031,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[0] { + if yyq2512[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2496 := z.EncBinary() - _ = yym2496 + yym2515 := z.EncBinary() + _ = yym2515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2493 || yy2arr2493 { + if yyr2512 || yy2arr2512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[1] { - yym2498 := z.EncBinary() - _ = yym2498 + if yyq2512[1] { + yym2517 := z.EncBinary() + _ = yym2517 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31783,54 +32056,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2493[1] { + if yyq2512[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2499 := z.EncBinary() - _ = yym2499 + yym2518 := z.EncBinary() + _ = yym2518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2493 || yy2arr2493 { + if yyr2512 || yy2arr2512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2493[2] { - yy2501 := &x.ListMeta - yym2502 := z.EncBinary() - _ = yym2502 + if yyq2512[2] { + yy2520 := &x.ListMeta + yym2521 := z.EncBinary() + _ = yym2521 if false { - } else if z.HasExtensions() && z.EncExt(yy2501) { + } else if z.HasExtensions() && z.EncExt(yy2520) { } else { - z.EncFallback(yy2501) + z.EncFallback(yy2520) } } else { r.EncodeNil() } } else { - if yyq2493[2] { + if yyq2512[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2503 := &x.ListMeta - yym2504 := z.EncBinary() - _ = yym2504 + yy2522 := &x.ListMeta + yym2523 := z.EncBinary() + _ = yym2523 if false { - } else if z.HasExtensions() && z.EncExt(yy2503) { + } else if z.HasExtensions() && z.EncExt(yy2522) { } else { - z.EncFallback(yy2503) + z.EncFallback(yy2522) } } } - if yyr2493 || yy2arr2493 { + if yyr2512 || yy2arr2512 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2506 := z.EncBinary() - _ = yym2506 + yym2525 := z.EncBinary() + _ = yym2525 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -31843,15 +32116,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2507 := z.EncBinary() - _ = yym2507 + yym2526 := z.EncBinary() + _ = yym2526 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2493 || yy2arr2493 { + if yyr2512 || yy2arr2512 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31864,25 +32137,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2508 := z.DecBinary() - _ = yym2508 + yym2527 := z.DecBinary() + _ = yym2527 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2509 := r.ContainerType() - if yyct2509 == codecSelferValueTypeMap1234 { - yyl2509 := r.ReadMapStart() - if yyl2509 == 0 { + yyct2528 := r.ContainerType() + if yyct2528 == codecSelferValueTypeMap1234 { + yyl2528 := r.ReadMapStart() + if yyl2528 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2509, d) + x.codecDecodeSelfFromMap(yyl2528, d) } - } else if yyct2509 == codecSelferValueTypeArray1234 { - yyl2509 := r.ReadArrayStart() - if yyl2509 == 0 { + } else if yyct2528 == codecSelferValueTypeArray1234 { + yyl2528 := r.ReadArrayStart() + if yyl2528 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2509, d) + x.codecDecodeSelfFromArray(yyl2528, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31894,12 +32167,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2510Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2510Slc - var yyhl2510 bool = l >= 0 - for yyj2510 := 0; ; yyj2510++ { - if yyhl2510 { - if yyj2510 >= l { + var yys2529Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2529Slc + var yyhl2529 bool = l >= 0 + for yyj2529 := 0; ; yyj2529++ { + if yyhl2529 { + if yyj2529 >= l { break } } else { @@ -31908,10 +32181,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2510Slc = r.DecodeBytes(yys2510Slc, true, true) - yys2510 := string(yys2510Slc) + yys2529Slc = r.DecodeBytes(yys2529Slc, true, true) + yys2529 := string(yys2529Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2510 { + switch yys2529 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31928,305 +32201,35 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2513 := &x.ListMeta - yym2514 := z.DecBinary() - _ = yym2514 + yyv2532 := &x.ListMeta + yym2533 := z.DecBinary() + _ = yym2533 if false { - } else if z.HasExtensions() && z.DecExt(yyv2513) { + } else if z.HasExtensions() && z.DecExt(yyv2532) { } else { - z.DecFallback(yyv2513, false) + z.DecFallback(yyv2532, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2515 := &x.Items - yym2516 := z.DecBinary() - _ = yym2516 - if false { - } else { - h.decSliceNode((*[]Node)(yyv2515), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys2510) - } // end switch yys2510 - } // end for yyj2510 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2517 int - var yyb2517 bool - var yyhl2517 bool = l >= 0 - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l - } else { - yyb2517 = r.CheckBreak() - } - if yyb2517 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l - } else { - yyb2517 = r.CheckBreak() - } - if yyb2517 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l - } else { - yyb2517 = r.CheckBreak() - } - if yyb2517 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv2520 := &x.ListMeta - yym2521 := z.DecBinary() - _ = yym2521 - if false { - } else if z.HasExtensions() && z.DecExt(yyv2520) { - } else { - z.DecFallback(yyv2520, false) - } - } - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l - } else { - yyb2517 = r.CheckBreak() - } - if yyb2517 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv2522 := &x.Items - yym2523 := z.DecBinary() - _ = yym2523 - if false { - } else { - h.decSliceNode((*[]Node)(yyv2522), d) - } - } - for { - yyj2517++ - if yyhl2517 { - yyb2517 = yyj2517 > l - } else { - yyb2517 = r.CheckBreak() - } - if yyb2517 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2517-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - yym2524 := z.EncBinary() - _ = yym2524 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x)) - } -} - -func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2525 := z.DecBinary() - _ = yym2525 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - *((*string)(x)) = r.DecodeString() - } -} - -func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2526 := z.EncBinary() - _ = yym2526 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2527 := !z.EncBinary() - yy2arr2527 := z.EncBasicHandle().StructToArray - var yyq2527 [1]bool - _, _, _ = yysep2527, yyq2527, yy2arr2527 - const yyr2527 bool = false - yyq2527[0] = len(x.Finalizers) != 0 - var yynn2527 int - if yyr2527 || yy2arr2527 { - r.EncodeArrayStart(1) - } else { - yynn2527 = 0 - for _, b := range yyq2527 { - if b { - yynn2527++ - } - } - r.EncodeMapStart(yynn2527) - yynn2527 = 0 - } - if yyr2527 || yy2arr2527 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2527[0] { - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym2529 := z.EncBinary() - _ = yym2529 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2527[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finalizers")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Finalizers == nil { - r.EncodeNil() - } else { - yym2530 := z.EncBinary() - _ = yym2530 - if false { - } else { - h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) - } - } - } - } - if yyr2527 || yy2arr2527 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2531 := z.DecBinary() - _ = yym2531 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2532 := r.ContainerType() - if yyct2532 == codecSelferValueTypeMap1234 { - yyl2532 := r.ReadMapStart() - if yyl2532 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2532, d) - } - } else if yyct2532 == codecSelferValueTypeArray1234 { - yyl2532 := r.ReadArrayStart() - if yyl2532 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2532, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2533Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2533Slc - var yyhl2533 bool = l >= 0 - for yyj2533 := 0; ; yyj2533++ { - if yyhl2533 { - if yyj2533 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2533Slc = r.DecodeBytes(yys2533Slc, true, true) - yys2533 := string(yys2533Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2533 { - case "finalizers": - if r.TryDecodeAsNil() { - x.Finalizers = nil - } else { - yyv2534 := &x.Finalizers + yyv2534 := &x.Items yym2535 := z.DecBinary() _ = yym2535 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2534), d) + h.decSliceNode((*[]Node)(yyv2534), d) } } default: - z.DecStructFieldNotFound(-1, yys2533) - } // end switch yys2533 - } // end for yyj2533 + z.DecStructFieldNotFound(-1, yys2529) + } // end switch yys2529 + } // end for yyj2529 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -32245,14 +32248,69 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Finalizers = nil + x.Kind = "" } else { - yyv2537 := &x.Finalizers - yym2538 := z.DecBinary() - _ = yym2538 + x.Kind = string(r.DecodeString()) + } + yyj2536++ + if yyhl2536 { + yyb2536 = yyj2536 > l + } else { + yyb2536 = r.CheckBreak() + } + if yyb2536 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj2536++ + if yyhl2536 { + yyb2536 = yyj2536 > l + } else { + yyb2536 = r.CheckBreak() + } + if yyb2536 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv2539 := &x.ListMeta + yym2540 := z.DecBinary() + _ = yym2540 + if false { + } else if z.HasExtensions() && z.DecExt(yyv2539) { + } else { + z.DecFallback(yyv2539, false) + } + } + yyj2536++ + if yyhl2536 { + yyb2536 = yyj2536 > l + } else { + yyb2536 = r.CheckBreak() + } + if yyb2536 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv2541 := &x.Items + yym2542 := z.DecBinary() + _ = yym2542 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2537), d) + h.decSliceNode((*[]Node)(yyv2541), d) } } for { @@ -32271,6 +32329,221 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + yym2543 := z.EncBinary() + _ = yym2543 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x)) + } +} + +func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2544 := z.DecBinary() + _ = yym2544 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + *((*string)(x)) = r.DecodeString() + } +} + +func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2545 := z.EncBinary() + _ = yym2545 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2546 := !z.EncBinary() + yy2arr2546 := z.EncBasicHandle().StructToArray + var yyq2546 [1]bool + _, _, _ = yysep2546, yyq2546, yy2arr2546 + const yyr2546 bool = false + yyq2546[0] = len(x.Finalizers) != 0 + var yynn2546 int + if yyr2546 || yy2arr2546 { + r.EncodeArrayStart(1) + } else { + yynn2546 = 0 + for _, b := range yyq2546 { + if b { + yynn2546++ + } + } + r.EncodeMapStart(yynn2546) + yynn2546 = 0 + } + if yyr2546 || yy2arr2546 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2546[0] { + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym2548 := z.EncBinary() + _ = yym2548 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2546[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("finalizers")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Finalizers == nil { + r.EncodeNil() + } else { + yym2549 := z.EncBinary() + _ = yym2549 + if false { + } else { + h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) + } + } + } + } + if yyr2546 || yy2arr2546 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2550 := z.DecBinary() + _ = yym2550 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2551 := r.ContainerType() + if yyct2551 == codecSelferValueTypeMap1234 { + yyl2551 := r.ReadMapStart() + if yyl2551 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2551, d) + } + } else if yyct2551 == codecSelferValueTypeArray1234 { + yyl2551 := r.ReadArrayStart() + if yyl2551 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2551, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2552Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2552Slc + var yyhl2552 bool = l >= 0 + for yyj2552 := 0; ; yyj2552++ { + if yyhl2552 { + if yyj2552 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2552Slc = r.DecodeBytes(yys2552Slc, true, true) + yys2552 := string(yys2552Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2552 { + case "finalizers": + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv2553 := &x.Finalizers + yym2554 := z.DecBinary() + _ = yym2554 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv2553), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys2552) + } // end switch yys2552 + } // end for yyj2552 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj2555 int + var yyb2555 bool + var yyhl2555 bool = l >= 0 + yyj2555++ + if yyhl2555 { + yyb2555 = yyj2555 > l + } else { + yyb2555 = r.CheckBreak() + } + if yyb2555 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Finalizers = nil + } else { + yyv2556 := &x.Finalizers + yym2557 := z.DecBinary() + _ = yym2557 + if false { + } else { + h.decSliceFinalizerName((*[]FinalizerName)(yyv2556), d) + } + } + for { + yyj2555++ + if yyhl2555 { + yyb2555 = yyj2555 > l + } else { + yyb2555 = r.CheckBreak() + } + if yyb2555 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj2555-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -32278,46 +32551,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2539 := z.EncBinary() - _ = yym2539 + yym2558 := z.EncBinary() + _ = yym2558 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2540 := !z.EncBinary() - yy2arr2540 := z.EncBasicHandle().StructToArray - var yyq2540 [1]bool - _, _, _ = yysep2540, yyq2540, yy2arr2540 - const yyr2540 bool = false - yyq2540[0] = x.Phase != "" - var yynn2540 int - if yyr2540 || yy2arr2540 { + yysep2559 := !z.EncBinary() + yy2arr2559 := z.EncBasicHandle().StructToArray + var yyq2559 [1]bool + _, _, _ = yysep2559, yyq2559, yy2arr2559 + const yyr2559 bool = false + yyq2559[0] = x.Phase != "" + var yynn2559 int + if yyr2559 || yy2arr2559 { r.EncodeArrayStart(1) } else { - yynn2540 = 0 - for _, b := range yyq2540 { + yynn2559 = 0 + for _, b := range yyq2559 { if b { - yynn2540++ + yynn2559++ } } - r.EncodeMapStart(yynn2540) - yynn2540 = 0 + r.EncodeMapStart(yynn2559) + yynn2559 = 0 } - if yyr2540 || yy2arr2540 { + if yyr2559 || yy2arr2559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2540[0] { + if yyq2559[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2540[0] { + if yyq2559[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2540 || yy2arr2540 { + if yyr2559 || yy2arr2559 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32330,25 +32603,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2542 := z.DecBinary() - _ = yym2542 + yym2561 := z.DecBinary() + _ = yym2561 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2543 := r.ContainerType() - if yyct2543 == codecSelferValueTypeMap1234 { - yyl2543 := r.ReadMapStart() - if yyl2543 == 0 { + yyct2562 := r.ContainerType() + if yyct2562 == codecSelferValueTypeMap1234 { + yyl2562 := r.ReadMapStart() + if yyl2562 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2543, d) + x.codecDecodeSelfFromMap(yyl2562, d) } - } else if yyct2543 == codecSelferValueTypeArray1234 { - yyl2543 := r.ReadArrayStart() - if yyl2543 == 0 { + } else if yyct2562 == codecSelferValueTypeArray1234 { + yyl2562 := r.ReadArrayStart() + if yyl2562 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2543, d) + x.codecDecodeSelfFromArray(yyl2562, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32360,12 +32633,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2544Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2544Slc - var yyhl2544 bool = l >= 0 - for yyj2544 := 0; ; yyj2544++ { - if yyhl2544 { - if yyj2544 >= l { + var yys2563Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2563Slc + var yyhl2563 bool = l >= 0 + for yyj2563 := 0; ; yyj2563++ { + if yyhl2563 { + if yyj2563 >= l { break } } else { @@ -32374,10 +32647,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2544Slc = r.DecodeBytes(yys2544Slc, true, true) - yys2544 := string(yys2544Slc) + yys2563Slc = r.DecodeBytes(yys2563Slc, true, true) + yys2563 := string(yys2563Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2544 { + switch yys2563 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -32385,9 +32658,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2544) - } // end switch yys2544 - } // end for yyj2544 + z.DecStructFieldNotFound(-1, yys2563) + } // end switch yys2563 + } // end for yyj2563 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32395,16 +32668,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2546 int - var yyb2546 bool - var yyhl2546 bool = l >= 0 - yyj2546++ - if yyhl2546 { - yyb2546 = yyj2546 > l + var yyj2565 int + var yyb2565 bool + var yyhl2565 bool = l >= 0 + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2546 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2546 { + if yyb2565 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32415,17 +32688,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj2546++ - if yyhl2546 { - yyb2546 = yyj2546 > l + yyj2565++ + if yyhl2565 { + yyb2565 = yyj2565 > l } else { - yyb2546 = r.CheckBreak() + yyb2565 = r.CheckBreak() } - if yyb2546 { + if yyb2565 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2546-1, "") + z.DecStructFieldNotFound(yyj2565-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32434,8 +32707,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2548 := z.EncBinary() - _ = yym2548 + yym2567 := z.EncBinary() + _ = yym2567 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32447,8 +32720,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2549 := z.DecBinary() - _ = yym2549 + yym2568 := z.DecBinary() + _ = yym2568 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32463,39 +32736,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2550 := z.EncBinary() - _ = yym2550 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2551 := !z.EncBinary() - yy2arr2551 := z.EncBasicHandle().StructToArray - var yyq2551 [5]bool - _, _, _ = yysep2551, yyq2551, yy2arr2551 - const yyr2551 bool = false - yyq2551[0] = x.Kind != "" - yyq2551[1] = x.APIVersion != "" - yyq2551[2] = true - yyq2551[3] = true - yyq2551[4] = true - var yynn2551 int - if yyr2551 || yy2arr2551 { + yysep2570 := !z.EncBinary() + yy2arr2570 := z.EncBasicHandle().StructToArray + var yyq2570 [5]bool + _, _, _ = yysep2570, yyq2570, yy2arr2570 + const yyr2570 bool = false + yyq2570[0] = x.Kind != "" + yyq2570[1] = x.APIVersion != "" + yyq2570[2] = true + yyq2570[3] = true + yyq2570[4] = true + var yynn2570 int + if yyr2570 || yy2arr2570 { r.EncodeArrayStart(5) } else { - yynn2551 = 0 - for _, b := range yyq2551 { + yynn2570 = 0 + for _, b := range yyq2570 { if b { - yynn2551++ + yynn2570++ } } - r.EncodeMapStart(yynn2551) - yynn2551 = 0 + r.EncodeMapStart(yynn2570) + yynn2570 = 0 } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[0] { - yym2553 := z.EncBinary() - _ = yym2553 + if yyq2570[0] { + yym2572 := z.EncBinary() + _ = yym2572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32504,23 +32777,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2551[0] { + if yyq2570[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2554 := z.EncBinary() - _ = yym2554 + yym2573 := z.EncBinary() + _ = yym2573 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[1] { - yym2556 := z.EncBinary() - _ = yym2556 + if yyq2570[1] { + yym2575 := z.EncBinary() + _ = yym2575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32529,70 +32802,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2551[1] { + if yyq2570[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2557 := z.EncBinary() - _ = yym2557 + yym2576 := z.EncBinary() + _ = yym2576 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[2] { - yy2559 := &x.ObjectMeta - yy2559.CodecEncodeSelf(e) + if yyq2570[2] { + yy2578 := &x.ObjectMeta + yy2578.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2551[2] { + if yyq2570[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2560 := &x.ObjectMeta - yy2560.CodecEncodeSelf(e) + yy2579 := &x.ObjectMeta + yy2579.CodecEncodeSelf(e) } } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[3] { - yy2562 := &x.Spec - yy2562.CodecEncodeSelf(e) + if yyq2570[3] { + yy2581 := &x.Spec + yy2581.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2551[3] { + if yyq2570[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2563 := &x.Spec - yy2563.CodecEncodeSelf(e) + yy2582 := &x.Spec + yy2582.CodecEncodeSelf(e) } } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2551[4] { - yy2565 := &x.Status - yy2565.CodecEncodeSelf(e) + if yyq2570[4] { + yy2584 := &x.Status + yy2584.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2551[4] { + if yyq2570[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2566 := &x.Status - yy2566.CodecEncodeSelf(e) + yy2585 := &x.Status + yy2585.CodecEncodeSelf(e) } } - if yyr2551 || yy2arr2551 { + if yyr2570 || yy2arr2570 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32605,25 +32878,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2567 := z.DecBinary() - _ = yym2567 + yym2586 := z.DecBinary() + _ = yym2586 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2568 := r.ContainerType() - if yyct2568 == codecSelferValueTypeMap1234 { - yyl2568 := r.ReadMapStart() - if yyl2568 == 0 { + yyct2587 := r.ContainerType() + if yyct2587 == codecSelferValueTypeMap1234 { + yyl2587 := r.ReadMapStart() + if yyl2587 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2568, d) + x.codecDecodeSelfFromMap(yyl2587, d) } - } else if yyct2568 == codecSelferValueTypeArray1234 { - yyl2568 := r.ReadArrayStart() - if yyl2568 == 0 { + } else if yyct2587 == codecSelferValueTypeArray1234 { + yyl2587 := r.ReadArrayStart() + if yyl2587 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2568, d) + x.codecDecodeSelfFromArray(yyl2587, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32635,12 +32908,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2569Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2569Slc - var yyhl2569 bool = l >= 0 - for yyj2569 := 0; ; yyj2569++ { - if yyhl2569 { - if yyj2569 >= l { + var yys2588Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2588Slc + var yyhl2588 bool = l >= 0 + for yyj2588 := 0; ; yyj2588++ { + if yyhl2588 { + if yyj2588 >= l { break } } else { @@ -32649,10 +32922,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2569Slc = r.DecodeBytes(yys2569Slc, true, true) - yys2569 := string(yys2569Slc) + yys2588Slc = r.DecodeBytes(yys2588Slc, true, true) + yys2588 := string(yys2588Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2569 { + switch yys2588 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32669,27 +32942,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2572 := &x.ObjectMeta - yyv2572.CodecDecodeSelf(d) + yyv2591 := &x.ObjectMeta + yyv2591.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2573 := &x.Spec - yyv2573.CodecDecodeSelf(d) + yyv2592 := &x.Spec + yyv2592.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2574 := &x.Status - yyv2574.CodecDecodeSelf(d) + yyv2593 := &x.Status + yyv2593.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2569) - } // end switch yys2569 - } // end for yyj2569 + z.DecStructFieldNotFound(-1, yys2588) + } // end switch yys2588 + } // end for yyj2588 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32697,16 +32970,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2575 int - var yyb2575 bool - var yyhl2575 bool = l >= 0 - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + var yyj2594 int + var yyb2594 bool + var yyhl2594 bool = l >= 0 + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32716,13 +32989,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32732,13 +33005,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32746,16 +33019,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2578 := &x.ObjectMeta - yyv2578.CodecDecodeSelf(d) + yyv2597 := &x.ObjectMeta + yyv2597.CodecDecodeSelf(d) } - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32763,16 +33036,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2579 := &x.Spec - yyv2579.CodecDecodeSelf(d) + yyv2598 := &x.Spec + yyv2598.CodecDecodeSelf(d) } - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32780,21 +33053,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2580 := &x.Status - yyv2580.CodecDecodeSelf(d) + yyv2599 := &x.Status + yyv2599.CodecDecodeSelf(d) } for { - yyj2575++ - if yyhl2575 { - yyb2575 = yyj2575 > l + yyj2594++ + if yyhl2594 { + yyb2594 = yyj2594 > l } else { - yyb2575 = r.CheckBreak() + yyb2594 = r.CheckBreak() } - if yyb2575 { + if yyb2594 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2575-1, "") + z.DecStructFieldNotFound(yyj2594-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32806,37 +33079,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2581 := z.EncBinary() - _ = yym2581 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2582 := !z.EncBinary() - yy2arr2582 := z.EncBasicHandle().StructToArray - var yyq2582 [4]bool - _, _, _ = yysep2582, yyq2582, yy2arr2582 - const yyr2582 bool = false - yyq2582[0] = x.Kind != "" - yyq2582[1] = x.APIVersion != "" - yyq2582[2] = true - var yynn2582 int - if yyr2582 || yy2arr2582 { + yysep2601 := !z.EncBinary() + yy2arr2601 := z.EncBasicHandle().StructToArray + var yyq2601 [4]bool + _, _, _ = yysep2601, yyq2601, yy2arr2601 + const yyr2601 bool = false + yyq2601[0] = x.Kind != "" + yyq2601[1] = x.APIVersion != "" + yyq2601[2] = true + var yynn2601 int + if yyr2601 || yy2arr2601 { r.EncodeArrayStart(4) } else { - yynn2582 = 1 - for _, b := range yyq2582 { + yynn2601 = 1 + for _, b := range yyq2601 { if b { - yynn2582++ + yynn2601++ } } - r.EncodeMapStart(yynn2582) - yynn2582 = 0 + r.EncodeMapStart(yynn2601) + yynn2601 = 0 } - if yyr2582 || yy2arr2582 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[0] { - yym2584 := z.EncBinary() - _ = yym2584 + if yyq2601[0] { + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32845,23 +33118,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2582[0] { + if yyq2601[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2585 := z.EncBinary() - _ = yym2585 + yym2604 := z.EncBinary() + _ = yym2604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2582 || yy2arr2582 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[1] { - yym2587 := z.EncBinary() - _ = yym2587 + if yyq2601[1] { + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32870,54 +33143,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2582[1] { + if yyq2601[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2588 := z.EncBinary() - _ = yym2588 + yym2607 := z.EncBinary() + _ = yym2607 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2582 || yy2arr2582 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2582[2] { - yy2590 := &x.ListMeta - yym2591 := z.EncBinary() - _ = yym2591 + if yyq2601[2] { + yy2609 := &x.ListMeta + yym2610 := z.EncBinary() + _ = yym2610 if false { - } else if z.HasExtensions() && z.EncExt(yy2590) { + } else if z.HasExtensions() && z.EncExt(yy2609) { } else { - z.EncFallback(yy2590) + z.EncFallback(yy2609) } } else { r.EncodeNil() } } else { - if yyq2582[2] { + if yyq2601[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2592 := &x.ListMeta - yym2593 := z.EncBinary() - _ = yym2593 + yy2611 := &x.ListMeta + yym2612 := z.EncBinary() + _ = yym2612 if false { - } else if z.HasExtensions() && z.EncExt(yy2592) { + } else if z.HasExtensions() && z.EncExt(yy2611) { } else { - z.EncFallback(yy2592) + z.EncFallback(yy2611) } } } - if yyr2582 || yy2arr2582 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2595 := z.EncBinary() - _ = yym2595 + yym2614 := z.EncBinary() + _ = yym2614 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -32930,15 +33203,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2596 := z.EncBinary() - _ = yym2596 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr2582 || yy2arr2582 { + if yyr2601 || yy2arr2601 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32951,25 +33224,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2597 := z.DecBinary() - _ = yym2597 + yym2616 := z.DecBinary() + _ = yym2616 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2598 := r.ContainerType() - if yyct2598 == codecSelferValueTypeMap1234 { - yyl2598 := r.ReadMapStart() - if yyl2598 == 0 { + yyct2617 := r.ContainerType() + if yyct2617 == codecSelferValueTypeMap1234 { + yyl2617 := r.ReadMapStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2598, d) + x.codecDecodeSelfFromMap(yyl2617, d) } - } else if yyct2598 == codecSelferValueTypeArray1234 { - yyl2598 := r.ReadArrayStart() - if yyl2598 == 0 { + } else if yyct2617 == codecSelferValueTypeArray1234 { + yyl2617 := r.ReadArrayStart() + if yyl2617 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2598, d) + x.codecDecodeSelfFromArray(yyl2617, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32981,12 +33254,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2599Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2599Slc - var yyhl2599 bool = l >= 0 - for yyj2599 := 0; ; yyj2599++ { - if yyhl2599 { - if yyj2599 >= l { + var yys2618Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2618Slc + var yyhl2618 bool = l >= 0 + for yyj2618 := 0; ; yyj2618++ { + if yyhl2618 { + if yyj2618 >= l { break } } else { @@ -32995,10 +33268,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2599Slc = r.DecodeBytes(yys2599Slc, true, true) - yys2599 := string(yys2599Slc) + yys2618Slc = r.DecodeBytes(yys2618Slc, true, true) + yys2618 := string(yys2618Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2599 { + switch yys2618 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33015,31 +33288,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2602 := &x.ListMeta - yym2603 := z.DecBinary() - _ = yym2603 + yyv2621 := &x.ListMeta + yym2622 := z.DecBinary() + _ = yym2622 if false { - } else if z.HasExtensions() && z.DecExt(yyv2602) { + } else if z.HasExtensions() && z.DecExt(yyv2621) { } else { - z.DecFallback(yyv2602, false) + z.DecFallback(yyv2621, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2604 := &x.Items - yym2605 := z.DecBinary() - _ = yym2605 + yyv2623 := &x.Items + yym2624 := z.DecBinary() + _ = yym2624 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2604), d) + h.decSliceNamespace((*[]Namespace)(yyv2623), d) } } default: - z.DecStructFieldNotFound(-1, yys2599) - } // end switch yys2599 - } // end for yyj2599 + z.DecStructFieldNotFound(-1, yys2618) + } // end switch yys2618 + } // end for yyj2618 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33047,16 +33320,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2606 int - var yyb2606 bool - var yyhl2606 bool = l >= 0 - yyj2606++ - if yyhl2606 { - yyb2606 = yyj2606 > l + var yyj2625 int + var yyb2625 bool + var yyhl2625 bool = l >= 0 + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2606 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2606 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33066,13 +33339,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2606++ - if yyhl2606 { - yyb2606 = yyj2606 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2606 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2606 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33082,13 +33355,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2606++ - if yyhl2606 { - yyb2606 = yyj2606 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2606 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2606 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33096,22 +33369,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2609 := &x.ListMeta - yym2610 := z.DecBinary() - _ = yym2610 + yyv2628 := &x.ListMeta + yym2629 := z.DecBinary() + _ = yym2629 if false { - } else if z.HasExtensions() && z.DecExt(yyv2609) { + } else if z.HasExtensions() && z.DecExt(yyv2628) { } else { - z.DecFallback(yyv2609, false) + z.DecFallback(yyv2628, false) } } - yyj2606++ - if yyhl2606 { - yyb2606 = yyj2606 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2606 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2606 { + if yyb2625 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33119,26 +33392,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2611 := &x.Items - yym2612 := z.DecBinary() - _ = yym2612 + yyv2630 := &x.Items + yym2631 := z.DecBinary() + _ = yym2631 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2611), d) + h.decSliceNamespace((*[]Namespace)(yyv2630), d) } } for { - yyj2606++ - if yyhl2606 { - yyb2606 = yyj2606 > l + yyj2625++ + if yyhl2625 { + yyb2625 = yyj2625 > l } else { - yyb2606 = r.CheckBreak() + yyb2625 = r.CheckBreak() } - if yyb2606 { + if yyb2625 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2606-1, "") + z.DecStructFieldNotFound(yyj2625-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33150,37 +33423,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2613 := z.EncBinary() - _ = yym2613 + yym2632 := z.EncBinary() + _ = yym2632 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2614 := !z.EncBinary() - yy2arr2614 := z.EncBasicHandle().StructToArray - var yyq2614 [4]bool - _, _, _ = yysep2614, yyq2614, yy2arr2614 - const yyr2614 bool = false - yyq2614[0] = x.Kind != "" - yyq2614[1] = x.APIVersion != "" - yyq2614[2] = true - var yynn2614 int - if yyr2614 || yy2arr2614 { + yysep2633 := !z.EncBinary() + yy2arr2633 := z.EncBasicHandle().StructToArray + var yyq2633 [4]bool + _, _, _ = yysep2633, yyq2633, yy2arr2633 + const yyr2633 bool = false + yyq2633[0] = x.Kind != "" + yyq2633[1] = x.APIVersion != "" + yyq2633[2] = true + var yynn2633 int + if yyr2633 || yy2arr2633 { r.EncodeArrayStart(4) } else { - yynn2614 = 1 - for _, b := range yyq2614 { + yynn2633 = 1 + for _, b := range yyq2633 { if b { - yynn2614++ + yynn2633++ } } - r.EncodeMapStart(yynn2614) - yynn2614 = 0 + r.EncodeMapStart(yynn2633) + yynn2633 = 0 } - if yyr2614 || yy2arr2614 { + if yyr2633 || yy2arr2633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2614[0] { - yym2616 := z.EncBinary() - _ = yym2616 + if yyq2633[0] { + yym2635 := z.EncBinary() + _ = yym2635 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33189,23 +33462,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2614[0] { + if yyq2633[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2617 := z.EncBinary() - _ = yym2617 + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2614 || yy2arr2614 { + if yyr2633 || yy2arr2633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2614[1] { - yym2619 := z.EncBinary() - _ = yym2619 + if yyq2633[1] { + yym2638 := z.EncBinary() + _ = yym2638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33214,47 +33487,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2614[1] { + if yyq2633[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2620 := z.EncBinary() - _ = yym2620 + yym2639 := z.EncBinary() + _ = yym2639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2614 || yy2arr2614 { + if yyr2633 || yy2arr2633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2614[2] { - yy2622 := &x.ObjectMeta - yy2622.CodecEncodeSelf(e) + if yyq2633[2] { + yy2641 := &x.ObjectMeta + yy2641.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2614[2] { + if yyq2633[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2623 := &x.ObjectMeta - yy2623.CodecEncodeSelf(e) + yy2642 := &x.ObjectMeta + yy2642.CodecEncodeSelf(e) } } - if yyr2614 || yy2arr2614 { + if yyr2633 || yy2arr2633 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2625 := &x.Target - yy2625.CodecEncodeSelf(e) + yy2644 := &x.Target + yy2644.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2626 := &x.Target - yy2626.CodecEncodeSelf(e) + yy2645 := &x.Target + yy2645.CodecEncodeSelf(e) } - if yyr2614 || yy2arr2614 { + if yyr2633 || yy2arr2633 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33267,25 +33540,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2627 := z.DecBinary() - _ = yym2627 + yym2646 := z.DecBinary() + _ = yym2646 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2628 := r.ContainerType() - if yyct2628 == codecSelferValueTypeMap1234 { - yyl2628 := r.ReadMapStart() - if yyl2628 == 0 { + yyct2647 := r.ContainerType() + if yyct2647 == codecSelferValueTypeMap1234 { + yyl2647 := r.ReadMapStart() + if yyl2647 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2628, d) + x.codecDecodeSelfFromMap(yyl2647, d) } - } else if yyct2628 == codecSelferValueTypeArray1234 { - yyl2628 := r.ReadArrayStart() - if yyl2628 == 0 { + } else if yyct2647 == codecSelferValueTypeArray1234 { + yyl2647 := r.ReadArrayStart() + if yyl2647 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2628, d) + x.codecDecodeSelfFromArray(yyl2647, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33297,12 +33570,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2629Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2629Slc - var yyhl2629 bool = l >= 0 - for yyj2629 := 0; ; yyj2629++ { - if yyhl2629 { - if yyj2629 >= l { + var yys2648Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2648Slc + var yyhl2648 bool = l >= 0 + for yyj2648 := 0; ; yyj2648++ { + if yyhl2648 { + if yyj2648 >= l { break } } else { @@ -33311,10 +33584,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2629Slc = r.DecodeBytes(yys2629Slc, true, true) - yys2629 := string(yys2629Slc) + yys2648Slc = r.DecodeBytes(yys2648Slc, true, true) + yys2648 := string(yys2648Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2629 { + switch yys2648 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33331,20 +33604,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2632 := &x.ObjectMeta - yyv2632.CodecDecodeSelf(d) + yyv2651 := &x.ObjectMeta + yyv2651.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2633 := &x.Target - yyv2633.CodecDecodeSelf(d) + yyv2652 := &x.Target + yyv2652.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2629) - } // end switch yys2629 - } // end for yyj2629 + z.DecStructFieldNotFound(-1, yys2648) + } // end switch yys2648 + } // end for yyj2648 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33352,16 +33625,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2634 int - var yyb2634 bool - var yyhl2634 bool = l >= 0 - yyj2634++ - if yyhl2634 { - yyb2634 = yyj2634 > l + var yyj2653 int + var yyb2653 bool + var yyhl2653 bool = l >= 0 + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2634 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2634 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33371,13 +33644,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2634++ - if yyhl2634 { - yyb2634 = yyj2634 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2634 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2634 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33387,13 +33660,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2634++ - if yyhl2634 { - yyb2634 = yyj2634 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2634 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2634 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33401,16 +33674,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2637 := &x.ObjectMeta - yyv2637.CodecDecodeSelf(d) + yyv2656 := &x.ObjectMeta + yyv2656.CodecDecodeSelf(d) } - yyj2634++ - if yyhl2634 { - yyb2634 = yyj2634 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2634 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2634 { + if yyb2653 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33418,21 +33691,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2638 := &x.Target - yyv2638.CodecDecodeSelf(d) + yyv2657 := &x.Target + yyv2657.CodecDecodeSelf(d) } for { - yyj2634++ - if yyhl2634 { - yyb2634 = yyj2634 > l + yyj2653++ + if yyhl2653 { + yyb2653 = yyj2653 > l } else { - yyb2634 = r.CheckBreak() + yyb2653 = r.CheckBreak() } - if yyb2634 { + if yyb2653 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2634-1, "") + z.DecStructFieldNotFound(yyj2653-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33444,36 +33717,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2639 := z.EncBinary() - _ = yym2639 + yym2658 := z.EncBinary() + _ = yym2658 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2640 := !z.EncBinary() - yy2arr2640 := z.EncBasicHandle().StructToArray - var yyq2640 [3]bool - _, _, _ = yysep2640, yyq2640, yy2arr2640 - const yyr2640 bool = false - yyq2640[0] = x.Kind != "" - yyq2640[1] = x.APIVersion != "" - var yynn2640 int - if yyr2640 || yy2arr2640 { + yysep2659 := !z.EncBinary() + yy2arr2659 := z.EncBasicHandle().StructToArray + var yyq2659 [3]bool + _, _, _ = yysep2659, yyq2659, yy2arr2659 + const yyr2659 bool = false + yyq2659[0] = x.Kind != "" + yyq2659[1] = x.APIVersion != "" + var yynn2659 int + if yyr2659 || yy2arr2659 { r.EncodeArrayStart(3) } else { - yynn2640 = 1 - for _, b := range yyq2640 { + yynn2659 = 1 + for _, b := range yyq2659 { if b { - yynn2640++ + yynn2659++ } } - r.EncodeMapStart(yynn2640) - yynn2640 = 0 + r.EncodeMapStart(yynn2659) + yynn2659 = 0 } - if yyr2640 || yy2arr2640 { + if yyr2659 || yy2arr2659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2640[0] { - yym2642 := z.EncBinary() - _ = yym2642 + if yyq2659[0] { + yym2661 := z.EncBinary() + _ = yym2661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33482,23 +33755,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2640[0] { + if yyq2659[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2643 := z.EncBinary() - _ = yym2643 + yym2662 := z.EncBinary() + _ = yym2662 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2640 || yy2arr2640 { + if yyr2659 || yy2arr2659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2640[1] { - yym2645 := z.EncBinary() - _ = yym2645 + if yyq2659[1] { + yym2664 := z.EncBinary() + _ = yym2664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33507,29 +33780,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2640[1] { + if yyq2659[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2646 := z.EncBinary() - _ = yym2646 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2640 || yy2arr2640 { + if yyr2659 || yy2arr2659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2648 := *x.GracePeriodSeconds - yym2649 := z.EncBinary() - _ = yym2649 + yy2667 := *x.GracePeriodSeconds + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { - r.EncodeInt(int64(yy2648)) + r.EncodeInt(int64(yy2667)) } } } else { @@ -33539,16 +33812,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2650 := *x.GracePeriodSeconds - yym2651 := z.EncBinary() - _ = yym2651 + yy2669 := *x.GracePeriodSeconds + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { - r.EncodeInt(int64(yy2650)) + r.EncodeInt(int64(yy2669)) } } } - if yyr2640 || yy2arr2640 { + if yyr2659 || yy2arr2659 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33561,25 +33834,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2652 := z.DecBinary() - _ = yym2652 + yym2671 := z.DecBinary() + _ = yym2671 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2653 := r.ContainerType() - if yyct2653 == codecSelferValueTypeMap1234 { - yyl2653 := r.ReadMapStart() - if yyl2653 == 0 { + yyct2672 := r.ContainerType() + if yyct2672 == codecSelferValueTypeMap1234 { + yyl2672 := r.ReadMapStart() + if yyl2672 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2653, d) + x.codecDecodeSelfFromMap(yyl2672, d) } - } else if yyct2653 == codecSelferValueTypeArray1234 { - yyl2653 := r.ReadArrayStart() - if yyl2653 == 0 { + } else if yyct2672 == codecSelferValueTypeArray1234 { + yyl2672 := r.ReadArrayStart() + if yyl2672 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2653, d) + x.codecDecodeSelfFromArray(yyl2672, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33591,12 +33864,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2654Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2654Slc - var yyhl2654 bool = l >= 0 - for yyj2654 := 0; ; yyj2654++ { - if yyhl2654 { - if yyj2654 >= l { + var yys2673Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2673Slc + var yyhl2673 bool = l >= 0 + for yyj2673 := 0; ; yyj2673++ { + if yyhl2673 { + if yyj2673 >= l { break } } else { @@ -33605,10 +33878,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2654Slc = r.DecodeBytes(yys2654Slc, true, true) - yys2654 := string(yys2654Slc) + yys2673Slc = r.DecodeBytes(yys2673Slc, true, true) + yys2673 := string(yys2673Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2654 { + switch yys2673 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33630,17 +33903,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2658 := z.DecBinary() - _ = yym2658 + yym2677 := z.DecBinary() + _ = yym2677 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2654) - } // end switch yys2654 - } // end for yyj2654 + z.DecStructFieldNotFound(-1, yys2673) + } // end switch yys2673 + } // end for yyj2673 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33648,16 +33921,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2659 int - var yyb2659 bool - var yyhl2659 bool = l >= 0 - yyj2659++ - if yyhl2659 { - yyb2659 = yyj2659 > l + var yyj2678 int + var yyb2678 bool + var yyhl2678 bool = l >= 0 + yyj2678++ + if yyhl2678 { + yyb2678 = yyj2678 > l } else { - yyb2659 = r.CheckBreak() + yyb2678 = r.CheckBreak() } - if yyb2659 { + if yyb2678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33667,13 +33940,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2659++ - if yyhl2659 { - yyb2659 = yyj2659 > l + yyj2678++ + if yyhl2678 { + yyb2678 = yyj2678 > l } else { - yyb2659 = r.CheckBreak() + yyb2678 = r.CheckBreak() } - if yyb2659 { + if yyb2678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33683,13 +33956,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2659++ - if yyhl2659 { - yyb2659 = yyj2659 > l + yyj2678++ + if yyhl2678 { + yyb2678 = yyj2678 > l } else { - yyb2659 = r.CheckBreak() + yyb2678 = r.CheckBreak() } - if yyb2659 { + if yyb2678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33702,25 +33975,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2663 := z.DecBinary() - _ = yym2663 + yym2682 := z.DecBinary() + _ = yym2682 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2659++ - if yyhl2659 { - yyb2659 = yyj2659 > l + yyj2678++ + if yyhl2678 { + yyb2678 = yyj2678 > l } else { - yyb2659 = r.CheckBreak() + yyb2678 = r.CheckBreak() } - if yyb2659 { + if yyb2678 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2659-1, "") + z.DecStructFieldNotFound(yyj2678-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33732,36 +34005,36 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2664 := z.EncBinary() - _ = yym2664 + yym2683 := z.EncBinary() + _ = yym2683 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2665 := !z.EncBinary() - yy2arr2665 := z.EncBasicHandle().StructToArray - var yyq2665 [4]bool - _, _, _ = yysep2665, yyq2665, yy2arr2665 - const yyr2665 bool = false - yyq2665[0] = x.Kind != "" - yyq2665[1] = x.APIVersion != "" - var yynn2665 int - if yyr2665 || yy2arr2665 { + yysep2684 := !z.EncBinary() + yy2arr2684 := z.EncBasicHandle().StructToArray + var yyq2684 [4]bool + _, _, _ = yysep2684, yyq2684, yy2arr2684 + const yyr2684 bool = false + yyq2684[0] = x.Kind != "" + yyq2684[1] = x.APIVersion != "" + var yynn2684 int + if yyr2684 || yy2arr2684 { r.EncodeArrayStart(4) } else { - yynn2665 = 2 - for _, b := range yyq2665 { + yynn2684 = 2 + for _, b := range yyq2684 { if b { - yynn2665++ + yynn2684++ } } - r.EncodeMapStart(yynn2665) - yynn2665 = 0 + r.EncodeMapStart(yynn2684) + yynn2684 = 0 } - if yyr2665 || yy2arr2665 { + if yyr2684 || yy2arr2684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2665[0] { - yym2667 := z.EncBinary() - _ = yym2667 + if yyq2684[0] { + yym2686 := z.EncBinary() + _ = yym2686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33770,23 +34043,23 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2665[0] { + if yyq2684[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2668 := z.EncBinary() - _ = yym2668 + yym2687 := z.EncBinary() + _ = yym2687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2665 || yy2arr2665 { + if yyr2684 || yy2arr2684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2665[1] { - yym2670 := z.EncBinary() - _ = yym2670 + if yyq2684[1] { + yym2689 := z.EncBinary() + _ = yym2689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33795,22 +34068,22 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2665[1] { + if yyq2684[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2671 := z.EncBinary() - _ = yym2671 + yym2690 := z.EncBinary() + _ = yym2690 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2665 || yy2arr2665 { + if yyr2684 || yy2arr2684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2673 := z.EncBinary() - _ = yym2673 + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { r.EncodeBool(bool(x.Export)) @@ -33819,17 +34092,17 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("export")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2674 := z.EncBinary() - _ = yym2674 + yym2693 := z.EncBinary() + _ = yym2693 if false { } else { r.EncodeBool(bool(x.Export)) } } - if yyr2665 || yy2arr2665 { + if yyr2684 || yy2arr2684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2676 := z.EncBinary() - _ = yym2676 + yym2695 := z.EncBinary() + _ = yym2695 if false { } else { r.EncodeBool(bool(x.Exact)) @@ -33838,14 +34111,14 @@ func (x *ExportOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exact")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2677 := z.EncBinary() - _ = yym2677 + yym2696 := z.EncBinary() + _ = yym2696 if false { } else { r.EncodeBool(bool(x.Exact)) } } - if yyr2665 || yy2arr2665 { + if yyr2684 || yy2arr2684 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33858,25 +34131,25 @@ func (x *ExportOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2678 := z.DecBinary() - _ = yym2678 + yym2697 := z.DecBinary() + _ = yym2697 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2679 := r.ContainerType() - if yyct2679 == codecSelferValueTypeMap1234 { - yyl2679 := r.ReadMapStart() - if yyl2679 == 0 { + yyct2698 := r.ContainerType() + if yyct2698 == codecSelferValueTypeMap1234 { + yyl2698 := r.ReadMapStart() + if yyl2698 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2679, d) + x.codecDecodeSelfFromMap(yyl2698, d) } - } else if yyct2679 == codecSelferValueTypeArray1234 { - yyl2679 := r.ReadArrayStart() - if yyl2679 == 0 { + } else if yyct2698 == codecSelferValueTypeArray1234 { + yyl2698 := r.ReadArrayStart() + if yyl2698 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2679, d) + x.codecDecodeSelfFromArray(yyl2698, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33888,12 +34161,12 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2680Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2680Slc - var yyhl2680 bool = l >= 0 - for yyj2680 := 0; ; yyj2680++ { - if yyhl2680 { - if yyj2680 >= l { + var yys2699Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2699Slc + var yyhl2699 bool = l >= 0 + for yyj2699 := 0; ; yyj2699++ { + if yyhl2699 { + if yyj2699 >= l { break } } else { @@ -33902,10 +34175,10 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2680Slc = r.DecodeBytes(yys2680Slc, true, true) - yys2680 := string(yys2680Slc) + yys2699Slc = r.DecodeBytes(yys2699Slc, true, true) + yys2699 := string(yys2699Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2680 { + switch yys2699 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33931,9 +34204,9 @@ func (x *ExportOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2680) - } // end switch yys2680 - } // end for yyj2680 + z.DecStructFieldNotFound(-1, yys2699) + } // end switch yys2699 + } // end for yyj2699 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33941,16 +34214,16 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2685 int - var yyb2685 bool - var yyhl2685 bool = l >= 0 - yyj2685++ - if yyhl2685 { - yyb2685 = yyj2685 > l + var yyj2704 int + var yyb2704 bool + var yyhl2704 bool = l >= 0 + yyj2704++ + if yyhl2704 { + yyb2704 = yyj2704 > l } else { - yyb2685 = r.CheckBreak() + yyb2704 = r.CheckBreak() } - if yyb2685 { + if yyb2704 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33960,13 +34233,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2685++ - if yyhl2685 { - yyb2685 = yyj2685 > l + yyj2704++ + if yyhl2704 { + yyb2704 = yyj2704 > l } else { - yyb2685 = r.CheckBreak() + yyb2704 = r.CheckBreak() } - if yyb2685 { + if yyb2704 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33976,13 +34249,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2685++ - if yyhl2685 { - yyb2685 = yyj2685 > l + yyj2704++ + if yyhl2704 { + yyb2704 = yyj2704 > l } else { - yyb2685 = r.CheckBreak() + yyb2704 = r.CheckBreak() } - if yyb2685 { + if yyb2704 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33992,13 +34265,13 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Export = bool(r.DecodeBool()) } - yyj2685++ - if yyhl2685 { - yyb2685 = yyj2685 > l + yyj2704++ + if yyhl2704 { + yyb2704 = yyj2704 > l } else { - yyb2685 = r.CheckBreak() + yyb2704 = r.CheckBreak() } - if yyb2685 { + if yyb2704 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34009,17 +34282,17 @@ func (x *ExportOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Exact = bool(r.DecodeBool()) } for { - yyj2685++ - if yyhl2685 { - yyb2685 = yyj2685 > l + yyj2704++ + if yyhl2704 { + yyb2704 = yyj2704 > l } else { - yyb2685 = r.CheckBreak() + yyb2704 = r.CheckBreak() } - if yyb2685 { + if yyb2704 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2685-1, "") + z.DecStructFieldNotFound(yyj2704-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34031,41 +34304,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2690 := z.EncBinary() - _ = yym2690 + yym2709 := z.EncBinary() + _ = yym2709 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2691 := !z.EncBinary() - yy2arr2691 := z.EncBasicHandle().StructToArray - var yyq2691 [7]bool - _, _, _ = yysep2691, yyq2691, yy2arr2691 - const yyr2691 bool = false - yyq2691[0] = x.Kind != "" - yyq2691[1] = x.APIVersion != "" - yyq2691[2] = x.LabelSelector != "" - yyq2691[3] = x.FieldSelector != "" - yyq2691[4] = x.Watch != false - yyq2691[5] = x.ResourceVersion != "" - yyq2691[6] = x.TimeoutSeconds != nil - var yynn2691 int - if yyr2691 || yy2arr2691 { + yysep2710 := !z.EncBinary() + yy2arr2710 := z.EncBasicHandle().StructToArray + var yyq2710 [7]bool + _, _, _ = yysep2710, yyq2710, yy2arr2710 + const yyr2710 bool = false + yyq2710[0] = x.Kind != "" + yyq2710[1] = x.APIVersion != "" + yyq2710[2] = x.LabelSelector != "" + yyq2710[3] = x.FieldSelector != "" + yyq2710[4] = x.Watch != false + yyq2710[5] = x.ResourceVersion != "" + yyq2710[6] = x.TimeoutSeconds != nil + var yynn2710 int + if yyr2710 || yy2arr2710 { r.EncodeArrayStart(7) } else { - yynn2691 = 0 - for _, b := range yyq2691 { + yynn2710 = 0 + for _, b := range yyq2710 { if b { - yynn2691++ + yynn2710++ } } - r.EncodeMapStart(yynn2691) - yynn2691 = 0 + r.EncodeMapStart(yynn2710) + yynn2710 = 0 } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[0] { - yym2693 := z.EncBinary() - _ = yym2693 + if yyq2710[0] { + yym2712 := z.EncBinary() + _ = yym2712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34074,23 +34347,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2691[0] { + if yyq2710[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2694 := z.EncBinary() - _ = yym2694 + yym2713 := z.EncBinary() + _ = yym2713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[1] { - yym2696 := z.EncBinary() - _ = yym2696 + if yyq2710[1] { + yym2715 := z.EncBinary() + _ = yym2715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34099,23 +34372,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2691[1] { + if yyq2710[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2697 := z.EncBinary() - _ = yym2697 + yym2716 := z.EncBinary() + _ = yym2716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[2] { - yym2699 := z.EncBinary() - _ = yym2699 + if yyq2710[2] { + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -34124,23 +34397,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2691[2] { + if yyq2710[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2700 := z.EncBinary() - _ = yym2700 + yym2719 := z.EncBinary() + _ = yym2719 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[3] { - yym2702 := z.EncBinary() - _ = yym2702 + if yyq2710[3] { + yym2721 := z.EncBinary() + _ = yym2721 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -34149,23 +34422,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2691[3] { + if yyq2710[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2703 := z.EncBinary() - _ = yym2703 + yym2722 := z.EncBinary() + _ = yym2722 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[4] { - yym2705 := z.EncBinary() - _ = yym2705 + if yyq2710[4] { + yym2724 := z.EncBinary() + _ = yym2724 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -34174,23 +34447,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2691[4] { + if yyq2710[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2706 := z.EncBinary() - _ = yym2706 + yym2725 := z.EncBinary() + _ = yym2725 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[5] { - yym2708 := z.EncBinary() - _ = yym2708 + if yyq2710[5] { + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -34199,54 +34472,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2691[5] { + if yyq2710[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2709 := z.EncBinary() - _ = yym2709 + yym2728 := z.EncBinary() + _ = yym2728 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2691[6] { + if yyq2710[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2711 := *x.TimeoutSeconds - yym2712 := z.EncBinary() - _ = yym2712 + yy2730 := *x.TimeoutSeconds + yym2731 := z.EncBinary() + _ = yym2731 if false { } else { - r.EncodeInt(int64(yy2711)) + r.EncodeInt(int64(yy2730)) } } } else { r.EncodeNil() } } else { - if yyq2691[6] { + if yyq2710[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2713 := *x.TimeoutSeconds - yym2714 := z.EncBinary() - _ = yym2714 + yy2732 := *x.TimeoutSeconds + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { - r.EncodeInt(int64(yy2713)) + r.EncodeInt(int64(yy2732)) } } } } - if yyr2691 || yy2arr2691 { + if yyr2710 || yy2arr2710 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34259,25 +34532,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2715 := z.DecBinary() - _ = yym2715 + yym2734 := z.DecBinary() + _ = yym2734 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2716 := r.ContainerType() - if yyct2716 == codecSelferValueTypeMap1234 { - yyl2716 := r.ReadMapStart() - if yyl2716 == 0 { + yyct2735 := r.ContainerType() + if yyct2735 == codecSelferValueTypeMap1234 { + yyl2735 := r.ReadMapStart() + if yyl2735 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2716, d) + x.codecDecodeSelfFromMap(yyl2735, d) } - } else if yyct2716 == codecSelferValueTypeArray1234 { - yyl2716 := r.ReadArrayStart() - if yyl2716 == 0 { + } else if yyct2735 == codecSelferValueTypeArray1234 { + yyl2735 := r.ReadArrayStart() + if yyl2735 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2716, d) + x.codecDecodeSelfFromArray(yyl2735, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34289,12 +34562,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2717Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2717Slc - var yyhl2717 bool = l >= 0 - for yyj2717 := 0; ; yyj2717++ { - if yyhl2717 { - if yyj2717 >= l { + var yys2736Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2736Slc + var yyhl2736 bool = l >= 0 + for yyj2736 := 0; ; yyj2736++ { + if yyhl2736 { + if yyj2736 >= l { break } } else { @@ -34303,10 +34576,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2717Slc = r.DecodeBytes(yys2717Slc, true, true) - yys2717 := string(yys2717Slc) + yys2736Slc = r.DecodeBytes(yys2736Slc, true, true) + yys2736 := string(yys2736Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2717 { + switch yys2736 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34352,17 +34625,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2725 := z.DecBinary() - _ = yym2725 + yym2744 := z.DecBinary() + _ = yym2744 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2717) - } // end switch yys2717 - } // end for yyj2717 + z.DecStructFieldNotFound(-1, yys2736) + } // end switch yys2736 + } // end for yyj2736 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34370,16 +34643,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2726 int - var yyb2726 bool - var yyhl2726 bool = l >= 0 - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + var yyj2745 int + var yyb2745 bool + var yyhl2745 bool = l >= 0 + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34389,13 +34662,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34405,13 +34678,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34421,13 +34694,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34437,13 +34710,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34453,13 +34726,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34469,13 +34742,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34488,25 +34761,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2734 := z.DecBinary() - _ = yym2734 + yym2753 := z.DecBinary() + _ = yym2753 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2726++ - if yyhl2726 { - yyb2726 = yyj2726 > l + yyj2745++ + if yyhl2745 { + yyb2745 = yyj2745 > l } else { - yyb2726 = r.CheckBreak() + yyb2745 = r.CheckBreak() } - if yyb2726 { + if yyb2745 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2726-1, "") + z.DecStructFieldNotFound(yyj2745-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34518,44 +34791,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2735 := z.EncBinary() - _ = yym2735 + yym2754 := z.EncBinary() + _ = yym2754 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2736 := !z.EncBinary() - yy2arr2736 := z.EncBasicHandle().StructToArray - var yyq2736 [10]bool - _, _, _ = yysep2736, yyq2736, yy2arr2736 - const yyr2736 bool = false - yyq2736[0] = x.Kind != "" - yyq2736[1] = x.APIVersion != "" - yyq2736[2] = x.Container != "" - yyq2736[3] = x.Follow != false - yyq2736[4] = x.Previous != false - yyq2736[5] = x.SinceSeconds != nil - yyq2736[6] = x.SinceTime != nil - yyq2736[7] = x.Timestamps != false - yyq2736[8] = x.TailLines != nil - yyq2736[9] = x.LimitBytes != nil - var yynn2736 int - if yyr2736 || yy2arr2736 { + yysep2755 := !z.EncBinary() + yy2arr2755 := z.EncBasicHandle().StructToArray + var yyq2755 [10]bool + _, _, _ = yysep2755, yyq2755, yy2arr2755 + const yyr2755 bool = false + yyq2755[0] = x.Kind != "" + yyq2755[1] = x.APIVersion != "" + yyq2755[2] = x.Container != "" + yyq2755[3] = x.Follow != false + yyq2755[4] = x.Previous != false + yyq2755[5] = x.SinceSeconds != nil + yyq2755[6] = x.SinceTime != nil + yyq2755[7] = x.Timestamps != false + yyq2755[8] = x.TailLines != nil + yyq2755[9] = x.LimitBytes != nil + var yynn2755 int + if yyr2755 || yy2arr2755 { r.EncodeArrayStart(10) } else { - yynn2736 = 0 - for _, b := range yyq2736 { + yynn2755 = 0 + for _, b := range yyq2755 { if b { - yynn2736++ + yynn2755++ } } - r.EncodeMapStart(yynn2736) - yynn2736 = 0 + r.EncodeMapStart(yynn2755) + yynn2755 = 0 } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[0] { - yym2738 := z.EncBinary() - _ = yym2738 + if yyq2755[0] { + yym2757 := z.EncBinary() + _ = yym2757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34564,23 +34837,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2736[0] { + if yyq2755[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2739 := z.EncBinary() - _ = yym2739 + yym2758 := z.EncBinary() + _ = yym2758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[1] { - yym2741 := z.EncBinary() - _ = yym2741 + if yyq2755[1] { + yym2760 := z.EncBinary() + _ = yym2760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34589,23 +34862,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2736[1] { + if yyq2755[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2742 := z.EncBinary() - _ = yym2742 + yym2761 := z.EncBinary() + _ = yym2761 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[2] { - yym2744 := z.EncBinary() - _ = yym2744 + if yyq2755[2] { + yym2763 := z.EncBinary() + _ = yym2763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -34614,23 +34887,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2736[2] { + if yyq2755[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2745 := z.EncBinary() - _ = yym2745 + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[3] { - yym2747 := z.EncBinary() - _ = yym2747 + if yyq2755[3] { + yym2766 := z.EncBinary() + _ = yym2766 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -34639,23 +34912,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2736[3] { + if yyq2755[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2748 := z.EncBinary() - _ = yym2748 + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[4] { - yym2750 := z.EncBinary() - _ = yym2750 + if yyq2755[4] { + yym2769 := z.EncBinary() + _ = yym2769 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -34664,66 +34937,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2736[4] { + if yyq2755[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2751 := z.EncBinary() - _ = yym2751 + yym2770 := z.EncBinary() + _ = yym2770 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[5] { + if yyq2755[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2753 := *x.SinceSeconds - yym2754 := z.EncBinary() - _ = yym2754 + yy2772 := *x.SinceSeconds + yym2773 := z.EncBinary() + _ = yym2773 if false { } else { - r.EncodeInt(int64(yy2753)) + r.EncodeInt(int64(yy2772)) } } } else { r.EncodeNil() } } else { - if yyq2736[5] { + if yyq2755[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2755 := *x.SinceSeconds - yym2756 := z.EncBinary() - _ = yym2756 + yy2774 := *x.SinceSeconds + yym2775 := z.EncBinary() + _ = yym2775 if false { } else { - r.EncodeInt(int64(yy2755)) + r.EncodeInt(int64(yy2774)) } } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[6] { + if yyq2755[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym2758 := z.EncBinary() - _ = yym2758 + yym2777 := z.EncBinary() + _ = yym2777 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2758 { + } else if yym2777 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2758 && z.IsJSONHandle() { + } else if !yym2777 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -34733,20 +35006,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2736[6] { + if yyq2755[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2759 := z.EncBinary() - _ = yym2759 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2759 { + } else if yym2778 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2759 && z.IsJSONHandle() { + } else if !yym2778 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -34754,11 +35027,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[7] { - yym2761 := z.EncBinary() - _ = yym2761 + if yyq2755[7] { + yym2780 := z.EncBinary() + _ = yym2780 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -34767,89 +35040,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2736[7] { + if yyq2755[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2762 := z.EncBinary() - _ = yym2762 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[8] { + if yyq2755[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy2764 := *x.TailLines - yym2765 := z.EncBinary() - _ = yym2765 + yy2783 := *x.TailLines + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { - r.EncodeInt(int64(yy2764)) + r.EncodeInt(int64(yy2783)) } } } else { r.EncodeNil() } } else { - if yyq2736[8] { + if yyq2755[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2766 := *x.TailLines - yym2767 := z.EncBinary() - _ = yym2767 + yy2785 := *x.TailLines + yym2786 := z.EncBinary() + _ = yym2786 if false { } else { - r.EncodeInt(int64(yy2766)) + r.EncodeInt(int64(yy2785)) } } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2736[9] { + if yyq2755[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2769 := *x.LimitBytes - yym2770 := z.EncBinary() - _ = yym2770 + yy2788 := *x.LimitBytes + yym2789 := z.EncBinary() + _ = yym2789 if false { } else { - r.EncodeInt(int64(yy2769)) + r.EncodeInt(int64(yy2788)) } } } else { r.EncodeNil() } } else { - if yyq2736[9] { + if yyq2755[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2771 := *x.LimitBytes - yym2772 := z.EncBinary() - _ = yym2772 + yy2790 := *x.LimitBytes + yym2791 := z.EncBinary() + _ = yym2791 if false { } else { - r.EncodeInt(int64(yy2771)) + r.EncodeInt(int64(yy2790)) } } } } - if yyr2736 || yy2arr2736 { + if yyr2755 || yy2arr2755 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34862,25 +35135,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2773 := z.DecBinary() - _ = yym2773 + yym2792 := z.DecBinary() + _ = yym2792 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2774 := r.ContainerType() - if yyct2774 == codecSelferValueTypeMap1234 { - yyl2774 := r.ReadMapStart() - if yyl2774 == 0 { + yyct2793 := r.ContainerType() + if yyct2793 == codecSelferValueTypeMap1234 { + yyl2793 := r.ReadMapStart() + if yyl2793 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2774, d) + x.codecDecodeSelfFromMap(yyl2793, d) } - } else if yyct2774 == codecSelferValueTypeArray1234 { - yyl2774 := r.ReadArrayStart() - if yyl2774 == 0 { + } else if yyct2793 == codecSelferValueTypeArray1234 { + yyl2793 := r.ReadArrayStart() + if yyl2793 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2774, d) + x.codecDecodeSelfFromArray(yyl2793, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34892,12 +35165,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2775Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2775Slc - var yyhl2775 bool = l >= 0 - for yyj2775 := 0; ; yyj2775++ { - if yyhl2775 { - if yyj2775 >= l { + var yys2794Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2794Slc + var yyhl2794 bool = l >= 0 + for yyj2794 := 0; ; yyj2794++ { + if yyhl2794 { + if yyj2794 >= l { break } } else { @@ -34906,10 +35179,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2775Slc = r.DecodeBytes(yys2775Slc, true, true) - yys2775 := string(yys2775Slc) + yys2794Slc = r.DecodeBytes(yys2794Slc, true, true) + yys2794 := string(yys2794Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2775 { + switch yys2794 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34949,8 +35222,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2782 := z.DecBinary() - _ = yym2782 + yym2801 := z.DecBinary() + _ = yym2801 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -34965,13 +35238,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2784 := z.DecBinary() - _ = yym2784 + yym2803 := z.DecBinary() + _ = yym2803 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2784 { + } else if yym2803 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2784 && z.IsJSONHandle() { + } else if !yym2803 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -34992,8 +35265,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2787 := z.DecBinary() - _ = yym2787 + yym2806 := z.DecBinary() + _ = yym2806 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -35008,17 +35281,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2789 := z.DecBinary() - _ = yym2789 + yym2808 := z.DecBinary() + _ = yym2808 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2775) - } // end switch yys2775 - } // end for yyj2775 + z.DecStructFieldNotFound(-1, yys2794) + } // end switch yys2794 + } // end for yyj2794 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35026,16 +35299,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2790 int - var yyb2790 bool - var yyhl2790 bool = l >= 0 - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + var yyj2809 int + var yyb2809 bool + var yyhl2809 bool = l >= 0 + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35045,13 +35318,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35061,13 +35334,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35077,13 +35350,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35093,13 +35366,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35109,13 +35382,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35128,20 +35401,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2797 := z.DecBinary() - _ = yym2797 + yym2816 := z.DecBinary() + _ = yym2816 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35154,25 +35427,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2799 := z.DecBinary() - _ = yym2799 + yym2818 := z.DecBinary() + _ = yym2818 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2799 { + } else if yym2818 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2799 && z.IsJSONHandle() { + } else if !yym2818 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35182,13 +35455,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35201,20 +35474,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2802 := z.DecBinary() - _ = yym2802 + yym2821 := z.DecBinary() + _ = yym2821 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35227,25 +35500,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2804 := z.DecBinary() - _ = yym2804 + yym2823 := z.DecBinary() + _ = yym2823 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2790++ - if yyhl2790 { - yyb2790 = yyj2790 > l + yyj2809++ + if yyhl2809 { + yyb2809 = yyj2809 > l } else { - yyb2790 = r.CheckBreak() + yyb2809 = r.CheckBreak() } - if yyb2790 { + if yyb2809 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2790-1, "") + z.DecStructFieldNotFound(yyj2809-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35257,212 +35530,212 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2805 := z.EncBinary() - _ = yym2805 + yym2824 := z.EncBinary() + _ = yym2824 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2806 := !z.EncBinary() - yy2arr2806 := z.EncBasicHandle().StructToArray - var yyq2806 [7]bool - _, _, _ = yysep2806, yyq2806, yy2arr2806 - const yyr2806 bool = false - yyq2806[0] = x.Kind != "" - yyq2806[1] = x.APIVersion != "" - yyq2806[2] = x.Stdin != false - yyq2806[3] = x.Stdout != false - yyq2806[4] = x.Stderr != false - yyq2806[5] = x.TTY != false - yyq2806[6] = x.Container != "" - var yynn2806 int - if yyr2806 || yy2arr2806 { + yysep2825 := !z.EncBinary() + yy2arr2825 := z.EncBasicHandle().StructToArray + var yyq2825 [7]bool + _, _, _ = yysep2825, yyq2825, yy2arr2825 + const yyr2825 bool = false + yyq2825[0] = x.Kind != "" + yyq2825[1] = x.APIVersion != "" + yyq2825[2] = x.Stdin != false + yyq2825[3] = x.Stdout != false + yyq2825[4] = x.Stderr != false + yyq2825[5] = x.TTY != false + yyq2825[6] = x.Container != "" + var yynn2825 int + if yyr2825 || yy2arr2825 { r.EncodeArrayStart(7) } else { - yynn2806 = 0 - for _, b := range yyq2806 { + yynn2825 = 0 + for _, b := range yyq2825 { if b { - yynn2806++ + yynn2825++ } } - r.EncodeMapStart(yynn2806) - yynn2806 = 0 + r.EncodeMapStart(yynn2825) + yynn2825 = 0 } - if yyr2806 || yy2arr2806 { + if yyr2825 || yy2arr2825 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[0] { - yym2808 := z.EncBinary() - _ = yym2808 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2806[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2809 := z.EncBinary() - _ = yym2809 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[1] { - yym2811 := z.EncBinary() - _ = yym2811 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2806[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2812 := z.EncBinary() - _ = yym2812 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[2] { - yym2814 := z.EncBinary() - _ = yym2814 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2806[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdin")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2815 := z.EncBinary() - _ = yym2815 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[3] { - yym2817 := z.EncBinary() - _ = yym2817 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2806[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdout")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2818 := z.EncBinary() - _ = yym2818 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[4] { - yym2820 := z.EncBinary() - _ = yym2820 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2806[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stderr")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2821 := z.EncBinary() - _ = yym2821 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[5] { - yym2823 := z.EncBinary() - _ = yym2823 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2806[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("tty")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2824 := z.EncBinary() - _ = yym2824 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } - } - if yyr2806 || yy2arr2806 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2806[6] { - yym2826 := z.EncBinary() - _ = yym2826 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Container)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2806[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("container")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2825[0] { yym2827 := z.EncBinary() _ = yym2827 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2825[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2828 := z.EncBinary() + _ = yym2828 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[1] { + yym2830 := z.EncBinary() + _ = yym2830 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2825[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2831 := z.EncBinary() + _ = yym2831 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[2] { + yym2833 := z.EncBinary() + _ = yym2833 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2825[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdin")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2834 := z.EncBinary() + _ = yym2834 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[3] { + yym2836 := z.EncBinary() + _ = yym2836 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2825[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdout")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2837 := z.EncBinary() + _ = yym2837 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[4] { + yym2839 := z.EncBinary() + _ = yym2839 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2825[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stderr")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2840 := z.EncBinary() + _ = yym2840 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[5] { + yym2842 := z.EncBinary() + _ = yym2842 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2825[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("tty")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2843 := z.EncBinary() + _ = yym2843 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } + } + if yyr2825 || yy2arr2825 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2825[6] { + yym2845 := z.EncBinary() + _ = yym2845 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Container)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2825[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("container")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2846 := z.EncBinary() + _ = yym2846 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2806 || yy2arr2806 { + if yyr2825 || yy2arr2825 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35475,25 +35748,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2828 := z.DecBinary() - _ = yym2828 + yym2847 := z.DecBinary() + _ = yym2847 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2829 := r.ContainerType() - if yyct2829 == codecSelferValueTypeMap1234 { - yyl2829 := r.ReadMapStart() - if yyl2829 == 0 { + yyct2848 := r.ContainerType() + if yyct2848 == codecSelferValueTypeMap1234 { + yyl2848 := r.ReadMapStart() + if yyl2848 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2829, d) + x.codecDecodeSelfFromMap(yyl2848, d) } - } else if yyct2829 == codecSelferValueTypeArray1234 { - yyl2829 := r.ReadArrayStart() - if yyl2829 == 0 { + } else if yyct2848 == codecSelferValueTypeArray1234 { + yyl2848 := r.ReadArrayStart() + if yyl2848 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2829, d) + x.codecDecodeSelfFromArray(yyl2848, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35505,12 +35778,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2830Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2830Slc - var yyhl2830 bool = l >= 0 - for yyj2830 := 0; ; yyj2830++ { - if yyhl2830 { - if yyj2830 >= l { + var yys2849Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2849Slc + var yyhl2849 bool = l >= 0 + for yyj2849 := 0; ; yyj2849++ { + if yyhl2849 { + if yyj2849 >= l { break } } else { @@ -35519,10 +35792,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2830Slc = r.DecodeBytes(yys2830Slc, true, true) - yys2830 := string(yys2830Slc) + yys2849Slc = r.DecodeBytes(yys2849Slc, true, true) + yys2849 := string(yys2849Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2830 { + switch yys2849 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35566,9 +35839,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2830) - } // end switch yys2830 - } // end for yyj2830 + z.DecStructFieldNotFound(-1, yys2849) + } // end switch yys2849 + } // end for yyj2849 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35576,16 +35849,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2838 int - var yyb2838 bool - var yyhl2838 bool = l >= 0 - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + var yyj2857 int + var yyb2857 bool + var yyhl2857 bool = l >= 0 + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35595,13 +35868,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35611,13 +35884,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35627,13 +35900,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35643,13 +35916,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35659,13 +35932,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35675,13 +35948,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35692,17 +35965,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj2838++ - if yyhl2838 { - yyb2838 = yyj2838 > l + yyj2857++ + if yyhl2857 { + yyb2857 = yyj2857 > l } else { - yyb2838 = r.CheckBreak() + yyb2857 = r.CheckBreak() } - if yyb2838 { + if yyb2857 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2838-1, "") + z.DecStructFieldNotFound(yyj2857-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35714,218 +35987,218 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2846 := z.EncBinary() - _ = yym2846 + yym2865 := z.EncBinary() + _ = yym2865 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2847 := !z.EncBinary() - yy2arr2847 := z.EncBasicHandle().StructToArray - var yyq2847 [8]bool - _, _, _ = yysep2847, yyq2847, yy2arr2847 - const yyr2847 bool = false - yyq2847[0] = x.Kind != "" - yyq2847[1] = x.APIVersion != "" - yyq2847[2] = x.Stdin != false - yyq2847[3] = x.Stdout != false - yyq2847[4] = x.Stderr != false - yyq2847[5] = x.TTY != false - yyq2847[6] = x.Container != "" - var yynn2847 int - if yyr2847 || yy2arr2847 { + yysep2866 := !z.EncBinary() + yy2arr2866 := z.EncBasicHandle().StructToArray + var yyq2866 [8]bool + _, _, _ = yysep2866, yyq2866, yy2arr2866 + const yyr2866 bool = false + yyq2866[0] = x.Kind != "" + yyq2866[1] = x.APIVersion != "" + yyq2866[2] = x.Stdin != false + yyq2866[3] = x.Stdout != false + yyq2866[4] = x.Stderr != false + yyq2866[5] = x.TTY != false + yyq2866[6] = x.Container != "" + var yynn2866 int + if yyr2866 || yy2arr2866 { r.EncodeArrayStart(8) } else { - yynn2847 = 1 - for _, b := range yyq2847 { + yynn2866 = 1 + for _, b := range yyq2866 { if b { - yynn2847++ + yynn2866++ } } - r.EncodeMapStart(yynn2847) - yynn2847 = 0 + r.EncodeMapStart(yynn2866) + yynn2866 = 0 } - if yyr2847 || yy2arr2847 { + if yyr2866 || yy2arr2866 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[0] { - yym2849 := z.EncBinary() - _ = yym2849 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2847[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2850 := z.EncBinary() - _ = yym2850 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[1] { - yym2852 := z.EncBinary() - _ = yym2852 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2847[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2853 := z.EncBinary() - _ = yym2853 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[2] { - yym2855 := z.EncBinary() - _ = yym2855 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2847[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdin")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2856 := z.EncBinary() - _ = yym2856 - if false { - } else { - r.EncodeBool(bool(x.Stdin)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[3] { - yym2858 := z.EncBinary() - _ = yym2858 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2847[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdout")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2859 := z.EncBinary() - _ = yym2859 - if false { - } else { - r.EncodeBool(bool(x.Stdout)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[4] { - yym2861 := z.EncBinary() - _ = yym2861 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2847[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stderr")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2862 := z.EncBinary() - _ = yym2862 - if false { - } else { - r.EncodeBool(bool(x.Stderr)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[5] { - yym2864 := z.EncBinary() - _ = yym2864 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq2847[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("tty")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2865 := z.EncBinary() - _ = yym2865 - if false { - } else { - r.EncodeBool(bool(x.TTY)) - } - } - } - if yyr2847 || yy2arr2847 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2847[6] { - yym2867 := z.EncBinary() - _ = yym2867 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Container)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2847[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("container")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2866[0] { yym2868 := z.EncBinary() _ = yym2868 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2866[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2869 := z.EncBinary() + _ = yym2869 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[1] { + yym2871 := z.EncBinary() + _ = yym2871 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2866[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2872 := z.EncBinary() + _ = yym2872 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[2] { + yym2874 := z.EncBinary() + _ = yym2874 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2866[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdin")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2875 := z.EncBinary() + _ = yym2875 + if false { + } else { + r.EncodeBool(bool(x.Stdin)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[3] { + yym2877 := z.EncBinary() + _ = yym2877 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2866[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stdout")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2878 := z.EncBinary() + _ = yym2878 + if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[4] { + yym2880 := z.EncBinary() + _ = yym2880 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2866[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stderr")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2881 := z.EncBinary() + _ = yym2881 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[5] { + yym2883 := z.EncBinary() + _ = yym2883 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq2866[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("tty")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2884 := z.EncBinary() + _ = yym2884 + if false { + } else { + r.EncodeBool(bool(x.TTY)) + } + } + } + if yyr2866 || yy2arr2866 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2866[6] { + yym2886 := z.EncBinary() + _ = yym2886 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Container)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2866[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("container")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2887 := z.EncBinary() + _ = yym2887 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2847 || yy2arr2847 { + if yyr2866 || yy2arr2866 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym2870 := z.EncBinary() - _ = yym2870 + yym2889 := z.EncBinary() + _ = yym2889 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -35938,15 +36211,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym2871 := z.EncBinary() - _ = yym2871 + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr2847 || yy2arr2847 { + if yyr2866 || yy2arr2866 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35959,25 +36232,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2872 := z.DecBinary() - _ = yym2872 + yym2891 := z.DecBinary() + _ = yym2891 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2873 := r.ContainerType() - if yyct2873 == codecSelferValueTypeMap1234 { - yyl2873 := r.ReadMapStart() - if yyl2873 == 0 { + yyct2892 := r.ContainerType() + if yyct2892 == codecSelferValueTypeMap1234 { + yyl2892 := r.ReadMapStart() + if yyl2892 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2873, d) + x.codecDecodeSelfFromMap(yyl2892, d) } - } else if yyct2873 == codecSelferValueTypeArray1234 { - yyl2873 := r.ReadArrayStart() - if yyl2873 == 0 { + } else if yyct2892 == codecSelferValueTypeArray1234 { + yyl2892 := r.ReadArrayStart() + if yyl2892 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2873, d) + x.codecDecodeSelfFromArray(yyl2892, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35989,12 +36262,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2874Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2874Slc - var yyhl2874 bool = l >= 0 - for yyj2874 := 0; ; yyj2874++ { - if yyhl2874 { - if yyj2874 >= l { + var yys2893Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2893Slc + var yyhl2893 bool = l >= 0 + for yyj2893 := 0; ; yyj2893++ { + if yyhl2893 { + if yyj2893 >= l { break } } else { @@ -36003,10 +36276,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2874Slc = r.DecodeBytes(yys2874Slc, true, true) - yys2874 := string(yys2874Slc) + yys2893Slc = r.DecodeBytes(yys2893Slc, true, true) + yys2893 := string(yys2893Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2874 { + switch yys2893 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36053,18 +36326,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2882 := &x.Command - yym2883 := z.DecBinary() - _ = yym2883 + yyv2901 := &x.Command + yym2902 := z.DecBinary() + _ = yym2902 if false { } else { - z.F.DecSliceStringX(yyv2882, false, d) + z.F.DecSliceStringX(yyv2901, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2874) - } // end switch yys2874 - } // end for yyj2874 + z.DecStructFieldNotFound(-1, yys2893) + } // end switch yys2893 + } // end for yyj2893 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36072,16 +36345,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2884 int - var yyb2884 bool - var yyhl2884 bool = l >= 0 - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + var yyj2903 int + var yyb2903 bool + var yyhl2903 bool = l >= 0 + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36091,13 +36364,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36107,13 +36380,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36123,13 +36396,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36139,13 +36412,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36155,13 +36428,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36171,13 +36444,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36187,13 +36460,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36201,26 +36474,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2892 := &x.Command - yym2893 := z.DecBinary() - _ = yym2893 + yyv2911 := &x.Command + yym2912 := z.DecBinary() + _ = yym2912 if false { } else { - z.F.DecSliceStringX(yyv2892, false, d) + z.F.DecSliceStringX(yyv2911, false, d) } } for { - yyj2884++ - if yyhl2884 { - yyb2884 = yyj2884 > l + yyj2903++ + if yyhl2903 { + yyb2903 = yyj2903 > l } else { - yyb2884 = r.CheckBreak() + yyb2903 = r.CheckBreak() } - if yyb2884 { + if yyb2903 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2884-1, "") + z.DecStructFieldNotFound(yyj2903-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36232,37 +36505,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2894 := z.EncBinary() - _ = yym2894 + yym2913 := z.EncBinary() + _ = yym2913 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2895 := !z.EncBinary() - yy2arr2895 := z.EncBasicHandle().StructToArray - var yyq2895 [3]bool - _, _, _ = yysep2895, yyq2895, yy2arr2895 - const yyr2895 bool = false - yyq2895[0] = x.Kind != "" - yyq2895[1] = x.APIVersion != "" - yyq2895[2] = x.Path != "" - var yynn2895 int - if yyr2895 || yy2arr2895 { + yysep2914 := !z.EncBinary() + yy2arr2914 := z.EncBasicHandle().StructToArray + var yyq2914 [3]bool + _, _, _ = yysep2914, yyq2914, yy2arr2914 + const yyr2914 bool = false + yyq2914[0] = x.Kind != "" + yyq2914[1] = x.APIVersion != "" + yyq2914[2] = x.Path != "" + var yynn2914 int + if yyr2914 || yy2arr2914 { r.EncodeArrayStart(3) } else { - yynn2895 = 0 - for _, b := range yyq2895 { + yynn2914 = 0 + for _, b := range yyq2914 { if b { - yynn2895++ + yynn2914++ } } - r.EncodeMapStart(yynn2895) - yynn2895 = 0 + r.EncodeMapStart(yynn2914) + yynn2914 = 0 } - if yyr2895 || yy2arr2895 { + if yyr2914 || yy2arr2914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[0] { - yym2897 := z.EncBinary() - _ = yym2897 + if yyq2914[0] { + yym2916 := z.EncBinary() + _ = yym2916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36271,23 +36544,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2895[0] { + if yyq2914[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2898 := z.EncBinary() - _ = yym2898 + yym2917 := z.EncBinary() + _ = yym2917 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2895 || yy2arr2895 { + if yyr2914 || yy2arr2914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[1] { - yym2900 := z.EncBinary() - _ = yym2900 + if yyq2914[1] { + yym2919 := z.EncBinary() + _ = yym2919 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36296,23 +36569,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2895[1] { + if yyq2914[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2901 := z.EncBinary() - _ = yym2901 + yym2920 := z.EncBinary() + _ = yym2920 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2895 || yy2arr2895 { + if yyr2914 || yy2arr2914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2895[2] { - yym2903 := z.EncBinary() - _ = yym2903 + if yyq2914[2] { + yym2922 := z.EncBinary() + _ = yym2922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -36321,19 +36594,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2895[2] { + if yyq2914[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2904 := z.EncBinary() - _ = yym2904 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr2895 || yy2arr2895 { + if yyr2914 || yy2arr2914 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36346,25 +36619,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2905 := z.DecBinary() - _ = yym2905 + yym2924 := z.DecBinary() + _ = yym2924 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2906 := r.ContainerType() - if yyct2906 == codecSelferValueTypeMap1234 { - yyl2906 := r.ReadMapStart() - if yyl2906 == 0 { + yyct2925 := r.ContainerType() + if yyct2925 == codecSelferValueTypeMap1234 { + yyl2925 := r.ReadMapStart() + if yyl2925 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2906, d) + x.codecDecodeSelfFromMap(yyl2925, d) } - } else if yyct2906 == codecSelferValueTypeArray1234 { - yyl2906 := r.ReadArrayStart() - if yyl2906 == 0 { + } else if yyct2925 == codecSelferValueTypeArray1234 { + yyl2925 := r.ReadArrayStart() + if yyl2925 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2906, d) + x.codecDecodeSelfFromArray(yyl2925, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36376,12 +36649,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2907Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2907Slc - var yyhl2907 bool = l >= 0 - for yyj2907 := 0; ; yyj2907++ { - if yyhl2907 { - if yyj2907 >= l { + var yys2926Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2926Slc + var yyhl2926 bool = l >= 0 + for yyj2926 := 0; ; yyj2926++ { + if yyhl2926 { + if yyj2926 >= l { break } } else { @@ -36390,10 +36663,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2907Slc = r.DecodeBytes(yys2907Slc, true, true) - yys2907 := string(yys2907Slc) + yys2926Slc = r.DecodeBytes(yys2926Slc, true, true) + yys2926 := string(yys2926Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2907 { + switch yys2926 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36413,9 +36686,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2907) - } // end switch yys2907 - } // end for yyj2907 + z.DecStructFieldNotFound(-1, yys2926) + } // end switch yys2926 + } // end for yyj2926 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36423,16 +36696,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2911 int - var yyb2911 bool - var yyhl2911 bool = l >= 0 - yyj2911++ - if yyhl2911 { - yyb2911 = yyj2911 > l + var yyj2930 int + var yyb2930 bool + var yyhl2930 bool = l >= 0 + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2911 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2911 { + if yyb2930 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36442,13 +36715,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2911++ - if yyhl2911 { - yyb2911 = yyj2911 > l + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2911 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2911 { + if yyb2930 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36458,13 +36731,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2911++ - if yyhl2911 { - yyb2911 = yyj2911 > l + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2911 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2911 { + if yyb2930 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36475,17 +36748,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj2911++ - if yyhl2911 { - yyb2911 = yyj2911 > l + yyj2930++ + if yyhl2930 { + yyb2930 = yyj2930 > l } else { - yyb2911 = r.CheckBreak() + yyb2930 = r.CheckBreak() } - if yyb2911 { + if yyb2930 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2911-1, "") + z.DecStructFieldNotFound(yyj2930-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36497,214 +36770,214 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2915 := z.EncBinary() - _ = yym2915 + yym2934 := z.EncBinary() + _ = yym2934 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2916 := !z.EncBinary() - yy2arr2916 := z.EncBasicHandle().StructToArray - var yyq2916 [7]bool - _, _, _ = yysep2916, yyq2916, yy2arr2916 - const yyr2916 bool = false - yyq2916[0] = x.Kind != "" - yyq2916[1] = x.Namespace != "" - yyq2916[2] = x.Name != "" - yyq2916[3] = x.UID != "" - yyq2916[4] = x.APIVersion != "" - yyq2916[5] = x.ResourceVersion != "" - yyq2916[6] = x.FieldPath != "" - var yynn2916 int - if yyr2916 || yy2arr2916 { + yysep2935 := !z.EncBinary() + yy2arr2935 := z.EncBasicHandle().StructToArray + var yyq2935 [7]bool + _, _, _ = yysep2935, yyq2935, yy2arr2935 + const yyr2935 bool = false + yyq2935[0] = x.Kind != "" + yyq2935[1] = x.Namespace != "" + yyq2935[2] = x.Name != "" + yyq2935[3] = x.UID != "" + yyq2935[4] = x.APIVersion != "" + yyq2935[5] = x.ResourceVersion != "" + yyq2935[6] = x.FieldPath != "" + var yynn2935 int + if yyr2935 || yy2arr2935 { r.EncodeArrayStart(7) } else { - yynn2916 = 0 - for _, b := range yyq2916 { + yynn2935 = 0 + for _, b := range yyq2935 { if b { - yynn2916++ + yynn2935++ } } - r.EncodeMapStart(yynn2916) - yynn2916 = 0 + r.EncodeMapStart(yynn2935) + yynn2935 = 0 } - if yyr2916 || yy2arr2916 { + if yyr2935 || yy2arr2935 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[0] { - yym2918 := z.EncBinary() - _ = yym2918 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2919 := z.EncBinary() - _ = yym2919 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[1] { - yym2921 := z.EncBinary() - _ = yym2921 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("namespace")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2922 := z.EncBinary() - _ = yym2922 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[2] { - yym2924 := z.EncBinary() - _ = yym2924 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2925 := z.EncBinary() - _ = yym2925 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[3] { - yym2927 := z.EncBinary() - _ = yym2927 - if false { - } else if z.HasExtensions() && z.EncExt(x.UID) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.UID)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("uid")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2928 := z.EncBinary() - _ = yym2928 - if false { - } else if z.HasExtensions() && z.EncExt(x.UID) { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.UID)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[4] { - yym2930 := z.EncBinary() - _ = yym2930 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2931 := z.EncBinary() - _ = yym2931 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[5] { - yym2933 := z.EncBinary() - _ = yym2933 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2934 := z.EncBinary() - _ = yym2934 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) - } - } - } - if yyr2916 || yy2arr2916 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2916[6] { - yym2936 := z.EncBinary() - _ = yym2936 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2916[6] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + if yyq2935[0] { yym2937 := z.EncBinary() _ = yym2937 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2938 := z.EncBinary() + _ = yym2938 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[1] { + yym2940 := z.EncBinary() + _ = yym2940 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("namespace")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2941 := z.EncBinary() + _ = yym2941 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[2] { + yym2943 := z.EncBinary() + _ = yym2943 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("name")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2944 := z.EncBinary() + _ = yym2944 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[3] { + yym2946 := z.EncBinary() + _ = yym2946 + if false { + } else if z.HasExtensions() && z.EncExt(x.UID) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("uid")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2947 := z.EncBinary() + _ = yym2947 + if false { + } else if z.HasExtensions() && z.EncExt(x.UID) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[4] { + yym2949 := z.EncBinary() + _ = yym2949 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2950 := z.EncBinary() + _ = yym2950 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[5] { + yym2952 := z.EncBinary() + _ = yym2952 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2953 := z.EncBinary() + _ = yym2953 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + } + } + } + if yyr2935 || yy2arr2935 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2935[6] { + yym2955 := z.EncBinary() + _ = yym2955 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2935[6] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2956 := z.EncBinary() + _ = yym2956 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr2916 || yy2arr2916 { + if yyr2935 || yy2arr2935 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36717,25 +36990,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2938 := z.DecBinary() - _ = yym2938 + yym2957 := z.DecBinary() + _ = yym2957 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2939 := r.ContainerType() - if yyct2939 == codecSelferValueTypeMap1234 { - yyl2939 := r.ReadMapStart() - if yyl2939 == 0 { + yyct2958 := r.ContainerType() + if yyct2958 == codecSelferValueTypeMap1234 { + yyl2958 := r.ReadMapStart() + if yyl2958 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2939, d) + x.codecDecodeSelfFromMap(yyl2958, d) } - } else if yyct2939 == codecSelferValueTypeArray1234 { - yyl2939 := r.ReadArrayStart() - if yyl2939 == 0 { + } else if yyct2958 == codecSelferValueTypeArray1234 { + yyl2958 := r.ReadArrayStart() + if yyl2958 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2939, d) + x.codecDecodeSelfFromArray(yyl2958, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36747,12 +37020,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2940Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2940Slc - var yyhl2940 bool = l >= 0 - for yyj2940 := 0; ; yyj2940++ { - if yyhl2940 { - if yyj2940 >= l { + var yys2959Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2959Slc + var yyhl2959 bool = l >= 0 + for yyj2959 := 0; ; yyj2959++ { + if yyhl2959 { + if yyj2959 >= l { break } } else { @@ -36761,10 +37034,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2940Slc = r.DecodeBytes(yys2940Slc, true, true) - yys2940 := string(yys2940Slc) + yys2959Slc = r.DecodeBytes(yys2959Slc, true, true) + yys2959 := string(yys2959Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2940 { + switch yys2959 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36808,9 +37081,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2940) - } // end switch yys2940 - } // end for yyj2940 + z.DecStructFieldNotFound(-1, yys2959) + } // end switch yys2959 + } // end for yyj2959 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36818,16 +37091,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2948 int - var yyb2948 bool - var yyhl2948 bool = l >= 0 - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + var yyj2967 int + var yyb2967 bool + var yyhl2967 bool = l >= 0 + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36837,13 +37110,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36853,13 +37126,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36869,13 +37142,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36885,13 +37158,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36901,13 +37174,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36917,13 +37190,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36934,17 +37207,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj2948++ - if yyhl2948 { - yyb2948 = yyj2948 > l + yyj2967++ + if yyhl2967 { + yyb2967 = yyj2967 > l } else { - yyb2948 = r.CheckBreak() + yyb2967 = r.CheckBreak() } - if yyb2948 { + if yyb2967 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2948-1, "") + z.DecStructFieldNotFound(yyj2967-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36956,35 +37229,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2956 := z.EncBinary() - _ = yym2956 + yym2975 := z.EncBinary() + _ = yym2975 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2957 := !z.EncBinary() - yy2arr2957 := z.EncBasicHandle().StructToArray - var yyq2957 [1]bool - _, _, _ = yysep2957, yyq2957, yy2arr2957 - const yyr2957 bool = false - yyq2957[0] = x.Name != "" - var yynn2957 int - if yyr2957 || yy2arr2957 { + yysep2976 := !z.EncBinary() + yy2arr2976 := z.EncBasicHandle().StructToArray + var yyq2976 [1]bool + _, _, _ = yysep2976, yyq2976, yy2arr2976 + const yyr2976 bool = false + yyq2976[0] = x.Name != "" + var yynn2976 int + if yyr2976 || yy2arr2976 { r.EncodeArrayStart(1) } else { - yynn2957 = 0 - for _, b := range yyq2957 { + yynn2976 = 0 + for _, b := range yyq2976 { if b { - yynn2957++ + yynn2976++ } } - r.EncodeMapStart(yynn2957) - yynn2957 = 0 + r.EncodeMapStart(yynn2976) + yynn2976 = 0 } - if yyr2957 || yy2arr2957 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2957[0] { - yym2959 := z.EncBinary() - _ = yym2959 + if yyq2976[0] { + yym2978 := z.EncBinary() + _ = yym2978 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -36993,19 +37266,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2957[0] { + if yyq2976[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2960 := z.EncBinary() - _ = yym2960 + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2957 || yy2arr2957 { + if yyr2976 || yy2arr2976 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37018,25 +37291,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2961 := z.DecBinary() - _ = yym2961 + yym2980 := z.DecBinary() + _ = yym2980 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2962 := r.ContainerType() - if yyct2962 == codecSelferValueTypeMap1234 { - yyl2962 := r.ReadMapStart() - if yyl2962 == 0 { + yyct2981 := r.ContainerType() + if yyct2981 == codecSelferValueTypeMap1234 { + yyl2981 := r.ReadMapStart() + if yyl2981 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2962, d) + x.codecDecodeSelfFromMap(yyl2981, d) } - } else if yyct2962 == codecSelferValueTypeArray1234 { - yyl2962 := r.ReadArrayStart() - if yyl2962 == 0 { + } else if yyct2981 == codecSelferValueTypeArray1234 { + yyl2981 := r.ReadArrayStart() + if yyl2981 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2962, d) + x.codecDecodeSelfFromArray(yyl2981, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37048,12 +37321,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2963Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2963Slc - var yyhl2963 bool = l >= 0 - for yyj2963 := 0; ; yyj2963++ { - if yyhl2963 { - if yyj2963 >= l { + var yys2982Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2982Slc + var yyhl2982 bool = l >= 0 + for yyj2982 := 0; ; yyj2982++ { + if yyhl2982 { + if yyj2982 >= l { break } } else { @@ -37062,10 +37335,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2963Slc = r.DecodeBytes(yys2963Slc, true, true) - yys2963 := string(yys2963Slc) + yys2982Slc = r.DecodeBytes(yys2982Slc, true, true) + yys2982 := string(yys2982Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2963 { + switch yys2982 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37073,239 +37346,13 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2963) - } // end switch yys2963 - } // end for yyj2963 + z.DecStructFieldNotFound(-1, yys2982) + } // end switch yys2982 + } // end for yyj2982 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj2965 int - var yyb2965 bool - var yyhl2965 bool = l >= 0 - yyj2965++ - if yyhl2965 { - yyb2965 = yyj2965 > l - } else { - yyb2965 = r.CheckBreak() - } - if yyb2965 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Name = "" - } else { - x.Name = string(r.DecodeString()) - } - for { - yyj2965++ - if yyhl2965 { - yyb2965 = yyj2965 > l - } else { - yyb2965 = r.CheckBreak() - } - if yyb2965 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2965-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym2967 := z.EncBinary() - _ = yym2967 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep2968 := !z.EncBinary() - yy2arr2968 := z.EncBasicHandle().StructToArray - var yyq2968 [3]bool - _, _, _ = yysep2968, yyq2968, yy2arr2968 - const yyr2968 bool = false - yyq2968[0] = x.Kind != "" - yyq2968[1] = x.APIVersion != "" - yyq2968[2] = true - var yynn2968 int - if yyr2968 || yy2arr2968 { - r.EncodeArrayStart(3) - } else { - yynn2968 = 0 - for _, b := range yyq2968 { - if b { - yynn2968++ - } - } - r.EncodeMapStart(yynn2968) - yynn2968 = 0 - } - if yyr2968 || yy2arr2968 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[0] { - yym2970 := z.EncBinary() - _ = yym2970 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2968[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2971 := z.EncBinary() - _ = yym2971 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2968 || yy2arr2968 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[1] { - yym2973 := z.EncBinary() - _ = yym2973 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2968[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2974 := z.EncBinary() - _ = yym2974 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr2968 || yy2arr2968 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2968[2] { - yy2976 := &x.Reference - yy2976.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2968[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reference")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2977 := &x.Reference - yy2977.CodecEncodeSelf(e) - } - } - if yyr2968 || yy2arr2968 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym2978 := z.DecBinary() - _ = yym2978 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct2979 := r.ContainerType() - if yyct2979 == codecSelferValueTypeMap1234 { - yyl2979 := r.ReadMapStart() - if yyl2979 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl2979, d) - } - } else if yyct2979 == codecSelferValueTypeArray1234 { - yyl2979 := r.ReadArrayStart() - if yyl2979 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl2979, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys2980Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2980Slc - var yyhl2980 bool = l >= 0 - for yyj2980 := 0; ; yyj2980++ { - if yyhl2980 { - if yyj2980 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2980Slc = r.DecodeBytes(yys2980Slc, true, true) - yys2980 := string(yys2980Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2980 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "reference": - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv2983 := &x.Reference - yyv2983.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys2980) - } // end switch yys2980 - } // end for yyj2980 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -37324,42 +37371,9 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.Kind = "" + x.Name = "" } else { - x.Kind = string(r.DecodeString()) - } - yyj2984++ - if yyhl2984 { - yyb2984 = yyj2984 > l - } else { - yyb2984 = r.CheckBreak() - } - if yyb2984 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj2984++ - if yyhl2984 { - yyb2984 = yyj2984 > l - } else { - yyb2984 = r.CheckBreak() - } - if yyb2984 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Reference = ObjectReference{} - } else { - yyv2987 := &x.Reference - yyv2987.CodecDecodeSelf(d) + x.Name = string(r.DecodeString()) } for { yyj2984++ @@ -37377,6 +37391,265 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } +func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym2986 := z.EncBinary() + _ = yym2986 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep2987 := !z.EncBinary() + yy2arr2987 := z.EncBasicHandle().StructToArray + var yyq2987 [3]bool + _, _, _ = yysep2987, yyq2987, yy2arr2987 + const yyr2987 bool = false + yyq2987[0] = x.Kind != "" + yyq2987[1] = x.APIVersion != "" + yyq2987[2] = true + var yynn2987 int + if yyr2987 || yy2arr2987 { + r.EncodeArrayStart(3) + } else { + yynn2987 = 0 + for _, b := range yyq2987 { + if b { + yynn2987++ + } + } + r.EncodeMapStart(yynn2987) + yynn2987 = 0 + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[0] { + yym2989 := z.EncBinary() + _ = yym2989 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2987[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2990 := z.EncBinary() + _ = yym2990 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[1] { + yym2992 := z.EncBinary() + _ = yym2992 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2987[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2993 := z.EncBinary() + _ = yym2993 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2987[2] { + yy2995 := &x.Reference + yy2995.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2987[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("reference")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2996 := &x.Reference + yy2996.CodecEncodeSelf(e) + } + } + if yyr2987 || yy2arr2987 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym2997 := z.DecBinary() + _ = yym2997 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct2998 := r.ContainerType() + if yyct2998 == codecSelferValueTypeMap1234 { + yyl2998 := r.ReadMapStart() + if yyl2998 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl2998, d) + } + } else if yyct2998 == codecSelferValueTypeArray1234 { + yyl2998 := r.ReadArrayStart() + if yyl2998 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl2998, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys2999Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2999Slc + var yyhl2999 bool = l >= 0 + for yyj2999 := 0; ; yyj2999++ { + if yyhl2999 { + if yyj2999 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys2999Slc = r.DecodeBytes(yys2999Slc, true, true) + yys2999 := string(yys2999Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys2999 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "reference": + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3002 := &x.Reference + yyv3002.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys2999) + } // end switch yys2999 + } // end for yyj2999 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3003 int + var yyb3003 bool + var yyhl3003 bool = l >= 0 + yyj3003++ + if yyhl3003 { + yyb3003 = yyj3003 > l + } else { + yyb3003 = r.CheckBreak() + } + if yyb3003 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3003++ + if yyhl3003 { + yyb3003 = yyj3003 > l + } else { + yyb3003 = r.CheckBreak() + } + if yyb3003 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3003++ + if yyhl3003 { + yyb3003 = yyj3003 > l + } else { + yyb3003 = r.CheckBreak() + } + if yyb3003 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Reference = ObjectReference{} + } else { + yyv3006 := &x.Reference + yyv3006.CodecDecodeSelf(d) + } + for { + yyj3003++ + if yyhl3003 { + yyb3003 = yyj3003 > l + } else { + yyb3003 = r.CheckBreak() + } + if yyb3003 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3003-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -37384,36 +37657,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2988 := z.EncBinary() - _ = yym2988 + yym3007 := z.EncBinary() + _ = yym3007 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2989 := !z.EncBinary() - yy2arr2989 := z.EncBasicHandle().StructToArray - var yyq2989 [2]bool - _, _, _ = yysep2989, yyq2989, yy2arr2989 - const yyr2989 bool = false - yyq2989[0] = x.Component != "" - yyq2989[1] = x.Host != "" - var yynn2989 int - if yyr2989 || yy2arr2989 { + yysep3008 := !z.EncBinary() + yy2arr3008 := z.EncBasicHandle().StructToArray + var yyq3008 [2]bool + _, _, _ = yysep3008, yyq3008, yy2arr3008 + const yyr3008 bool = false + yyq3008[0] = x.Component != "" + yyq3008[1] = x.Host != "" + var yynn3008 int + if yyr3008 || yy2arr3008 { r.EncodeArrayStart(2) } else { - yynn2989 = 0 - for _, b := range yyq2989 { + yynn3008 = 0 + for _, b := range yyq3008 { if b { - yynn2989++ + yynn3008++ } } - r.EncodeMapStart(yynn2989) - yynn2989 = 0 + r.EncodeMapStart(yynn3008) + yynn3008 = 0 } - if yyr2989 || yy2arr2989 { + if yyr3008 || yy2arr3008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[0] { - yym2991 := z.EncBinary() - _ = yym2991 + if yyq3008[0] { + yym3010 := z.EncBinary() + _ = yym3010 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -37422,23 +37695,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2989[0] { + if yyq3008[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2992 := z.EncBinary() - _ = yym2992 + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr2989 || yy2arr2989 { + if yyr3008 || yy2arr3008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[1] { - yym2994 := z.EncBinary() - _ = yym2994 + if yyq3008[1] { + yym3013 := z.EncBinary() + _ = yym3013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -37447,19 +37720,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2989[1] { + if yyq3008[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2995 := z.EncBinary() - _ = yym2995 + yym3014 := z.EncBinary() + _ = yym3014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr2989 || yy2arr2989 { + if yyr3008 || yy2arr3008 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37472,25 +37745,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2996 := z.DecBinary() - _ = yym2996 + yym3015 := z.DecBinary() + _ = yym3015 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2997 := r.ContainerType() - if yyct2997 == codecSelferValueTypeMap1234 { - yyl2997 := r.ReadMapStart() - if yyl2997 == 0 { + yyct3016 := r.ContainerType() + if yyct3016 == codecSelferValueTypeMap1234 { + yyl3016 := r.ReadMapStart() + if yyl3016 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2997, d) + x.codecDecodeSelfFromMap(yyl3016, d) } - } else if yyct2997 == codecSelferValueTypeArray1234 { - yyl2997 := r.ReadArrayStart() - if yyl2997 == 0 { + } else if yyct3016 == codecSelferValueTypeArray1234 { + yyl3016 := r.ReadArrayStart() + if yyl3016 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2997, d) + x.codecDecodeSelfFromArray(yyl3016, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37502,12 +37775,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2998Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2998Slc - var yyhl2998 bool = l >= 0 - for yyj2998 := 0; ; yyj2998++ { - if yyhl2998 { - if yyj2998 >= l { + var yys3017Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3017Slc + var yyhl3017 bool = l >= 0 + for yyj3017 := 0; ; yyj3017++ { + if yyhl3017 { + if yyj3017 >= l { break } } else { @@ -37516,10 +37789,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2998Slc = r.DecodeBytes(yys2998Slc, true, true) - yys2998 := string(yys2998Slc) + yys3017Slc = r.DecodeBytes(yys3017Slc, true, true) + yys3017 := string(yys3017Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2998 { + switch yys3017 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -37533,9 +37806,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2998) - } // end switch yys2998 - } // end for yyj2998 + z.DecStructFieldNotFound(-1, yys3017) + } // end switch yys3017 + } // end for yyj3017 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37543,16 +37816,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3001 int - var yyb3001 bool - var yyhl3001 bool = l >= 0 - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + var yyj3020 int + var yyb3020 bool + var yyhl3020 bool = l >= 0 + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3001 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3001 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37562,13 +37835,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3001 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3001 { + if yyb3020 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37579,17 +37852,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3001++ - if yyhl3001 { - yyb3001 = yyj3001 > l + yyj3020++ + if yyhl3020 { + yyb3020 = yyj3020 > l } else { - yyb3001 = r.CheckBreak() + yyb3020 = r.CheckBreak() } - if yyb3001 { + if yyb3020 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3001-1, "") + z.DecStructFieldNotFound(yyj3020-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37601,43 +37874,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3004 := z.EncBinary() - _ = yym3004 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3005 := !z.EncBinary() - yy2arr3005 := z.EncBasicHandle().StructToArray - var yyq3005 [11]bool - _, _, _ = yysep3005, yyq3005, yy2arr3005 - const yyr3005 bool = false - yyq3005[0] = x.Kind != "" - yyq3005[1] = x.APIVersion != "" - yyq3005[4] = x.Reason != "" - yyq3005[5] = x.Message != "" - yyq3005[6] = true - yyq3005[7] = true - yyq3005[8] = true - yyq3005[9] = x.Count != 0 - yyq3005[10] = x.Type != "" - var yynn3005 int - if yyr3005 || yy2arr3005 { + yysep3024 := !z.EncBinary() + yy2arr3024 := z.EncBasicHandle().StructToArray + var yyq3024 [11]bool + _, _, _ = yysep3024, yyq3024, yy2arr3024 + const yyr3024 bool = false + yyq3024[0] = x.Kind != "" + yyq3024[1] = x.APIVersion != "" + yyq3024[4] = x.Reason != "" + yyq3024[5] = x.Message != "" + yyq3024[6] = true + yyq3024[7] = true + yyq3024[8] = true + yyq3024[9] = x.Count != 0 + yyq3024[10] = x.Type != "" + var yynn3024 int + if yyr3024 || yy2arr3024 { r.EncodeArrayStart(11) } else { - yynn3005 = 2 - for _, b := range yyq3005 { + yynn3024 = 2 + for _, b := range yyq3024 { if b { - yynn3005++ + yynn3024++ } } - r.EncodeMapStart(yynn3005) - yynn3005 = 0 + r.EncodeMapStart(yynn3024) + yynn3024 = 0 } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[0] { - yym3007 := z.EncBinary() - _ = yym3007 + if yyq3024[0] { + yym3026 := z.EncBinary() + _ = yym3026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37646,23 +37919,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3005[0] { + if yyq3024[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3008 := z.EncBinary() - _ = yym3008 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[1] { - yym3010 := z.EncBinary() - _ = yym3010 + if yyq3024[1] { + yym3029 := z.EncBinary() + _ = yym3029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37671,45 +37944,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3005[1] { + if yyq3024[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3011 := z.EncBinary() - _ = yym3011 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3013 := &x.ObjectMeta - yy3013.CodecEncodeSelf(e) + yy3032 := &x.ObjectMeta + yy3032.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3014 := &x.ObjectMeta - yy3014.CodecEncodeSelf(e) + yy3033 := &x.ObjectMeta + yy3033.CodecEncodeSelf(e) } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3016 := &x.InvolvedObject - yy3016.CodecEncodeSelf(e) + yy3035 := &x.InvolvedObject + yy3035.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3017 := &x.InvolvedObject - yy3017.CodecEncodeSelf(e) + yy3036 := &x.InvolvedObject + yy3036.CodecEncodeSelf(e) } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[4] { - yym3019 := z.EncBinary() - _ = yym3019 + if yyq3024[4] { + yym3038 := z.EncBinary() + _ = yym3038 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -37718,23 +37991,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3005[4] { + if yyq3024[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3020 := z.EncBinary() - _ = yym3020 + yym3039 := z.EncBinary() + _ = yym3039 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[5] { - yym3022 := z.EncBinary() - _ = yym3022 + if yyq3024[5] { + yym3041 := z.EncBinary() + _ = yym3041 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -37743,114 +38016,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3005[5] { + if yyq3024[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3023 := z.EncBinary() - _ = yym3023 + yym3042 := z.EncBinary() + _ = yym3042 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[6] { - yy3025 := &x.Source - yy3025.CodecEncodeSelf(e) + if yyq3024[6] { + yy3044 := &x.Source + yy3044.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3005[6] { + if yyq3024[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3026 := &x.Source - yy3026.CodecEncodeSelf(e) + yy3045 := &x.Source + yy3045.CodecEncodeSelf(e) } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[7] { - yy3028 := &x.FirstTimestamp - yym3029 := z.EncBinary() - _ = yym3029 + if yyq3024[7] { + yy3047 := &x.FirstTimestamp + yym3048 := z.EncBinary() + _ = yym3048 if false { - } else if z.HasExtensions() && z.EncExt(yy3028) { - } else if yym3029 { - z.EncBinaryMarshal(yy3028) - } else if !yym3029 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3028) + } else if z.HasExtensions() && z.EncExt(yy3047) { + } else if yym3048 { + z.EncBinaryMarshal(yy3047) + } else if !yym3048 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3047) } else { - z.EncFallback(yy3028) + z.EncFallback(yy3047) } } else { r.EncodeNil() } } else { - if yyq3005[7] { + if yyq3024[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3030 := &x.FirstTimestamp - yym3031 := z.EncBinary() - _ = yym3031 + yy3049 := &x.FirstTimestamp + yym3050 := z.EncBinary() + _ = yym3050 if false { - } else if z.HasExtensions() && z.EncExt(yy3030) { - } else if yym3031 { - z.EncBinaryMarshal(yy3030) - } else if !yym3031 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3030) + } else if z.HasExtensions() && z.EncExt(yy3049) { + } else if yym3050 { + z.EncBinaryMarshal(yy3049) + } else if !yym3050 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3049) } else { - z.EncFallback(yy3030) + z.EncFallback(yy3049) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[8] { - yy3033 := &x.LastTimestamp - yym3034 := z.EncBinary() - _ = yym3034 + if yyq3024[8] { + yy3052 := &x.LastTimestamp + yym3053 := z.EncBinary() + _ = yym3053 if false { - } else if z.HasExtensions() && z.EncExt(yy3033) { - } else if yym3034 { - z.EncBinaryMarshal(yy3033) - } else if !yym3034 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3033) + } else if z.HasExtensions() && z.EncExt(yy3052) { + } else if yym3053 { + z.EncBinaryMarshal(yy3052) + } else if !yym3053 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3052) } else { - z.EncFallback(yy3033) + z.EncFallback(yy3052) } } else { r.EncodeNil() } } else { - if yyq3005[8] { + if yyq3024[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3035 := &x.LastTimestamp - yym3036 := z.EncBinary() - _ = yym3036 + yy3054 := &x.LastTimestamp + yym3055 := z.EncBinary() + _ = yym3055 if false { - } else if z.HasExtensions() && z.EncExt(yy3035) { - } else if yym3036 { - z.EncBinaryMarshal(yy3035) - } else if !yym3036 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3035) + } else if z.HasExtensions() && z.EncExt(yy3054) { + } else if yym3055 { + z.EncBinaryMarshal(yy3054) + } else if !yym3055 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3054) } else { - z.EncFallback(yy3035) + z.EncFallback(yy3054) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[9] { - yym3038 := z.EncBinary() - _ = yym3038 + if yyq3024[9] { + yym3057 := z.EncBinary() + _ = yym3057 if false { } else { r.EncodeInt(int64(x.Count)) @@ -37859,23 +38132,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3005[9] { + if yyq3024[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3039 := z.EncBinary() - _ = yym3039 + yym3058 := z.EncBinary() + _ = yym3058 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3005[10] { - yym3041 := z.EncBinary() - _ = yym3041 + if yyq3024[10] { + yym3060 := z.EncBinary() + _ = yym3060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -37884,19 +38157,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3005[10] { + if yyq3024[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3042 := z.EncBinary() - _ = yym3042 + yym3061 := z.EncBinary() + _ = yym3061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3005 || yy2arr3005 { + if yyr3024 || yy2arr3024 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37909,25 +38182,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3043 := z.DecBinary() - _ = yym3043 + yym3062 := z.DecBinary() + _ = yym3062 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3044 := r.ContainerType() - if yyct3044 == codecSelferValueTypeMap1234 { - yyl3044 := r.ReadMapStart() - if yyl3044 == 0 { + yyct3063 := r.ContainerType() + if yyct3063 == codecSelferValueTypeMap1234 { + yyl3063 := r.ReadMapStart() + if yyl3063 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3044, d) + x.codecDecodeSelfFromMap(yyl3063, d) } - } else if yyct3044 == codecSelferValueTypeArray1234 { - yyl3044 := r.ReadArrayStart() - if yyl3044 == 0 { + } else if yyct3063 == codecSelferValueTypeArray1234 { + yyl3063 := r.ReadArrayStart() + if yyl3063 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3044, d) + x.codecDecodeSelfFromArray(yyl3063, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37939,12 +38212,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3045Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3045Slc - var yyhl3045 bool = l >= 0 - for yyj3045 := 0; ; yyj3045++ { - if yyhl3045 { - if yyj3045 >= l { + var yys3064Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3064Slc + var yyhl3064 bool = l >= 0 + for yyj3064 := 0; ; yyj3064++ { + if yyhl3064 { + if yyj3064 >= l { break } } else { @@ -37953,10 +38226,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3045Slc = r.DecodeBytes(yys3045Slc, true, true) - yys3045 := string(yys3045Slc) + yys3064Slc = r.DecodeBytes(yys3064Slc, true, true) + yys3064 := string(yys3064Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3045 { + switch yys3064 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37973,15 +38246,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3048 := &x.ObjectMeta - yyv3048.CodecDecodeSelf(d) + yyv3067 := &x.ObjectMeta + yyv3067.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3049 := &x.InvolvedObject - yyv3049.CodecDecodeSelf(d) + yyv3068 := &x.InvolvedObject + yyv3068.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -37999,41 +38272,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3052 := &x.Source - yyv3052.CodecDecodeSelf(d) + yyv3071 := &x.Source + yyv3071.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3053 := &x.FirstTimestamp - yym3054 := z.DecBinary() - _ = yym3054 + yyv3072 := &x.FirstTimestamp + yym3073 := z.DecBinary() + _ = yym3073 if false { - } else if z.HasExtensions() && z.DecExt(yyv3053) { - } else if yym3054 { - z.DecBinaryUnmarshal(yyv3053) - } else if !yym3054 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3053) + } else if z.HasExtensions() && z.DecExt(yyv3072) { + } else if yym3073 { + z.DecBinaryUnmarshal(yyv3072) + } else if !yym3073 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3072) } else { - z.DecFallback(yyv3053, false) + z.DecFallback(yyv3072, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3055 := &x.LastTimestamp - yym3056 := z.DecBinary() - _ = yym3056 + yyv3074 := &x.LastTimestamp + yym3075 := z.DecBinary() + _ = yym3075 if false { - } else if z.HasExtensions() && z.DecExt(yyv3055) { - } else if yym3056 { - z.DecBinaryUnmarshal(yyv3055) - } else if !yym3056 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3055) + } else if z.HasExtensions() && z.DecExt(yyv3074) { + } else if yym3075 { + z.DecBinaryUnmarshal(yyv3074) + } else if !yym3075 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3074) } else { - z.DecFallback(yyv3055, false) + z.DecFallback(yyv3074, false) } } case "count": @@ -38049,9 +38322,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3045) - } // end switch yys3045 - } // end for yyj3045 + z.DecStructFieldNotFound(-1, yys3064) + } // end switch yys3064 + } // end for yyj3064 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38059,16 +38332,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3059 int - var yyb3059 bool - var yyhl3059 bool = l >= 0 - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + var yyj3078 int + var yyb3078 bool + var yyhl3078 bool = l >= 0 + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38078,13 +38351,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38094,13 +38367,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38108,16 +38381,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3062 := &x.ObjectMeta - yyv3062.CodecDecodeSelf(d) + yyv3081 := &x.ObjectMeta + yyv3081.CodecDecodeSelf(d) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38125,16 +38398,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3063 := &x.InvolvedObject - yyv3063.CodecDecodeSelf(d) + yyv3082 := &x.InvolvedObject + yyv3082.CodecDecodeSelf(d) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38144,13 +38417,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38160,13 +38433,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38174,16 +38447,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3066 := &x.Source - yyv3066.CodecDecodeSelf(d) + yyv3085 := &x.Source + yyv3085.CodecDecodeSelf(d) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38191,26 +38464,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv3067 := &x.FirstTimestamp - yym3068 := z.DecBinary() - _ = yym3068 + yyv3086 := &x.FirstTimestamp + yym3087 := z.DecBinary() + _ = yym3087 if false { - } else if z.HasExtensions() && z.DecExt(yyv3067) { - } else if yym3068 { - z.DecBinaryUnmarshal(yyv3067) - } else if !yym3068 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3067) + } else if z.HasExtensions() && z.DecExt(yyv3086) { + } else if yym3087 { + z.DecBinaryUnmarshal(yyv3086) + } else if !yym3087 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3086) } else { - z.DecFallback(yyv3067, false) + z.DecFallback(yyv3086, false) } } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38218,26 +38491,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv3069 := &x.LastTimestamp - yym3070 := z.DecBinary() - _ = yym3070 + yyv3088 := &x.LastTimestamp + yym3089 := z.DecBinary() + _ = yym3089 if false { - } else if z.HasExtensions() && z.DecExt(yyv3069) { - } else if yym3070 { - z.DecBinaryUnmarshal(yyv3069) - } else if !yym3070 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3069) + } else if z.HasExtensions() && z.DecExt(yyv3088) { + } else if yym3089 { + z.DecBinaryUnmarshal(yyv3088) + } else if !yym3089 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3088) } else { - z.DecFallback(yyv3069, false) + z.DecFallback(yyv3088, false) } } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38247,13 +38520,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38264,17 +38537,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3059++ - if yyhl3059 { - yyb3059 = yyj3059 > l + yyj3078++ + if yyhl3078 { + yyb3078 = yyj3078 > l } else { - yyb3059 = r.CheckBreak() + yyb3078 = r.CheckBreak() } - if yyb3059 { + if yyb3078 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3059-1, "") + z.DecStructFieldNotFound(yyj3078-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38286,37 +38559,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3073 := z.EncBinary() - _ = yym3073 + yym3092 := z.EncBinary() + _ = yym3092 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3074 := !z.EncBinary() - yy2arr3074 := z.EncBasicHandle().StructToArray - var yyq3074 [4]bool - _, _, _ = yysep3074, yyq3074, yy2arr3074 - const yyr3074 bool = false - yyq3074[0] = x.Kind != "" - yyq3074[1] = x.APIVersion != "" - yyq3074[2] = true - var yynn3074 int - if yyr3074 || yy2arr3074 { + yysep3093 := !z.EncBinary() + yy2arr3093 := z.EncBasicHandle().StructToArray + var yyq3093 [4]bool + _, _, _ = yysep3093, yyq3093, yy2arr3093 + const yyr3093 bool = false + yyq3093[0] = x.Kind != "" + yyq3093[1] = x.APIVersion != "" + yyq3093[2] = true + var yynn3093 int + if yyr3093 || yy2arr3093 { r.EncodeArrayStart(4) } else { - yynn3074 = 1 - for _, b := range yyq3074 { + yynn3093 = 1 + for _, b := range yyq3093 { if b { - yynn3074++ + yynn3093++ } } - r.EncodeMapStart(yynn3074) - yynn3074 = 0 + r.EncodeMapStart(yynn3093) + yynn3093 = 0 } - if yyr3074 || yy2arr3074 { + if yyr3093 || yy2arr3093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3074[0] { - yym3076 := z.EncBinary() - _ = yym3076 + if yyq3093[0] { + yym3095 := z.EncBinary() + _ = yym3095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38325,23 +38598,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3074[0] { + if yyq3093[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3077 := z.EncBinary() - _ = yym3077 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3074 || yy2arr3074 { + if yyr3093 || yy2arr3093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3074[1] { - yym3079 := z.EncBinary() - _ = yym3079 + if yyq3093[1] { + yym3098 := z.EncBinary() + _ = yym3098 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38350,54 +38623,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3074[1] { + if yyq3093[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3080 := z.EncBinary() - _ = yym3080 + yym3099 := z.EncBinary() + _ = yym3099 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3074 || yy2arr3074 { + if yyr3093 || yy2arr3093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3074[2] { - yy3082 := &x.ListMeta - yym3083 := z.EncBinary() - _ = yym3083 + if yyq3093[2] { + yy3101 := &x.ListMeta + yym3102 := z.EncBinary() + _ = yym3102 if false { - } else if z.HasExtensions() && z.EncExt(yy3082) { + } else if z.HasExtensions() && z.EncExt(yy3101) { } else { - z.EncFallback(yy3082) + z.EncFallback(yy3101) } } else { r.EncodeNil() } } else { - if yyq3074[2] { + if yyq3093[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3084 := &x.ListMeta - yym3085 := z.EncBinary() - _ = yym3085 + yy3103 := &x.ListMeta + yym3104 := z.EncBinary() + _ = yym3104 if false { - } else if z.HasExtensions() && z.EncExt(yy3084) { + } else if z.HasExtensions() && z.EncExt(yy3103) { } else { - z.EncFallback(yy3084) + z.EncFallback(yy3103) } } } - if yyr3074 || yy2arr3074 { + if yyr3093 || yy2arr3093 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3087 := z.EncBinary() - _ = yym3087 + yym3106 := z.EncBinary() + _ = yym3106 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -38410,15 +38683,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3088 := z.EncBinary() - _ = yym3088 + yym3107 := z.EncBinary() + _ = yym3107 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3074 || yy2arr3074 { + if yyr3093 || yy2arr3093 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38431,25 +38704,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3089 := z.DecBinary() - _ = yym3089 + yym3108 := z.DecBinary() + _ = yym3108 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3090 := r.ContainerType() - if yyct3090 == codecSelferValueTypeMap1234 { - yyl3090 := r.ReadMapStart() - if yyl3090 == 0 { + yyct3109 := r.ContainerType() + if yyct3109 == codecSelferValueTypeMap1234 { + yyl3109 := r.ReadMapStart() + if yyl3109 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3090, d) + x.codecDecodeSelfFromMap(yyl3109, d) } - } else if yyct3090 == codecSelferValueTypeArray1234 { - yyl3090 := r.ReadArrayStart() - if yyl3090 == 0 { + } else if yyct3109 == codecSelferValueTypeArray1234 { + yyl3109 := r.ReadArrayStart() + if yyl3109 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3090, d) + x.codecDecodeSelfFromArray(yyl3109, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38461,12 +38734,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3091Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3091Slc - var yyhl3091 bool = l >= 0 - for yyj3091 := 0; ; yyj3091++ { - if yyhl3091 { - if yyj3091 >= l { + var yys3110Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3110Slc + var yyhl3110 bool = l >= 0 + for yyj3110 := 0; ; yyj3110++ { + if yyhl3110 { + if yyj3110 >= l { break } } else { @@ -38475,10 +38748,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3091Slc = r.DecodeBytes(yys3091Slc, true, true) - yys3091 := string(yys3091Slc) + yys3110Slc = r.DecodeBytes(yys3110Slc, true, true) + yys3110 := string(yys3110Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3091 { + switch yys3110 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38495,31 +38768,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3094 := &x.ListMeta - yym3095 := z.DecBinary() - _ = yym3095 + yyv3113 := &x.ListMeta + yym3114 := z.DecBinary() + _ = yym3114 if false { - } else if z.HasExtensions() && z.DecExt(yyv3094) { + } else if z.HasExtensions() && z.DecExt(yyv3113) { } else { - z.DecFallback(yyv3094, false) + z.DecFallback(yyv3113, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3096 := &x.Items - yym3097 := z.DecBinary() - _ = yym3097 + yyv3115 := &x.Items + yym3116 := z.DecBinary() + _ = yym3116 if false { } else { - h.decSliceEvent((*[]Event)(yyv3096), d) + h.decSliceEvent((*[]Event)(yyv3115), d) } } default: - z.DecStructFieldNotFound(-1, yys3091) - } // end switch yys3091 - } // end for yyj3091 + z.DecStructFieldNotFound(-1, yys3110) + } // end switch yys3110 + } // end for yyj3110 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38527,16 +38800,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3098 int - var yyb3098 bool - var yyhl3098 bool = l >= 0 - yyj3098++ - if yyhl3098 { - yyb3098 = yyj3098 > l + var yyj3117 int + var yyb3117 bool + var yyhl3117 bool = l >= 0 + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3098 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3098 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38546,13 +38819,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3098++ - if yyhl3098 { - yyb3098 = yyj3098 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3098 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3098 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38562,13 +38835,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3098++ - if yyhl3098 { - yyb3098 = yyj3098 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3098 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3098 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38576,22 +38849,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3101 := &x.ListMeta - yym3102 := z.DecBinary() - _ = yym3102 + yyv3120 := &x.ListMeta + yym3121 := z.DecBinary() + _ = yym3121 if false { - } else if z.HasExtensions() && z.DecExt(yyv3101) { + } else if z.HasExtensions() && z.DecExt(yyv3120) { } else { - z.DecFallback(yyv3101, false) + z.DecFallback(yyv3120, false) } } - yyj3098++ - if yyhl3098 { - yyb3098 = yyj3098 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3098 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3098 { + if yyb3117 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38599,26 +38872,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3103 := &x.Items - yym3104 := z.DecBinary() - _ = yym3104 + yyv3122 := &x.Items + yym3123 := z.DecBinary() + _ = yym3123 if false { } else { - h.decSliceEvent((*[]Event)(yyv3103), d) + h.decSliceEvent((*[]Event)(yyv3122), d) } } for { - yyj3098++ - if yyhl3098 { - yyb3098 = yyj3098 > l + yyj3117++ + if yyhl3117 { + yyb3117 = yyj3117 > l } else { - yyb3098 = r.CheckBreak() + yyb3117 = r.CheckBreak() } - if yyb3098 { + if yyb3117 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3098-1, "") + z.DecStructFieldNotFound(yyj3117-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38630,37 +38903,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3105 := z.EncBinary() - _ = yym3105 + yym3124 := z.EncBinary() + _ = yym3124 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3106 := !z.EncBinary() - yy2arr3106 := z.EncBasicHandle().StructToArray - var yyq3106 [4]bool - _, _, _ = yysep3106, yyq3106, yy2arr3106 - const yyr3106 bool = false - yyq3106[0] = x.Kind != "" - yyq3106[1] = x.APIVersion != "" - yyq3106[2] = true - var yynn3106 int - if yyr3106 || yy2arr3106 { + yysep3125 := !z.EncBinary() + yy2arr3125 := z.EncBasicHandle().StructToArray + var yyq3125 [4]bool + _, _, _ = yysep3125, yyq3125, yy2arr3125 + const yyr3125 bool = false + yyq3125[0] = x.Kind != "" + yyq3125[1] = x.APIVersion != "" + yyq3125[2] = true + var yynn3125 int + if yyr3125 || yy2arr3125 { r.EncodeArrayStart(4) } else { - yynn3106 = 1 - for _, b := range yyq3106 { + yynn3125 = 1 + for _, b := range yyq3125 { if b { - yynn3106++ + yynn3125++ } } - r.EncodeMapStart(yynn3106) - yynn3106 = 0 + r.EncodeMapStart(yynn3125) + yynn3125 = 0 } - if yyr3106 || yy2arr3106 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3106[0] { - yym3108 := z.EncBinary() - _ = yym3108 + if yyq3125[0] { + yym3127 := z.EncBinary() + _ = yym3127 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38669,23 +38942,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3106[0] { + if yyq3125[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3109 := z.EncBinary() - _ = yym3109 + yym3128 := z.EncBinary() + _ = yym3128 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3106 || yy2arr3106 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3106[1] { - yym3111 := z.EncBinary() - _ = yym3111 + if yyq3125[1] { + yym3130 := z.EncBinary() + _ = yym3130 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38694,54 +38967,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3106[1] { + if yyq3125[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3112 := z.EncBinary() - _ = yym3112 + yym3131 := z.EncBinary() + _ = yym3131 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3106 || yy2arr3106 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3106[2] { - yy3114 := &x.ListMeta - yym3115 := z.EncBinary() - _ = yym3115 + if yyq3125[2] { + yy3133 := &x.ListMeta + yym3134 := z.EncBinary() + _ = yym3134 if false { - } else if z.HasExtensions() && z.EncExt(yy3114) { + } else if z.HasExtensions() && z.EncExt(yy3133) { } else { - z.EncFallback(yy3114) + z.EncFallback(yy3133) } } else { r.EncodeNil() } } else { - if yyq3106[2] { + if yyq3125[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3116 := &x.ListMeta - yym3117 := z.EncBinary() - _ = yym3117 + yy3135 := &x.ListMeta + yym3136 := z.EncBinary() + _ = yym3136 if false { - } else if z.HasExtensions() && z.EncExt(yy3116) { + } else if z.HasExtensions() && z.EncExt(yy3135) { } else { - z.EncFallback(yy3116) + z.EncFallback(yy3135) } } } - if yyr3106 || yy2arr3106 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3119 := z.EncBinary() - _ = yym3119 + yym3138 := z.EncBinary() + _ = yym3138 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) @@ -38754,15 +39027,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3120 := z.EncBinary() - _ = yym3120 + yym3139 := z.EncBinary() + _ = yym3139 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) } } } - if yyr3106 || yy2arr3106 { + if yyr3125 || yy2arr3125 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38775,25 +39048,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3121 := z.DecBinary() - _ = yym3121 + yym3140 := z.DecBinary() + _ = yym3140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3122 := r.ContainerType() - if yyct3122 == codecSelferValueTypeMap1234 { - yyl3122 := r.ReadMapStart() - if yyl3122 == 0 { + yyct3141 := r.ContainerType() + if yyct3141 == codecSelferValueTypeMap1234 { + yyl3141 := r.ReadMapStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3122, d) + x.codecDecodeSelfFromMap(yyl3141, d) } - } else if yyct3122 == codecSelferValueTypeArray1234 { - yyl3122 := r.ReadArrayStart() - if yyl3122 == 0 { + } else if yyct3141 == codecSelferValueTypeArray1234 { + yyl3141 := r.ReadArrayStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3122, d) + x.codecDecodeSelfFromArray(yyl3141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38805,12 +39078,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3123Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3123Slc - var yyhl3123 bool = l >= 0 - for yyj3123 := 0; ; yyj3123++ { - if yyhl3123 { - if yyj3123 >= l { + var yys3142Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3142Slc + var yyhl3142 bool = l >= 0 + for yyj3142 := 0; ; yyj3142++ { + if yyhl3142 { + if yyj3142 >= l { break } } else { @@ -38819,10 +39092,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3123Slc = r.DecodeBytes(yys3123Slc, true, true) - yys3123 := string(yys3123Slc) + yys3142Slc = r.DecodeBytes(yys3142Slc, true, true) + yys3142 := string(yys3142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3123 { + switch yys3142 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38839,31 +39112,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3126 := &x.ListMeta - yym3127 := z.DecBinary() - _ = yym3127 + yyv3145 := &x.ListMeta + yym3146 := z.DecBinary() + _ = yym3146 if false { - } else if z.HasExtensions() && z.DecExt(yyv3126) { + } else if z.HasExtensions() && z.DecExt(yyv3145) { } else { - z.DecFallback(yyv3126, false) + z.DecFallback(yyv3145, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3128 := &x.Items - yym3129 := z.DecBinary() - _ = yym3129 + yyv3147 := &x.Items + yym3148 := z.DecBinary() + _ = yym3148 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3128), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3147), d) } } default: - z.DecStructFieldNotFound(-1, yys3123) - } // end switch yys3123 - } // end for yyj3123 + z.DecStructFieldNotFound(-1, yys3142) + } // end switch yys3142 + } // end for yyj3142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38871,16 +39144,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3130 int - var yyb3130 bool - var yyhl3130 bool = l >= 0 - yyj3130++ - if yyhl3130 { - yyb3130 = yyj3130 > l + var yyj3149 int + var yyb3149 bool + var yyhl3149 bool = l >= 0 + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3130 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3130 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38890,13 +39163,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3130++ - if yyhl3130 { - yyb3130 = yyj3130 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3130 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3130 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38906,13 +39179,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3130++ - if yyhl3130 { - yyb3130 = yyj3130 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3130 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3130 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38920,22 +39193,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3133 := &x.ListMeta - yym3134 := z.DecBinary() - _ = yym3134 + yyv3152 := &x.ListMeta + yym3153 := z.DecBinary() + _ = yym3153 if false { - } else if z.HasExtensions() && z.DecExt(yyv3133) { + } else if z.HasExtensions() && z.DecExt(yyv3152) { } else { - z.DecFallback(yyv3133, false) + z.DecFallback(yyv3152, false) } } - yyj3130++ - if yyhl3130 { - yyb3130 = yyj3130 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3130 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3130 { + if yyb3149 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38943,26 +39216,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3135 := &x.Items - yym3136 := z.DecBinary() - _ = yym3136 + yyv3154 := &x.Items + yym3155 := z.DecBinary() + _ = yym3155 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3135), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3154), d) } } for { - yyj3130++ - if yyhl3130 { - yyb3130 = yyj3130 > l + yyj3149++ + if yyhl3149 { + yyb3149 = yyj3149 > l } else { - yyb3130 = r.CheckBreak() + yyb3149 = r.CheckBreak() } - if yyb3130 { + if yyb3149 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3130-1, "") + z.DecStructFieldNotFound(yyj3149-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38971,8 +39244,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3137 := z.EncBinary() - _ = yym3137 + yym3156 := z.EncBinary() + _ = yym3156 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -38984,8 +39257,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3138 := z.DecBinary() - _ = yym3138 + yym3157 := z.DecBinary() + _ = yym3157 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39000,53 +39273,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3139 := z.EncBinary() - _ = yym3139 + yym3158 := z.EncBinary() + _ = yym3158 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3140 := !z.EncBinary() - yy2arr3140 := z.EncBasicHandle().StructToArray - var yyq3140 [6]bool - _, _, _ = yysep3140, yyq3140, yy2arr3140 - const yyr3140 bool = false - yyq3140[0] = x.Type != "" - yyq3140[1] = len(x.Max) != 0 - yyq3140[2] = len(x.Min) != 0 - yyq3140[3] = len(x.Default) != 0 - yyq3140[4] = len(x.DefaultRequest) != 0 - yyq3140[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3140 int - if yyr3140 || yy2arr3140 { + yysep3159 := !z.EncBinary() + yy2arr3159 := z.EncBasicHandle().StructToArray + var yyq3159 [6]bool + _, _, _ = yysep3159, yyq3159, yy2arr3159 + const yyr3159 bool = false + yyq3159[0] = x.Type != "" + yyq3159[1] = len(x.Max) != 0 + yyq3159[2] = len(x.Min) != 0 + yyq3159[3] = len(x.Default) != 0 + yyq3159[4] = len(x.DefaultRequest) != 0 + yyq3159[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3159 int + if yyr3159 || yy2arr3159 { r.EncodeArrayStart(6) } else { - yynn3140 = 0 - for _, b := range yyq3140 { + yynn3159 = 0 + for _, b := range yyq3159 { if b { - yynn3140++ + yynn3159++ } } - r.EncodeMapStart(yynn3140) - yynn3140 = 0 + r.EncodeMapStart(yynn3159) + yynn3159 = 0 } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[0] { + if yyq3159[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3140[0] { + if yyq3159[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[1] { + if yyq3159[1] { if x.Max == nil { r.EncodeNil() } else { @@ -39056,7 +39329,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3140[1] { + if yyq3159[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39067,9 +39340,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[2] { + if yyq3159[2] { if x.Min == nil { r.EncodeNil() } else { @@ -39079,7 +39352,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3140[2] { + if yyq3159[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39090,9 +39363,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[3] { + if yyq3159[3] { if x.Default == nil { r.EncodeNil() } else { @@ -39102,7 +39375,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3140[3] { + if yyq3159[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39113,9 +39386,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[4] { + if yyq3159[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -39125,7 +39398,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3140[4] { + if yyq3159[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39136,9 +39409,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3140[5] { + if yyq3159[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -39148,7 +39421,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3140[5] { + if yyq3159[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39159,7 +39432,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3140 || yy2arr3140 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39172,25 +39445,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3147 := z.DecBinary() - _ = yym3147 + yym3166 := z.DecBinary() + _ = yym3166 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3148 := r.ContainerType() - if yyct3148 == codecSelferValueTypeMap1234 { - yyl3148 := r.ReadMapStart() - if yyl3148 == 0 { + yyct3167 := r.ContainerType() + if yyct3167 == codecSelferValueTypeMap1234 { + yyl3167 := r.ReadMapStart() + if yyl3167 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3148, d) + x.codecDecodeSelfFromMap(yyl3167, d) } - } else if yyct3148 == codecSelferValueTypeArray1234 { - yyl3148 := r.ReadArrayStart() - if yyl3148 == 0 { + } else if yyct3167 == codecSelferValueTypeArray1234 { + yyl3167 := r.ReadArrayStart() + if yyl3167 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3148, d) + x.codecDecodeSelfFromArray(yyl3167, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39202,12 +39475,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3149Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3149Slc - var yyhl3149 bool = l >= 0 - for yyj3149 := 0; ; yyj3149++ { - if yyhl3149 { - if yyj3149 >= l { + var yys3168Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3168Slc + var yyhl3168 bool = l >= 0 + for yyj3168 := 0; ; yyj3168++ { + if yyhl3168 { + if yyj3168 >= l { break } } else { @@ -39216,10 +39489,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3149Slc = r.DecodeBytes(yys3149Slc, true, true) - yys3149 := string(yys3149Slc) + yys3168Slc = r.DecodeBytes(yys3168Slc, true, true) + yys3168 := string(yys3168Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3149 { + switch yys3168 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -39230,41 +39503,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3151 := &x.Max - yyv3151.CodecDecodeSelf(d) + yyv3170 := &x.Max + yyv3170.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3152 := &x.Min - yyv3152.CodecDecodeSelf(d) + yyv3171 := &x.Min + yyv3171.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3153 := &x.Default - yyv3153.CodecDecodeSelf(d) + yyv3172 := &x.Default + yyv3172.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3154 := &x.DefaultRequest - yyv3154.CodecDecodeSelf(d) + yyv3173 := &x.DefaultRequest + yyv3173.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3155 := &x.MaxLimitRequestRatio - yyv3155.CodecDecodeSelf(d) + yyv3174 := &x.MaxLimitRequestRatio + yyv3174.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3149) - } // end switch yys3149 - } // end for yyj3149 + z.DecStructFieldNotFound(-1, yys3168) + } // end switch yys3168 + } // end for yyj3168 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39272,16 +39545,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3156 int - var yyb3156 bool - var yyhl3156 bool = l >= 0 - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + var yyj3175 int + var yyb3175 bool + var yyhl3175 bool = l >= 0 + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39291,13 +39564,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39305,16 +39578,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3158 := &x.Max - yyv3158.CodecDecodeSelf(d) + yyv3177 := &x.Max + yyv3177.CodecDecodeSelf(d) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39322,16 +39595,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3159 := &x.Min - yyv3159.CodecDecodeSelf(d) + yyv3178 := &x.Min + yyv3178.CodecDecodeSelf(d) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39339,16 +39612,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3160 := &x.Default - yyv3160.CodecDecodeSelf(d) + yyv3179 := &x.Default + yyv3179.CodecDecodeSelf(d) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39356,16 +39629,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3161 := &x.DefaultRequest - yyv3161.CodecDecodeSelf(d) + yyv3180 := &x.DefaultRequest + yyv3180.CodecDecodeSelf(d) } - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39373,21 +39646,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3162 := &x.MaxLimitRequestRatio - yyv3162.CodecDecodeSelf(d) + yyv3181 := &x.MaxLimitRequestRatio + yyv3181.CodecDecodeSelf(d) } for { - yyj3156++ - if yyhl3156 { - yyb3156 = yyj3156 > l + yyj3175++ + if yyhl3175 { + yyb3175 = yyj3175 > l } else { - yyb3156 = r.CheckBreak() + yyb3175 = r.CheckBreak() } - if yyb3156 { + if yyb3175 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3156-1, "") + z.DecStructFieldNotFound(yyj3175-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39399,36 +39672,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3163 := z.EncBinary() - _ = yym3163 + yym3182 := z.EncBinary() + _ = yym3182 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3164 := !z.EncBinary() - yy2arr3164 := z.EncBasicHandle().StructToArray - var yyq3164 [1]bool - _, _, _ = yysep3164, yyq3164, yy2arr3164 - const yyr3164 bool = false - var yynn3164 int - if yyr3164 || yy2arr3164 { + yysep3183 := !z.EncBinary() + yy2arr3183 := z.EncBasicHandle().StructToArray + var yyq3183 [1]bool + _, _, _ = yysep3183, yyq3183, yy2arr3183 + const yyr3183 bool = false + var yynn3183 int + if yyr3183 || yy2arr3183 { r.EncodeArrayStart(1) } else { - yynn3164 = 1 - for _, b := range yyq3164 { + yynn3183 = 1 + for _, b := range yyq3183 { if b { - yynn3164++ + yynn3183++ } } - r.EncodeMapStart(yynn3164) - yynn3164 = 0 + r.EncodeMapStart(yynn3183) + yynn3183 = 0 } - if yyr3164 || yy2arr3164 { + if yyr3183 || yy2arr3183 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3166 := z.EncBinary() - _ = yym3166 + yym3185 := z.EncBinary() + _ = yym3185 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -39441,15 +39714,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3167 := z.EncBinary() - _ = yym3167 + yym3186 := z.EncBinary() + _ = yym3186 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3164 || yy2arr3164 { + if yyr3183 || yy2arr3183 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39462,25 +39735,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3168 := z.DecBinary() - _ = yym3168 + yym3187 := z.DecBinary() + _ = yym3187 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3169 := r.ContainerType() - if yyct3169 == codecSelferValueTypeMap1234 { - yyl3169 := r.ReadMapStart() - if yyl3169 == 0 { + yyct3188 := r.ContainerType() + if yyct3188 == codecSelferValueTypeMap1234 { + yyl3188 := r.ReadMapStart() + if yyl3188 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3169, d) + x.codecDecodeSelfFromMap(yyl3188, d) } - } else if yyct3169 == codecSelferValueTypeArray1234 { - yyl3169 := r.ReadArrayStart() - if yyl3169 == 0 { + } else if yyct3188 == codecSelferValueTypeArray1234 { + yyl3188 := r.ReadArrayStart() + if yyl3188 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3169, d) + x.codecDecodeSelfFromArray(yyl3188, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39492,12 +39765,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3170Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3170Slc - var yyhl3170 bool = l >= 0 - for yyj3170 := 0; ; yyj3170++ { - if yyhl3170 { - if yyj3170 >= l { + var yys3189Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3189Slc + var yyhl3189 bool = l >= 0 + for yyj3189 := 0; ; yyj3189++ { + if yyhl3189 { + if yyj3189 >= l { break } } else { @@ -39506,26 +39779,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3170Slc = r.DecodeBytes(yys3170Slc, true, true) - yys3170 := string(yys3170Slc) + yys3189Slc = r.DecodeBytes(yys3189Slc, true, true) + yys3189 := string(yys3189Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3170 { + switch yys3189 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3171 := &x.Limits - yym3172 := z.DecBinary() - _ = yym3172 + yyv3190 := &x.Limits + yym3191 := z.DecBinary() + _ = yym3191 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3171), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3190), d) } } default: - z.DecStructFieldNotFound(-1, yys3170) - } // end switch yys3170 - } // end for yyj3170 + z.DecStructFieldNotFound(-1, yys3189) + } // end switch yys3189 + } // end for yyj3189 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39533,16 +39806,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3173 int - var yyb3173 bool - var yyhl3173 bool = l >= 0 - yyj3173++ - if yyhl3173 { - yyb3173 = yyj3173 > l + var yyj3192 int + var yyb3192 bool + var yyhl3192 bool = l >= 0 + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3173 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3173 { + if yyb3192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39550,26 +39823,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3174 := &x.Limits - yym3175 := z.DecBinary() - _ = yym3175 + yyv3193 := &x.Limits + yym3194 := z.DecBinary() + _ = yym3194 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3174), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3193), d) } } for { - yyj3173++ - if yyhl3173 { - yyb3173 = yyj3173 > l + yyj3192++ + if yyhl3192 { + yyb3192 = yyj3192 > l } else { - yyb3173 = r.CheckBreak() + yyb3192 = r.CheckBreak() } - if yyb3173 { + if yyb3192 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3173-1, "") + z.DecStructFieldNotFound(yyj3192-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39581,38 +39854,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3176 := z.EncBinary() - _ = yym3176 + yym3195 := z.EncBinary() + _ = yym3195 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3177 := !z.EncBinary() - yy2arr3177 := z.EncBasicHandle().StructToArray - var yyq3177 [4]bool - _, _, _ = yysep3177, yyq3177, yy2arr3177 - const yyr3177 bool = false - yyq3177[0] = x.Kind != "" - yyq3177[1] = x.APIVersion != "" - yyq3177[2] = true - yyq3177[3] = true - var yynn3177 int - if yyr3177 || yy2arr3177 { + yysep3196 := !z.EncBinary() + yy2arr3196 := z.EncBasicHandle().StructToArray + var yyq3196 [4]bool + _, _, _ = yysep3196, yyq3196, yy2arr3196 + const yyr3196 bool = false + yyq3196[0] = x.Kind != "" + yyq3196[1] = x.APIVersion != "" + yyq3196[2] = true + yyq3196[3] = true + var yynn3196 int + if yyr3196 || yy2arr3196 { r.EncodeArrayStart(4) } else { - yynn3177 = 0 - for _, b := range yyq3177 { + yynn3196 = 0 + for _, b := range yyq3196 { if b { - yynn3177++ + yynn3196++ } } - r.EncodeMapStart(yynn3177) - yynn3177 = 0 + r.EncodeMapStart(yynn3196) + yynn3196 = 0 } - if yyr3177 || yy2arr3177 { + if yyr3196 || yy2arr3196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3177[0] { - yym3179 := z.EncBinary() - _ = yym3179 + if yyq3196[0] { + yym3198 := z.EncBinary() + _ = yym3198 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39621,23 +39894,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3177[0] { + if yyq3196[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3180 := z.EncBinary() - _ = yym3180 + yym3199 := z.EncBinary() + _ = yym3199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3177 || yy2arr3177 { + if yyr3196 || yy2arr3196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3177[1] { - yym3182 := z.EncBinary() - _ = yym3182 + if yyq3196[1] { + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39646,53 +39919,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3177[1] { + if yyq3196[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3183 := z.EncBinary() - _ = yym3183 + yym3202 := z.EncBinary() + _ = yym3202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3177 || yy2arr3177 { + if yyr3196 || yy2arr3196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3177[2] { - yy3185 := &x.ObjectMeta - yy3185.CodecEncodeSelf(e) + if yyq3196[2] { + yy3204 := &x.ObjectMeta + yy3204.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3177[2] { + if yyq3196[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3186 := &x.ObjectMeta - yy3186.CodecEncodeSelf(e) + yy3205 := &x.ObjectMeta + yy3205.CodecEncodeSelf(e) } } - if yyr3177 || yy2arr3177 { + if yyr3196 || yy2arr3196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3177[3] { - yy3188 := &x.Spec - yy3188.CodecEncodeSelf(e) + if yyq3196[3] { + yy3207 := &x.Spec + yy3207.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3177[3] { + if yyq3196[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3189 := &x.Spec - yy3189.CodecEncodeSelf(e) + yy3208 := &x.Spec + yy3208.CodecEncodeSelf(e) } } - if yyr3177 || yy2arr3177 { + if yyr3196 || yy2arr3196 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39705,25 +39978,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3190 := z.DecBinary() - _ = yym3190 + yym3209 := z.DecBinary() + _ = yym3209 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3191 := r.ContainerType() - if yyct3191 == codecSelferValueTypeMap1234 { - yyl3191 := r.ReadMapStart() - if yyl3191 == 0 { + yyct3210 := r.ContainerType() + if yyct3210 == codecSelferValueTypeMap1234 { + yyl3210 := r.ReadMapStart() + if yyl3210 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3191, d) + x.codecDecodeSelfFromMap(yyl3210, d) } - } else if yyct3191 == codecSelferValueTypeArray1234 { - yyl3191 := r.ReadArrayStart() - if yyl3191 == 0 { + } else if yyct3210 == codecSelferValueTypeArray1234 { + yyl3210 := r.ReadArrayStart() + if yyl3210 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3191, d) + x.codecDecodeSelfFromArray(yyl3210, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39735,12 +40008,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3192Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3192Slc - var yyhl3192 bool = l >= 0 - for yyj3192 := 0; ; yyj3192++ { - if yyhl3192 { - if yyj3192 >= l { + var yys3211Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3211Slc + var yyhl3211 bool = l >= 0 + for yyj3211 := 0; ; yyj3211++ { + if yyhl3211 { + if yyj3211 >= l { break } } else { @@ -39749,10 +40022,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3192Slc = r.DecodeBytes(yys3192Slc, true, true) - yys3192 := string(yys3192Slc) + yys3211Slc = r.DecodeBytes(yys3211Slc, true, true) + yys3211 := string(yys3211Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3192 { + switch yys3211 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39769,20 +40042,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3195 := &x.ObjectMeta - yyv3195.CodecDecodeSelf(d) + yyv3214 := &x.ObjectMeta + yyv3214.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3196 := &x.Spec - yyv3196.CodecDecodeSelf(d) + yyv3215 := &x.Spec + yyv3215.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3192) - } // end switch yys3192 - } // end for yyj3192 + z.DecStructFieldNotFound(-1, yys3211) + } // end switch yys3211 + } // end for yyj3211 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39790,16 +40063,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3197 int - var yyb3197 bool - var yyhl3197 bool = l >= 0 - yyj3197++ - if yyhl3197 { - yyb3197 = yyj3197 > l + var yyj3216 int + var yyb3216 bool + var yyhl3216 bool = l >= 0 + yyj3216++ + if yyhl3216 { + yyb3216 = yyj3216 > l } else { - yyb3197 = r.CheckBreak() + yyb3216 = r.CheckBreak() } - if yyb3197 { + if yyb3216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39809,13 +40082,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3197++ - if yyhl3197 { - yyb3197 = yyj3197 > l + yyj3216++ + if yyhl3216 { + yyb3216 = yyj3216 > l } else { - yyb3197 = r.CheckBreak() + yyb3216 = r.CheckBreak() } - if yyb3197 { + if yyb3216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39825,13 +40098,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3197++ - if yyhl3197 { - yyb3197 = yyj3197 > l + yyj3216++ + if yyhl3216 { + yyb3216 = yyj3216 > l } else { - yyb3197 = r.CheckBreak() + yyb3216 = r.CheckBreak() } - if yyb3197 { + if yyb3216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39839,16 +40112,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3200 := &x.ObjectMeta - yyv3200.CodecDecodeSelf(d) + yyv3219 := &x.ObjectMeta + yyv3219.CodecDecodeSelf(d) } - yyj3197++ - if yyhl3197 { - yyb3197 = yyj3197 > l + yyj3216++ + if yyhl3216 { + yyb3216 = yyj3216 > l } else { - yyb3197 = r.CheckBreak() + yyb3216 = r.CheckBreak() } - if yyb3197 { + if yyb3216 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39856,21 +40129,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3201 := &x.Spec - yyv3201.CodecDecodeSelf(d) + yyv3220 := &x.Spec + yyv3220.CodecDecodeSelf(d) } for { - yyj3197++ - if yyhl3197 { - yyb3197 = yyj3197 > l + yyj3216++ + if yyhl3216 { + yyb3216 = yyj3216 > l } else { - yyb3197 = r.CheckBreak() + yyb3216 = r.CheckBreak() } - if yyb3197 { + if yyb3216 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3197-1, "") + z.DecStructFieldNotFound(yyj3216-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39882,37 +40155,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3202 := z.EncBinary() - _ = yym3202 + yym3221 := z.EncBinary() + _ = yym3221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3203 := !z.EncBinary() - yy2arr3203 := z.EncBasicHandle().StructToArray - var yyq3203 [4]bool - _, _, _ = yysep3203, yyq3203, yy2arr3203 - const yyr3203 bool = false - yyq3203[0] = x.Kind != "" - yyq3203[1] = x.APIVersion != "" - yyq3203[2] = true - var yynn3203 int - if yyr3203 || yy2arr3203 { + yysep3222 := !z.EncBinary() + yy2arr3222 := z.EncBasicHandle().StructToArray + var yyq3222 [4]bool + _, _, _ = yysep3222, yyq3222, yy2arr3222 + const yyr3222 bool = false + yyq3222[0] = x.Kind != "" + yyq3222[1] = x.APIVersion != "" + yyq3222[2] = true + var yynn3222 int + if yyr3222 || yy2arr3222 { r.EncodeArrayStart(4) } else { - yynn3203 = 1 - for _, b := range yyq3203 { + yynn3222 = 1 + for _, b := range yyq3222 { if b { - yynn3203++ + yynn3222++ } } - r.EncodeMapStart(yynn3203) - yynn3203 = 0 + r.EncodeMapStart(yynn3222) + yynn3222 = 0 } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[0] { - yym3205 := z.EncBinary() - _ = yym3205 + if yyq3222[0] { + yym3224 := z.EncBinary() + _ = yym3224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39921,23 +40194,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3203[0] { + if yyq3222[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3206 := z.EncBinary() - _ = yym3206 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[1] { - yym3208 := z.EncBinary() - _ = yym3208 + if yyq3222[1] { + yym3227 := z.EncBinary() + _ = yym3227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39946,54 +40219,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3203[1] { + if yyq3222[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3209 := z.EncBinary() - _ = yym3209 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3203[2] { - yy3211 := &x.ListMeta - yym3212 := z.EncBinary() - _ = yym3212 + if yyq3222[2] { + yy3230 := &x.ListMeta + yym3231 := z.EncBinary() + _ = yym3231 if false { - } else if z.HasExtensions() && z.EncExt(yy3211) { + } else if z.HasExtensions() && z.EncExt(yy3230) { } else { - z.EncFallback(yy3211) + z.EncFallback(yy3230) } } else { r.EncodeNil() } } else { - if yyq3203[2] { + if yyq3222[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3213 := &x.ListMeta - yym3214 := z.EncBinary() - _ = yym3214 + yy3232 := &x.ListMeta + yym3233 := z.EncBinary() + _ = yym3233 if false { - } else if z.HasExtensions() && z.EncExt(yy3213) { + } else if z.HasExtensions() && z.EncExt(yy3232) { } else { - z.EncFallback(yy3213) + z.EncFallback(yy3232) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3216 := z.EncBinary() - _ = yym3216 + yym3235 := z.EncBinary() + _ = yym3235 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -40006,15 +40279,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3217 := z.EncBinary() - _ = yym3217 + yym3236 := z.EncBinary() + _ = yym3236 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3203 || yy2arr3203 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40024,265 +40297,6 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { } func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3218 := z.DecBinary() - _ = yym3218 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3219 := r.ContainerType() - if yyct3219 == codecSelferValueTypeMap1234 { - yyl3219 := r.ReadMapStart() - if yyl3219 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3219, d) - } - } else if yyct3219 == codecSelferValueTypeArray1234 { - yyl3219 := r.ReadArrayStart() - if yyl3219 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3219, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3220Slc - var yyhl3220 bool = l >= 0 - for yyj3220 := 0; ; yyj3220++ { - if yyhl3220 { - if yyj3220 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3220Slc = r.DecodeBytes(yys3220Slc, true, true) - yys3220 := string(yys3220Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3220 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3223 := &x.ListMeta - yym3224 := z.DecBinary() - _ = yym3224 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3223) { - } else { - z.DecFallback(yyv3223, false) - } - } - case "items": - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3225 := &x.Items - yym3226 := z.DecBinary() - _ = yym3226 - if false { - } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3225), d) - } - } - default: - z.DecStructFieldNotFound(-1, yys3220) - } // end switch yys3220 - } // end for yyj3220 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3227 int - var yyb3227 bool - var yyhl3227 bool = l >= 0 - yyj3227++ - if yyhl3227 { - yyb3227 = yyj3227 > l - } else { - yyb3227 = r.CheckBreak() - } - if yyb3227 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3227++ - if yyhl3227 { - yyb3227 = yyj3227 > l - } else { - yyb3227 = r.CheckBreak() - } - if yyb3227 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3227++ - if yyhl3227 { - yyb3227 = yyj3227 > l - } else { - yyb3227 = r.CheckBreak() - } - if yyb3227 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ListMeta = pkg2_unversioned.ListMeta{} - } else { - yyv3230 := &x.ListMeta - yym3231 := z.DecBinary() - _ = yym3231 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3230) { - } else { - z.DecFallback(yyv3230, false) - } - } - yyj3227++ - if yyhl3227 { - yyb3227 = yyj3227 > l - } else { - yyb3227 = r.CheckBreak() - } - if yyb3227 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Items = nil - } else { - yyv3232 := &x.Items - yym3233 := z.DecBinary() - _ = yym3233 - if false { - } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3232), d) - } - } - for { - yyj3227++ - if yyhl3227 { - yyb3227 = yyj3227 > l - } else { - yyb3227 = r.CheckBreak() - } - if yyb3227 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3227-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3234 := z.EncBinary() - _ = yym3234 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3235 := !z.EncBinary() - yy2arr3235 := z.EncBasicHandle().StructToArray - var yyq3235 [1]bool - _, _, _ = yysep3235, yyq3235, yy2arr3235 - const yyr3235 bool = false - yyq3235[0] = len(x.Hard) != 0 - var yynn3235 int - if yyr3235 || yy2arr3235 { - r.EncodeArrayStart(1) - } else { - yynn3235 = 0 - for _, b := range yyq3235 { - if b { - yynn3235++ - } - } - r.EncodeMapStart(yynn3235) - yynn3235 = 0 - } - if yyr3235 || yy2arr3235 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3235[0] { - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3235[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hard")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } - } - if yyr3235 || yy2arr3235 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40312,7 +40326,7 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r @@ -40334,820 +40348,6 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) yys3239 := string(yys3239Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) switch yys3239 { - case "hard": - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3240 := &x.Hard - yyv3240.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3239) - } // end switch yys3239 - } // end for yyj3239 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3241 int - var yyb3241 bool - var yyhl3241 bool = l >= 0 - yyj3241++ - if yyhl3241 { - yyb3241 = yyj3241 > l - } else { - yyb3241 = r.CheckBreak() - } - if yyb3241 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3242 := &x.Hard - yyv3242.CodecDecodeSelf(d) - } - for { - yyj3241++ - if yyhl3241 { - yyb3241 = yyj3241 > l - } else { - yyb3241 = r.CheckBreak() - } - if yyb3241 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3241-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3243 := z.EncBinary() - _ = yym3243 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3244 := !z.EncBinary() - yy2arr3244 := z.EncBasicHandle().StructToArray - var yyq3244 [2]bool - _, _, _ = yysep3244, yyq3244, yy2arr3244 - const yyr3244 bool = false - yyq3244[0] = len(x.Hard) != 0 - yyq3244[1] = len(x.Used) != 0 - var yynn3244 int - if yyr3244 || yy2arr3244 { - r.EncodeArrayStart(2) - } else { - yynn3244 = 0 - for _, b := range yyq3244 { - if b { - yynn3244++ - } - } - r.EncodeMapStart(yynn3244) - yynn3244 = 0 - } - if yyr3244 || yy2arr3244 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3244[0] { - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3244[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hard")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Hard == nil { - r.EncodeNil() - } else { - x.Hard.CodecEncodeSelf(e) - } - } - } - if yyr3244 || yy2arr3244 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3244[1] { - if x.Used == nil { - r.EncodeNil() - } else { - x.Used.CodecEncodeSelf(e) - } - } else { - r.EncodeNil() - } - } else { - if yyq3244[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("used")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Used == nil { - r.EncodeNil() - } else { - x.Used.CodecEncodeSelf(e) - } - } - } - if yyr3244 || yy2arr3244 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3247 := z.DecBinary() - _ = yym3247 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3248 := r.ContainerType() - if yyct3248 == codecSelferValueTypeMap1234 { - yyl3248 := r.ReadMapStart() - if yyl3248 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3248, d) - } - } else if yyct3248 == codecSelferValueTypeArray1234 { - yyl3248 := r.ReadArrayStart() - if yyl3248 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3248, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3249Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3249Slc - var yyhl3249 bool = l >= 0 - for yyj3249 := 0; ; yyj3249++ { - if yyhl3249 { - if yyj3249 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3249Slc = r.DecodeBytes(yys3249Slc, true, true) - yys3249 := string(yys3249Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3249 { - case "hard": - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3250 := &x.Hard - yyv3250.CodecDecodeSelf(d) - } - case "used": - if r.TryDecodeAsNil() { - x.Used = nil - } else { - yyv3251 := &x.Used - yyv3251.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3249) - } // end switch yys3249 - } // end for yyj3249 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3252 int - var yyb3252 bool - var yyhl3252 bool = l >= 0 - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l - } else { - yyb3252 = r.CheckBreak() - } - if yyb3252 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Hard = nil - } else { - yyv3253 := &x.Hard - yyv3253.CodecDecodeSelf(d) - } - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l - } else { - yyb3252 = r.CheckBreak() - } - if yyb3252 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Used = nil - } else { - yyv3254 := &x.Used - yyv3254.CodecDecodeSelf(d) - } - for { - yyj3252++ - if yyhl3252 { - yyb3252 = yyj3252 > l - } else { - yyb3252 = r.CheckBreak() - } - if yyb3252 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3252-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3255 := z.EncBinary() - _ = yym3255 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3256 := !z.EncBinary() - yy2arr3256 := z.EncBasicHandle().StructToArray - var yyq3256 [5]bool - _, _, _ = yysep3256, yyq3256, yy2arr3256 - const yyr3256 bool = false - yyq3256[0] = x.Kind != "" - yyq3256[1] = x.APIVersion != "" - yyq3256[2] = true - yyq3256[3] = true - yyq3256[4] = true - var yynn3256 int - if yyr3256 || yy2arr3256 { - r.EncodeArrayStart(5) - } else { - yynn3256 = 0 - for _, b := range yyq3256 { - if b { - yynn3256++ - } - } - r.EncodeMapStart(yynn3256) - yynn3256 = 0 - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[0] { - yym3258 := z.EncBinary() - _ = yym3258 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3256[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3259 := z.EncBinary() - _ = yym3259 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[1] { - yym3261 := z.EncBinary() - _ = yym3261 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3256[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3262 := z.EncBinary() - _ = yym3262 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[2] { - yy3264 := &x.ObjectMeta - yy3264.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3256[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3265 := &x.ObjectMeta - yy3265.CodecEncodeSelf(e) - } - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[3] { - yy3267 := &x.Spec - yy3267.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3256[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3268 := &x.Spec - yy3268.CodecEncodeSelf(e) - } - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3256[4] { - yy3270 := &x.Status - yy3270.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3256[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3271 := &x.Status - yy3271.CodecEncodeSelf(e) - } - } - if yyr3256 || yy2arr3256 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3272 := z.DecBinary() - _ = yym3272 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3273 := r.ContainerType() - if yyct3273 == codecSelferValueTypeMap1234 { - yyl3273 := r.ReadMapStart() - if yyl3273 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3273, d) - } - } else if yyct3273 == codecSelferValueTypeArray1234 { - yyl3273 := r.ReadArrayStart() - if yyl3273 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3273, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3274Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3274Slc - var yyhl3274 bool = l >= 0 - for yyj3274 := 0; ; yyj3274++ { - if yyhl3274 { - if yyj3274 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3274Slc = r.DecodeBytes(yys3274Slc, true, true) - yys3274 := string(yys3274Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3274 { - case "kind": - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - case "apiVersion": - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - case "metadata": - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3277 := &x.ObjectMeta - yyv3277.CodecDecodeSelf(d) - } - case "spec": - if r.TryDecodeAsNil() { - x.Spec = ResourceQuotaSpec{} - } else { - yyv3278 := &x.Spec - yyv3278.CodecDecodeSelf(d) - } - case "status": - if r.TryDecodeAsNil() { - x.Status = ResourceQuotaStatus{} - } else { - yyv3279 := &x.Status - yyv3279.CodecDecodeSelf(d) - } - default: - z.DecStructFieldNotFound(-1, yys3274) - } // end switch yys3274 - } // end for yyj3274 - z.DecSendContainerState(codecSelfer_containerMapEnd1234) -} - -func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yyj3280 int - var yyb3280 bool - var yyhl3280 bool = l >= 0 - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Kind = "" - } else { - x.Kind = string(r.DecodeString()) - } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.APIVersion = "" - } else { - x.APIVersion = string(r.DecodeString()) - } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ObjectMeta = ObjectMeta{} - } else { - yyv3283 := &x.ObjectMeta - yyv3283.CodecDecodeSelf(d) - } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Spec = ResourceQuotaSpec{} - } else { - yyv3284 := &x.Spec - yyv3284.CodecDecodeSelf(d) - } - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Status = ResourceQuotaStatus{} - } else { - yyv3285 := &x.Status - yyv3285.CodecDecodeSelf(d) - } - for { - yyj3280++ - if yyhl3280 { - yyb3280 = yyj3280 > l - } else { - yyb3280 = r.CheckBreak() - } - if yyb3280 { - break - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3280-1, "") - } - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - if x == nil { - r.EncodeNil() - } else { - yym3286 := z.EncBinary() - _ = yym3286 - if false { - } else if z.HasExtensions() && z.EncExt(x) { - } else { - yysep3287 := !z.EncBinary() - yy2arr3287 := z.EncBasicHandle().StructToArray - var yyq3287 [4]bool - _, _, _ = yysep3287, yyq3287, yy2arr3287 - const yyr3287 bool = false - yyq3287[0] = x.Kind != "" - yyq3287[1] = x.APIVersion != "" - yyq3287[2] = true - var yynn3287 int - if yyr3287 || yy2arr3287 { - r.EncodeArrayStart(4) - } else { - yynn3287 = 1 - for _, b := range yyq3287 { - if b { - yynn3287++ - } - } - r.EncodeMapStart(yynn3287) - yynn3287 = 0 - } - if yyr3287 || yy2arr3287 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[0] { - yym3289 := z.EncBinary() - _ = yym3289 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3287[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3290 := z.EncBinary() - _ = yym3290 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3287 || yy2arr3287 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[1] { - yym3292 := z.EncBinary() - _ = yym3292 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3287[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3293 := z.EncBinary() - _ = yym3293 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3287 || yy2arr3287 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3287[2] { - yy3295 := &x.ListMeta - yym3296 := z.EncBinary() - _ = yym3296 - if false { - } else if z.HasExtensions() && z.EncExt(yy3295) { - } else { - z.EncFallback(yy3295) - } - } else { - r.EncodeNil() - } - } else { - if yyq3287[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3297 := &x.ListMeta - yym3298 := z.EncBinary() - _ = yym3298 - if false { - } else if z.HasExtensions() && z.EncExt(yy3297) { - } else { - z.EncFallback(yy3297) - } - } - } - if yyr3287 || yy2arr3287 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3300 := z.EncBinary() - _ = yym3300 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } else { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("items")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Items == nil { - r.EncodeNil() - } else { - yym3301 := z.EncBinary() - _ = yym3301 - if false { - } else { - h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) - } - } - } - if yyr3287 || yy2arr3287 { - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - z.EncSendContainerState(codecSelfer_containerMapEnd1234) - } - } - } -} - -func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yym3302 := z.DecBinary() - _ = yym3302 - if false { - } else if z.HasExtensions() && z.DecExt(x) { - } else { - yyct3303 := r.ContainerType() - if yyct3303 == codecSelferValueTypeMap1234 { - yyl3303 := r.ReadMapStart() - if yyl3303 == 0 { - z.DecSendContainerState(codecSelfer_containerMapEnd1234) - } else { - x.codecDecodeSelfFromMap(yyl3303, d) - } - } else if yyct3303 == codecSelferValueTypeArray1234 { - yyl3303 := r.ReadArrayStart() - if yyl3303 == 0 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - } else { - x.codecDecodeSelfFromArray(yyl3303, d) - } - } else { - panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) - } - } -} - -func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - var yys3304Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3304Slc - var yyhl3304 bool = l >= 0 - for yyj3304 := 0; ; yyj3304++ { - if yyhl3304 { - if yyj3304 >= l { - break - } - } else { - if r.CheckBreak() { - break - } - } - z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3304Slc = r.DecodeBytes(yys3304Slc, true, true) - yys3304 := string(yys3304Slc) - z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3304 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41164,48 +40364,48 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3307 := &x.ListMeta - yym3308 := z.DecBinary() - _ = yym3308 + yyv3242 := &x.ListMeta + yym3243 := z.DecBinary() + _ = yym3243 if false { - } else if z.HasExtensions() && z.DecExt(yyv3307) { + } else if z.HasExtensions() && z.DecExt(yyv3242) { } else { - z.DecFallback(yyv3307, false) + z.DecFallback(yyv3242, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3309 := &x.Items - yym3310 := z.DecBinary() - _ = yym3310 + yyv3244 := &x.Items + yym3245 := z.DecBinary() + _ = yym3245 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3309), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3244), d) } } default: - z.DecStructFieldNotFound(-1, yys3304) - } // end switch yys3304 - } // end for yyj3304 + z.DecStructFieldNotFound(-1, yys3239) + } // end switch yys3239 + } // end for yyj3239 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3311 int - var yyb3311 bool - var yyhl3311 bool = l >= 0 - yyj3311++ - if yyhl3311 { - yyb3311 = yyj3311 > l + var yyj3246 int + var yyb3246 bool + var yyhl3246 bool = l >= 0 + yyj3246++ + if yyhl3246 { + yyb3246 = yyj3246 > l } else { - yyb3311 = r.CheckBreak() + yyb3246 = r.CheckBreak() } - if yyb3311 { + if yyb3246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41215,13 +40415,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3311++ - if yyhl3311 { - yyb3311 = yyj3311 > l + yyj3246++ + if yyhl3246 { + yyb3246 = yyj3246 > l } else { - yyb3311 = r.CheckBreak() + yyb3246 = r.CheckBreak() } - if yyb3311 { + if yyb3246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41231,13 +40431,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3311++ - if yyhl3311 { - yyb3311 = yyj3311 > l + yyj3246++ + if yyhl3246 { + yyb3246 = yyj3246 > l } else { - yyb3311 = r.CheckBreak() + yyb3246 = r.CheckBreak() } - if yyb3311 { + if yyb3246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41245,22 +40445,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3314 := &x.ListMeta - yym3315 := z.DecBinary() - _ = yym3315 + yyv3249 := &x.ListMeta + yym3250 := z.DecBinary() + _ = yym3250 if false { - } else if z.HasExtensions() && z.DecExt(yyv3314) { + } else if z.HasExtensions() && z.DecExt(yyv3249) { } else { - z.DecFallback(yyv3314, false) + z.DecFallback(yyv3249, false) } } - yyj3311++ - if yyhl3311 { - yyb3311 = yyj3311 > l + yyj3246++ + if yyhl3246 { + yyb3246 = yyj3246 > l } else { - yyb3311 = r.CheckBreak() + yyb3246 = r.CheckBreak() } - if yyb3311 { + if yyb3246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41268,181 +40468,85 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3316 := &x.Items - yym3317 := z.DecBinary() - _ = yym3317 + yyv3251 := &x.Items + yym3252 := z.DecBinary() + _ = yym3252 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3316), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3251), d) } } for { - yyj3311++ - if yyhl3311 { - yyb3311 = yyj3311 > l + yyj3246++ + if yyhl3246 { + yyb3246 = yyj3246 > l } else { - yyb3311 = r.CheckBreak() + yyb3246 = r.CheckBreak() } - if yyb3311 { + if yyb3246 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3311-1, "") + z.DecStructFieldNotFound(yyj3246-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } -func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { +func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r if x == nil { r.EncodeNil() } else { - yym3318 := z.EncBinary() - _ = yym3318 + yym3253 := z.EncBinary() + _ = yym3253 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3319 := !z.EncBinary() - yy2arr3319 := z.EncBasicHandle().StructToArray - var yyq3319 [5]bool - _, _, _ = yysep3319, yyq3319, yy2arr3319 - const yyr3319 bool = false - yyq3319[0] = x.Kind != "" - yyq3319[1] = x.APIVersion != "" - yyq3319[2] = true - yyq3319[3] = len(x.Data) != 0 - yyq3319[4] = x.Type != "" - var yynn3319 int - if yyr3319 || yy2arr3319 { - r.EncodeArrayStart(5) + yysep3254 := !z.EncBinary() + yy2arr3254 := z.EncBasicHandle().StructToArray + var yyq3254 [1]bool + _, _, _ = yysep3254, yyq3254, yy2arr3254 + const yyr3254 bool = false + yyq3254[0] = len(x.Hard) != 0 + var yynn3254 int + if yyr3254 || yy2arr3254 { + r.EncodeArrayStart(1) } else { - yynn3319 = 0 - for _, b := range yyq3319 { + yynn3254 = 0 + for _, b := range yyq3254 { if b { - yynn3319++ + yynn3254++ } } - r.EncodeMapStart(yynn3319) - yynn3319 = 0 + r.EncodeMapStart(yynn3254) + yynn3254 = 0 } - if yyr3319 || yy2arr3319 { + if yyr3254 || yy2arr3254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[0] { - yym3321 := z.EncBinary() - _ = yym3321 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3319[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3322 := z.EncBinary() - _ = yym3322 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3319 || yy2arr3319 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[1] { - yym3324 := z.EncBinary() - _ = yym3324 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3319[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3325 := z.EncBinary() - _ = yym3325 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3319 || yy2arr3319 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[2] { - yy3327 := &x.ObjectMeta - yy3327.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3319[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3328 := &x.ObjectMeta - yy3328.CodecEncodeSelf(e) - } - } - if yyr3319 || yy2arr3319 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[3] { - if x.Data == nil { + if yyq3254[0] { + if x.Hard == nil { r.EncodeNil() } else { - yym3330 := z.EncBinary() - _ = yym3330 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } + x.Hard.CodecEncodeSelf(e) } } else { r.EncodeNil() } } else { - if yyq3319[3] { + if yyq3254[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("data")) + r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Data == nil { + if x.Hard == nil { r.EncodeNil() } else { - yym3331 := z.EncBinary() - _ = yym3331 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } + x.Hard.CodecEncodeSelf(e) } } } - if yyr3319 || yy2arr3319 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3319[4] { - x.Type.CodecEncodeSelf(e) - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3319[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - x.Type.CodecEncodeSelf(e) - } - } - if yyr3319 || yy2arr3319 { + if yyr3254 || yy2arr3254 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41451,29 +40555,29 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } -func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { +func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3333 := z.DecBinary() - _ = yym3333 + yym3256 := z.DecBinary() + _ = yym3256 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3334 := r.ContainerType() - if yyct3334 == codecSelferValueTypeMap1234 { - yyl3334 := r.ReadMapStart() - if yyl3334 == 0 { + yyct3257 := r.ContainerType() + if yyct3257 == codecSelferValueTypeMap1234 { + yyl3257 := r.ReadMapStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3334, d) + x.codecDecodeSelfFromMap(yyl3257, d) } - } else if yyct3334 == codecSelferValueTypeArray1234 { - yyl3334 := r.ReadArrayStart() - if yyl3334 == 0 { + } else if yyct3257 == codecSelferValueTypeArray1234 { + yyl3257 := r.ReadArrayStart() + if yyl3257 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3334, d) + x.codecDecodeSelfFromArray(yyl3257, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41481,16 +40585,16 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { } } -func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { +func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3335Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3335Slc - var yyhl3335 bool = l >= 0 - for yyj3335 := 0; ; yyj3335++ { - if yyhl3335 { - if yyj3335 >= l { + var yys3258Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3258Slc + var yyhl3258 bool = l >= 0 + for yyj3258 := 0; ; yyj3258++ { + if yyhl3258 { + if yyj3258 >= l { break } } else { @@ -41499,10 +40603,478 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3335Slc = r.DecodeBytes(yys3335Slc, true, true) - yys3335 := string(yys3335Slc) + yys3258Slc = r.DecodeBytes(yys3258Slc, true, true) + yys3258 := string(yys3258Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3335 { + switch yys3258 { + case "hard": + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3259 := &x.Hard + yyv3259.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3258) + } // end switch yys3258 + } // end for yyj3258 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3260 int + var yyb3260 bool + var yyhl3260 bool = l >= 0 + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l + } else { + yyb3260 = r.CheckBreak() + } + if yyb3260 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3261 := &x.Hard + yyv3261.CodecDecodeSelf(d) + } + for { + yyj3260++ + if yyhl3260 { + yyb3260 = yyj3260 > l + } else { + yyb3260 = r.CheckBreak() + } + if yyb3260 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3260-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3262 := z.EncBinary() + _ = yym3262 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3263 := !z.EncBinary() + yy2arr3263 := z.EncBasicHandle().StructToArray + var yyq3263 [2]bool + _, _, _ = yysep3263, yyq3263, yy2arr3263 + const yyr3263 bool = false + yyq3263[0] = len(x.Hard) != 0 + yyq3263[1] = len(x.Used) != 0 + var yynn3263 int + if yyr3263 || yy2arr3263 { + r.EncodeArrayStart(2) + } else { + yynn3263 = 0 + for _, b := range yyq3263 { + if b { + yynn3263++ + } + } + r.EncodeMapStart(yynn3263) + yynn3263 = 0 + } + if yyr3263 || yy2arr3263 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3263[0] { + if x.Hard == nil { + r.EncodeNil() + } else { + x.Hard.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3263[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hard")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Hard == nil { + r.EncodeNil() + } else { + x.Hard.CodecEncodeSelf(e) + } + } + } + if yyr3263 || yy2arr3263 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3263[1] { + if x.Used == nil { + r.EncodeNil() + } else { + x.Used.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq3263[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("used")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Used == nil { + r.EncodeNil() + } else { + x.Used.CodecEncodeSelf(e) + } + } + } + if yyr3263 || yy2arr3263 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3266 := z.DecBinary() + _ = yym3266 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3267 := r.ContainerType() + if yyct3267 == codecSelferValueTypeMap1234 { + yyl3267 := r.ReadMapStart() + if yyl3267 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3267, d) + } + } else if yyct3267 == codecSelferValueTypeArray1234 { + yyl3267 := r.ReadArrayStart() + if yyl3267 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3267, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3268Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3268Slc + var yyhl3268 bool = l >= 0 + for yyj3268 := 0; ; yyj3268++ { + if yyhl3268 { + if yyj3268 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3268Slc = r.DecodeBytes(yys3268Slc, true, true) + yys3268 := string(yys3268Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3268 { + case "hard": + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3269 := &x.Hard + yyv3269.CodecDecodeSelf(d) + } + case "used": + if r.TryDecodeAsNil() { + x.Used = nil + } else { + yyv3270 := &x.Used + yyv3270.CodecDecodeSelf(d) + } + default: + z.DecStructFieldNotFound(-1, yys3268) + } // end switch yys3268 + } // end for yyj3268 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3271 int + var yyb3271 bool + var yyhl3271 bool = l >= 0 + yyj3271++ + if yyhl3271 { + yyb3271 = yyj3271 > l + } else { + yyb3271 = r.CheckBreak() + } + if yyb3271 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Hard = nil + } else { + yyv3272 := &x.Hard + yyv3272.CodecDecodeSelf(d) + } + yyj3271++ + if yyhl3271 { + yyb3271 = yyj3271 > l + } else { + yyb3271 = r.CheckBreak() + } + if yyb3271 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Used = nil + } else { + yyv3273 := &x.Used + yyv3273.CodecDecodeSelf(d) + } + for { + yyj3271++ + if yyhl3271 { + yyb3271 = yyj3271 > l + } else { + yyb3271 = r.CheckBreak() + } + if yyb3271 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3271-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3274 := z.EncBinary() + _ = yym3274 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3275 := !z.EncBinary() + yy2arr3275 := z.EncBasicHandle().StructToArray + var yyq3275 [5]bool + _, _, _ = yysep3275, yyq3275, yy2arr3275 + const yyr3275 bool = false + yyq3275[0] = x.Kind != "" + yyq3275[1] = x.APIVersion != "" + yyq3275[2] = true + yyq3275[3] = true + yyq3275[4] = true + var yynn3275 int + if yyr3275 || yy2arr3275 { + r.EncodeArrayStart(5) + } else { + yynn3275 = 0 + for _, b := range yyq3275 { + if b { + yynn3275++ + } + } + r.EncodeMapStart(yynn3275) + yynn3275 = 0 + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3275[0] { + yym3277 := z.EncBinary() + _ = yym3277 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3275[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3278 := z.EncBinary() + _ = yym3278 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3275[1] { + yym3280 := z.EncBinary() + _ = yym3280 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3275[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3281 := z.EncBinary() + _ = yym3281 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3275[2] { + yy3283 := &x.ObjectMeta + yy3283.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3275[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3284 := &x.ObjectMeta + yy3284.CodecEncodeSelf(e) + } + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3275[3] { + yy3286 := &x.Spec + yy3286.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3275[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3287 := &x.Spec + yy3287.CodecEncodeSelf(e) + } + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3275[4] { + yy3289 := &x.Status + yy3289.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3275[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3290 := &x.Status + yy3290.CodecEncodeSelf(e) + } + } + if yyr3275 || yy2arr3275 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3291 := z.DecBinary() + _ = yym3291 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3292 := r.ContainerType() + if yyct3292 == codecSelferValueTypeMap1234 { + yyl3292 := r.ReadMapStart() + if yyl3292 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3292, d) + } + } else if yyct3292 == codecSelferValueTypeArray1234 { + yyl3292 := r.ReadArrayStart() + if yyl3292 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3292, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3293Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3293Slc + var yyhl3293 bool = l >= 0 + for yyj3293 := 0; ; yyj3293++ { + if yyhl3293 { + if yyj3293 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3293Slc = r.DecodeBytes(yys3293Slc, true, true) + yys3293 := string(yys3293Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3293 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41519,48 +41091,44 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3338 := &x.ObjectMeta - yyv3338.CodecDecodeSelf(d) + yyv3296 := &x.ObjectMeta + yyv3296.CodecDecodeSelf(d) } - case "data": + case "spec": if r.TryDecodeAsNil() { - x.Data = nil + x.Spec = ResourceQuotaSpec{} } else { - yyv3339 := &x.Data - yym3340 := z.DecBinary() - _ = yym3340 - if false { - } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3339), d) - } + yyv3297 := &x.Spec + yyv3297.CodecDecodeSelf(d) } - case "type": + case "status": if r.TryDecodeAsNil() { - x.Type = "" + x.Status = ResourceQuotaStatus{} } else { - x.Type = SecretType(r.DecodeString()) + yyv3298 := &x.Status + yyv3298.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3335) - } // end switch yys3335 - } // end for yyj3335 + z.DecStructFieldNotFound(-1, yys3293) + } // end switch yys3293 + } // end for yyj3293 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } -func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { +func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3342 int - var yyb3342 bool - var yyhl3342 bool = l >= 0 - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + var yyj3299 int + var yyb3299 bool + var yyhl3299 bool = l >= 0 + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3342 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3342 { + if yyb3299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41570,13 +41138,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3342 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3342 { + if yyb3299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41586,13 +41154,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3342 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3342 { + if yyb3299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41600,16 +41168,721 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3345 := &x.ObjectMeta - yyv3345.CodecDecodeSelf(d) + yyv3302 := &x.ObjectMeta + yyv3302.CodecDecodeSelf(d) } - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l } else { - yyb3342 = r.CheckBreak() + yyb3299 = r.CheckBreak() } - if yyb3342 { + if yyb3299 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Spec = ResourceQuotaSpec{} + } else { + yyv3303 := &x.Spec + yyv3303.CodecDecodeSelf(d) + } + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l + } else { + yyb3299 = r.CheckBreak() + } + if yyb3299 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Status = ResourceQuotaStatus{} + } else { + yyv3304 := &x.Status + yyv3304.CodecDecodeSelf(d) + } + for { + yyj3299++ + if yyhl3299 { + yyb3299 = yyj3299 > l + } else { + yyb3299 = r.CheckBreak() + } + if yyb3299 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3299-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3305 := z.EncBinary() + _ = yym3305 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3306 := !z.EncBinary() + yy2arr3306 := z.EncBasicHandle().StructToArray + var yyq3306 [4]bool + _, _, _ = yysep3306, yyq3306, yy2arr3306 + const yyr3306 bool = false + yyq3306[0] = x.Kind != "" + yyq3306[1] = x.APIVersion != "" + yyq3306[2] = true + var yynn3306 int + if yyr3306 || yy2arr3306 { + r.EncodeArrayStart(4) + } else { + yynn3306 = 1 + for _, b := range yyq3306 { + if b { + yynn3306++ + } + } + r.EncodeMapStart(yynn3306) + yynn3306 = 0 + } + if yyr3306 || yy2arr3306 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3306[0] { + yym3308 := z.EncBinary() + _ = yym3308 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3306[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3309 := z.EncBinary() + _ = yym3309 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3306 || yy2arr3306 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3306[1] { + yym3311 := z.EncBinary() + _ = yym3311 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3306[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3312 := z.EncBinary() + _ = yym3312 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3306 || yy2arr3306 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3306[2] { + yy3314 := &x.ListMeta + yym3315 := z.EncBinary() + _ = yym3315 + if false { + } else if z.HasExtensions() && z.EncExt(yy3314) { + } else { + z.EncFallback(yy3314) + } + } else { + r.EncodeNil() + } + } else { + if yyq3306[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3316 := &x.ListMeta + yym3317 := z.EncBinary() + _ = yym3317 + if false { + } else if z.HasExtensions() && z.EncExt(yy3316) { + } else { + z.EncFallback(yy3316) + } + } + } + if yyr3306 || yy2arr3306 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3319 := z.EncBinary() + _ = yym3319 + if false { + } else { + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) + } + } + } else { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("items")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Items == nil { + r.EncodeNil() + } else { + yym3320 := z.EncBinary() + _ = yym3320 + if false { + } else { + h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) + } + } + } + if yyr3306 || yy2arr3306 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3321 := z.DecBinary() + _ = yym3321 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3322 := r.ContainerType() + if yyct3322 == codecSelferValueTypeMap1234 { + yyl3322 := r.ReadMapStart() + if yyl3322 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3322, d) + } + } else if yyct3322 == codecSelferValueTypeArray1234 { + yyl3322 := r.ReadArrayStart() + if yyl3322 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3322, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3323Slc + var yyhl3323 bool = l >= 0 + for yyj3323 := 0; ; yyj3323++ { + if yyhl3323 { + if yyj3323 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3323Slc = r.DecodeBytes(yys3323Slc, true, true) + yys3323 := string(yys3323Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3323 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3326 := &x.ListMeta + yym3327 := z.DecBinary() + _ = yym3327 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3326) { + } else { + z.DecFallback(yyv3326, false) + } + } + case "items": + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3328 := &x.Items + yym3329 := z.DecBinary() + _ = yym3329 + if false { + } else { + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3328), d) + } + } + default: + z.DecStructFieldNotFound(-1, yys3323) + } // end switch yys3323 + } // end for yyj3323 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3330 int + var yyb3330 bool + var yyhl3330 bool = l >= 0 + yyj3330++ + if yyhl3330 { + yyb3330 = yyj3330 > l + } else { + yyb3330 = r.CheckBreak() + } + if yyb3330 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3330++ + if yyhl3330 { + yyb3330 = yyj3330 > l + } else { + yyb3330 = r.CheckBreak() + } + if yyb3330 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3330++ + if yyhl3330 { + yyb3330 = yyj3330 > l + } else { + yyb3330 = r.CheckBreak() + } + if yyb3330 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ListMeta = pkg2_unversioned.ListMeta{} + } else { + yyv3333 := &x.ListMeta + yym3334 := z.DecBinary() + _ = yym3334 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3333) { + } else { + z.DecFallback(yyv3333, false) + } + } + yyj3330++ + if yyhl3330 { + yyb3330 = yyj3330 > l + } else { + yyb3330 = r.CheckBreak() + } + if yyb3330 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Items = nil + } else { + yyv3335 := &x.Items + yym3336 := z.DecBinary() + _ = yym3336 + if false { + } else { + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3335), d) + } + } + for { + yyj3330++ + if yyhl3330 { + yyb3330 = yyj3330 > l + } else { + yyb3330 = r.CheckBreak() + } + if yyb3330 { + break + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + z.DecStructFieldNotFound(yyj3330-1, "") + } + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + if x == nil { + r.EncodeNil() + } else { + yym3337 := z.EncBinary() + _ = yym3337 + if false { + } else if z.HasExtensions() && z.EncExt(x) { + } else { + yysep3338 := !z.EncBinary() + yy2arr3338 := z.EncBasicHandle().StructToArray + var yyq3338 [5]bool + _, _, _ = yysep3338, yyq3338, yy2arr3338 + const yyr3338 bool = false + yyq3338[0] = x.Kind != "" + yyq3338[1] = x.APIVersion != "" + yyq3338[2] = true + yyq3338[3] = len(x.Data) != 0 + yyq3338[4] = x.Type != "" + var yynn3338 int + if yyr3338 || yy2arr3338 { + r.EncodeArrayStart(5) + } else { + yynn3338 = 0 + for _, b := range yyq3338 { + if b { + yynn3338++ + } + } + r.EncodeMapStart(yynn3338) + yynn3338 = 0 + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3338[0] { + yym3340 := z.EncBinary() + _ = yym3340 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3338[0] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("kind")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3341 := z.EncBinary() + _ = yym3341 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3338[1] { + yym3343 := z.EncBinary() + _ = yym3343 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3338[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3344 := z.EncBinary() + _ = yym3344 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3338[2] { + yy3346 := &x.ObjectMeta + yy3346.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3338[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3347 := &x.ObjectMeta + yy3347.CodecEncodeSelf(e) + } + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3338[3] { + if x.Data == nil { + r.EncodeNil() + } else { + yym3349 := z.EncBinary() + _ = yym3349 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3338[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("data")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Data == nil { + r.EncodeNil() + } else { + yym3350 := z.EncBinary() + _ = yym3350 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3338[4] { + x.Type.CodecEncodeSelf(e) + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3338[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + x.Type.CodecEncodeSelf(e) + } + } + if yyr3338 || yy2arr3338 { + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + z.EncSendContainerState(codecSelfer_containerMapEnd1234) + } + } + } +} + +func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + yym3352 := z.DecBinary() + _ = yym3352 + if false { + } else if z.HasExtensions() && z.DecExt(x) { + } else { + yyct3353 := r.ContainerType() + if yyct3353 == codecSelferValueTypeMap1234 { + yyl3353 := r.ReadMapStart() + if yyl3353 == 0 { + z.DecSendContainerState(codecSelfer_containerMapEnd1234) + } else { + x.codecDecodeSelfFromMap(yyl3353, d) + } + } else if yyct3353 == codecSelferValueTypeArray1234 { + yyl3353 := r.ReadArrayStart() + if yyl3353 == 0 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + } else { + x.codecDecodeSelfFromArray(yyl3353, d) + } + } else { + panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) + } + } +} + +func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yys3354Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3354Slc + var yyhl3354 bool = l >= 0 + for yyj3354 := 0; ; yyj3354++ { + if yyhl3354 { + if yyj3354 >= l { + break + } + } else { + if r.CheckBreak() { + break + } + } + z.DecSendContainerState(codecSelfer_containerMapKey1234) + yys3354Slc = r.DecodeBytes(yys3354Slc, true, true) + yys3354 := string(yys3354Slc) + z.DecSendContainerState(codecSelfer_containerMapValue1234) + switch yys3354 { + case "kind": + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + case "apiVersion": + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + case "metadata": + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3357 := &x.ObjectMeta + yyv3357.CodecDecodeSelf(d) + } + case "data": + if r.TryDecodeAsNil() { + x.Data = nil + } else { + yyv3358 := &x.Data + yym3359 := z.DecBinary() + _ = yym3359 + if false { + } else { + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3358), d) + } + } + case "type": + if r.TryDecodeAsNil() { + x.Type = "" + } else { + x.Type = SecretType(r.DecodeString()) + } + default: + z.DecStructFieldNotFound(-1, yys3354) + } // end switch yys3354 + } // end for yyj3354 + z.DecSendContainerState(codecSelfer_containerMapEnd1234) +} + +func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + var yyj3361 int + var yyb3361 bool + var yyhl3361 bool = l >= 0 + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l + } else { + yyb3361 = r.CheckBreak() + } + if yyb3361 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Kind = "" + } else { + x.Kind = string(r.DecodeString()) + } + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l + } else { + yyb3361 = r.CheckBreak() + } + if yyb3361 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.APIVersion = "" + } else { + x.APIVersion = string(r.DecodeString()) + } + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l + } else { + yyb3361 = r.CheckBreak() + } + if yyb3361 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ObjectMeta = ObjectMeta{} + } else { + yyv3364 := &x.ObjectMeta + yyv3364.CodecDecodeSelf(d) + } + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l + } else { + yyb3361 = r.CheckBreak() + } + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41617,21 +41890,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3346 := &x.Data - yym3347 := z.DecBinary() - _ = yym3347 + yyv3365 := &x.Data + yym3366 := z.DecBinary() + _ = yym3366 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3346), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3365), d) } } - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3342 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3342 { + if yyb3361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41642,17 +41915,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3342++ - if yyhl3342 { - yyb3342 = yyj3342 > l + yyj3361++ + if yyhl3361 { + yyb3361 = yyj3361 > l } else { - yyb3342 = r.CheckBreak() + yyb3361 = r.CheckBreak() } - if yyb3342 { + if yyb3361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3342-1, "") + z.DecStructFieldNotFound(yyj3361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41661,8 +41934,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3349 := z.EncBinary() - _ = yym3349 + yym3368 := z.EncBinary() + _ = yym3368 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41674,8 +41947,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3350 := z.DecBinary() - _ = yym3350 + yym3369 := z.DecBinary() + _ = yym3369 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41690,37 +41963,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3351 := z.EncBinary() - _ = yym3351 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3352 := !z.EncBinary() - yy2arr3352 := z.EncBasicHandle().StructToArray - var yyq3352 [4]bool - _, _, _ = yysep3352, yyq3352, yy2arr3352 - const yyr3352 bool = false - yyq3352[0] = x.Kind != "" - yyq3352[1] = x.APIVersion != "" - yyq3352[2] = true - var yynn3352 int - if yyr3352 || yy2arr3352 { + yysep3371 := !z.EncBinary() + yy2arr3371 := z.EncBasicHandle().StructToArray + var yyq3371 [4]bool + _, _, _ = yysep3371, yyq3371, yy2arr3371 + const yyr3371 bool = false + yyq3371[0] = x.Kind != "" + yyq3371[1] = x.APIVersion != "" + yyq3371[2] = true + var yynn3371 int + if yyr3371 || yy2arr3371 { r.EncodeArrayStart(4) } else { - yynn3352 = 1 - for _, b := range yyq3352 { + yynn3371 = 1 + for _, b := range yyq3371 { if b { - yynn3352++ + yynn3371++ } } - r.EncodeMapStart(yynn3352) - yynn3352 = 0 + r.EncodeMapStart(yynn3371) + yynn3371 = 0 } - if yyr3352 || yy2arr3352 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3352[0] { - yym3354 := z.EncBinary() - _ = yym3354 + if yyq3371[0] { + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41729,23 +42002,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3352[0] { + if yyq3371[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3355 := z.EncBinary() - _ = yym3355 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3352 || yy2arr3352 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3352[1] { - yym3357 := z.EncBinary() - _ = yym3357 + if yyq3371[1] { + yym3376 := z.EncBinary() + _ = yym3376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41754,54 +42027,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3352[1] { + if yyq3371[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3358 := z.EncBinary() - _ = yym3358 + yym3377 := z.EncBinary() + _ = yym3377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3352 || yy2arr3352 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3352[2] { - yy3360 := &x.ListMeta - yym3361 := z.EncBinary() - _ = yym3361 + if yyq3371[2] { + yy3379 := &x.ListMeta + yym3380 := z.EncBinary() + _ = yym3380 if false { - } else if z.HasExtensions() && z.EncExt(yy3360) { + } else if z.HasExtensions() && z.EncExt(yy3379) { } else { - z.EncFallback(yy3360) + z.EncFallback(yy3379) } } else { r.EncodeNil() } } else { - if yyq3352[2] { + if yyq3371[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3362 := &x.ListMeta - yym3363 := z.EncBinary() - _ = yym3363 + yy3381 := &x.ListMeta + yym3382 := z.EncBinary() + _ = yym3382 if false { - } else if z.HasExtensions() && z.EncExt(yy3362) { + } else if z.HasExtensions() && z.EncExt(yy3381) { } else { - z.EncFallback(yy3362) + z.EncFallback(yy3381) } } } - if yyr3352 || yy2arr3352 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3365 := z.EncBinary() - _ = yym3365 + yym3384 := z.EncBinary() + _ = yym3384 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -41814,15 +42087,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3366 := z.EncBinary() - _ = yym3366 + yym3385 := z.EncBinary() + _ = yym3385 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3352 || yy2arr3352 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41835,25 +42108,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3367 := z.DecBinary() - _ = yym3367 + yym3386 := z.DecBinary() + _ = yym3386 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3368 := r.ContainerType() - if yyct3368 == codecSelferValueTypeMap1234 { - yyl3368 := r.ReadMapStart() - if yyl3368 == 0 { + yyct3387 := r.ContainerType() + if yyct3387 == codecSelferValueTypeMap1234 { + yyl3387 := r.ReadMapStart() + if yyl3387 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3368, d) + x.codecDecodeSelfFromMap(yyl3387, d) } - } else if yyct3368 == codecSelferValueTypeArray1234 { - yyl3368 := r.ReadArrayStart() - if yyl3368 == 0 { + } else if yyct3387 == codecSelferValueTypeArray1234 { + yyl3387 := r.ReadArrayStart() + if yyl3387 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3368, d) + x.codecDecodeSelfFromArray(yyl3387, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41865,12 +42138,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3369Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3369Slc - var yyhl3369 bool = l >= 0 - for yyj3369 := 0; ; yyj3369++ { - if yyhl3369 { - if yyj3369 >= l { + var yys3388Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3388Slc + var yyhl3388 bool = l >= 0 + for yyj3388 := 0; ; yyj3388++ { + if yyhl3388 { + if yyj3388 >= l { break } } else { @@ -41879,10 +42152,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3369Slc = r.DecodeBytes(yys3369Slc, true, true) - yys3369 := string(yys3369Slc) + yys3388Slc = r.DecodeBytes(yys3388Slc, true, true) + yys3388 := string(yys3388Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3369 { + switch yys3388 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41899,31 +42172,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3372 := &x.ListMeta - yym3373 := z.DecBinary() - _ = yym3373 + yyv3391 := &x.ListMeta + yym3392 := z.DecBinary() + _ = yym3392 if false { - } else if z.HasExtensions() && z.DecExt(yyv3372) { + } else if z.HasExtensions() && z.DecExt(yyv3391) { } else { - z.DecFallback(yyv3372, false) + z.DecFallback(yyv3391, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3374 := &x.Items - yym3375 := z.DecBinary() - _ = yym3375 + yyv3393 := &x.Items + yym3394 := z.DecBinary() + _ = yym3394 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3374), d) + h.decSliceSecret((*[]Secret)(yyv3393), d) } } default: - z.DecStructFieldNotFound(-1, yys3369) - } // end switch yys3369 - } // end for yyj3369 + z.DecStructFieldNotFound(-1, yys3388) + } // end switch yys3388 + } // end for yyj3388 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41931,16 +42204,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3376 int - var yyb3376 bool - var yyhl3376 bool = l >= 0 - yyj3376++ - if yyhl3376 { - yyb3376 = yyj3376 > l + var yyj3395 int + var yyb3395 bool + var yyhl3395 bool = l >= 0 + yyj3395++ + if yyhl3395 { + yyb3395 = yyj3395 > l } else { - yyb3376 = r.CheckBreak() + yyb3395 = r.CheckBreak() } - if yyb3376 { + if yyb3395 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41950,13 +42223,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3376++ - if yyhl3376 { - yyb3376 = yyj3376 > l + yyj3395++ + if yyhl3395 { + yyb3395 = yyj3395 > l } else { - yyb3376 = r.CheckBreak() + yyb3395 = r.CheckBreak() } - if yyb3376 { + if yyb3395 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41966,13 +42239,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3376++ - if yyhl3376 { - yyb3376 = yyj3376 > l + yyj3395++ + if yyhl3395 { + yyb3395 = yyj3395 > l } else { - yyb3376 = r.CheckBreak() + yyb3395 = r.CheckBreak() } - if yyb3376 { + if yyb3395 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41980,22 +42253,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3379 := &x.ListMeta - yym3380 := z.DecBinary() - _ = yym3380 + yyv3398 := &x.ListMeta + yym3399 := z.DecBinary() + _ = yym3399 if false { - } else if z.HasExtensions() && z.DecExt(yyv3379) { + } else if z.HasExtensions() && z.DecExt(yyv3398) { } else { - z.DecFallback(yyv3379, false) + z.DecFallback(yyv3398, false) } } - yyj3376++ - if yyhl3376 { - yyb3376 = yyj3376 > l + yyj3395++ + if yyhl3395 { + yyb3395 = yyj3395 > l } else { - yyb3376 = r.CheckBreak() + yyb3395 = r.CheckBreak() } - if yyb3376 { + if yyb3395 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42003,26 +42276,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3381 := &x.Items - yym3382 := z.DecBinary() - _ = yym3382 + yyv3400 := &x.Items + yym3401 := z.DecBinary() + _ = yym3401 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3381), d) + h.decSliceSecret((*[]Secret)(yyv3400), d) } } for { - yyj3376++ - if yyhl3376 { - yyb3376 = yyj3376 > l + yyj3395++ + if yyhl3395 { + yyb3395 = yyj3395 > l } else { - yyb3376 = r.CheckBreak() + yyb3395 = r.CheckBreak() } - if yyb3376 { + if yyb3395 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3376-1, "") + z.DecStructFieldNotFound(yyj3395-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42031,8 +42304,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3383 := z.EncBinary() - _ = yym3383 + yym3402 := z.EncBinary() + _ = yym3402 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42044,8 +42317,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3384 := z.DecBinary() - _ = yym3384 + yym3403 := z.DecBinary() + _ = yym3403 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42060,32 +42333,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3385 := z.EncBinary() - _ = yym3385 + yym3404 := z.EncBinary() + _ = yym3404 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3386 := !z.EncBinary() - yy2arr3386 := z.EncBasicHandle().StructToArray - var yyq3386 [4]bool - _, _, _ = yysep3386, yyq3386, yy2arr3386 - const yyr3386 bool = false - yyq3386[2] = x.Message != "" - yyq3386[3] = x.Error != "" - var yynn3386 int - if yyr3386 || yy2arr3386 { + yysep3405 := !z.EncBinary() + yy2arr3405 := z.EncBasicHandle().StructToArray + var yyq3405 [4]bool + _, _, _ = yysep3405, yyq3405, yy2arr3405 + const yyr3405 bool = false + yyq3405[2] = x.Message != "" + yyq3405[3] = x.Error != "" + var yynn3405 int + if yyr3405 || yy2arr3405 { r.EncodeArrayStart(4) } else { - yynn3386 = 2 - for _, b := range yyq3386 { + yynn3405 = 2 + for _, b := range yyq3405 { if b { - yynn3386++ + yynn3405++ } } - r.EncodeMapStart(yynn3386) - yynn3386 = 0 + r.EncodeMapStart(yynn3405) + yynn3405 = 0 } - if yyr3386 || yy2arr3386 { + if yyr3405 || yy2arr3405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -42094,7 +42367,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3386 || yy2arr3386 { + if yyr3405 || yy2arr3405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -42103,11 +42376,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3386 || yy2arr3386 { + if yyr3405 || yy2arr3405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[2] { - yym3390 := z.EncBinary() - _ = yym3390 + if yyq3405[2] { + yym3409 := z.EncBinary() + _ = yym3409 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -42116,23 +42389,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3386[2] { + if yyq3405[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3391 := z.EncBinary() - _ = yym3391 + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3386 || yy2arr3386 { + if yyr3405 || yy2arr3405 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3386[3] { - yym3393 := z.EncBinary() - _ = yym3393 + if yyq3405[3] { + yym3412 := z.EncBinary() + _ = yym3412 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -42141,19 +42414,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3386[3] { + if yyq3405[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3394 := z.EncBinary() - _ = yym3394 + yym3413 := z.EncBinary() + _ = yym3413 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3386 || yy2arr3386 { + if yyr3405 || yy2arr3405 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42166,25 +42439,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3395 := z.DecBinary() - _ = yym3395 + yym3414 := z.DecBinary() + _ = yym3414 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3396 := r.ContainerType() - if yyct3396 == codecSelferValueTypeMap1234 { - yyl3396 := r.ReadMapStart() - if yyl3396 == 0 { + yyct3415 := r.ContainerType() + if yyct3415 == codecSelferValueTypeMap1234 { + yyl3415 := r.ReadMapStart() + if yyl3415 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3396, d) + x.codecDecodeSelfFromMap(yyl3415, d) } - } else if yyct3396 == codecSelferValueTypeArray1234 { - yyl3396 := r.ReadArrayStart() - if yyl3396 == 0 { + } else if yyct3415 == codecSelferValueTypeArray1234 { + yyl3415 := r.ReadArrayStart() + if yyl3415 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3396, d) + x.codecDecodeSelfFromArray(yyl3415, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42196,12 +42469,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3397Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3397Slc - var yyhl3397 bool = l >= 0 - for yyj3397 := 0; ; yyj3397++ { - if yyhl3397 { - if yyj3397 >= l { + var yys3416Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3416Slc + var yyhl3416 bool = l >= 0 + for yyj3416 := 0; ; yyj3416++ { + if yyhl3416 { + if yyj3416 >= l { break } } else { @@ -42210,10 +42483,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3397Slc = r.DecodeBytes(yys3397Slc, true, true) - yys3397 := string(yys3397Slc) + yys3416Slc = r.DecodeBytes(yys3416Slc, true, true) + yys3416 := string(yys3416Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3397 { + switch yys3416 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -42239,9 +42512,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3397) - } // end switch yys3397 - } // end for yyj3397 + z.DecStructFieldNotFound(-1, yys3416) + } // end switch yys3416 + } // end for yyj3416 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42249,16 +42522,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3402 int - var yyb3402 bool - var yyhl3402 bool = l >= 0 - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + var yyj3421 int + var yyb3421 bool + var yyhl3421 bool = l >= 0 + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42268,13 +42541,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42284,13 +42557,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42300,13 +42573,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42317,17 +42590,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3402++ - if yyhl3402 { - yyb3402 = yyj3402 > l + yyj3421++ + if yyhl3421 { + yyb3421 = yyj3421 > l } else { - yyb3402 = r.CheckBreak() + yyb3421 = r.CheckBreak() } - if yyb3402 { + if yyb3421 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3402-1, "") + z.DecStructFieldNotFound(yyj3421-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42339,38 +42612,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3407 := z.EncBinary() - _ = yym3407 + yym3426 := z.EncBinary() + _ = yym3426 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3408 := !z.EncBinary() - yy2arr3408 := z.EncBasicHandle().StructToArray - var yyq3408 [4]bool - _, _, _ = yysep3408, yyq3408, yy2arr3408 - const yyr3408 bool = false - yyq3408[0] = x.Kind != "" - yyq3408[1] = x.APIVersion != "" - yyq3408[2] = true - yyq3408[3] = len(x.Conditions) != 0 - var yynn3408 int - if yyr3408 || yy2arr3408 { + yysep3427 := !z.EncBinary() + yy2arr3427 := z.EncBasicHandle().StructToArray + var yyq3427 [4]bool + _, _, _ = yysep3427, yyq3427, yy2arr3427 + const yyr3427 bool = false + yyq3427[0] = x.Kind != "" + yyq3427[1] = x.APIVersion != "" + yyq3427[2] = true + yyq3427[3] = len(x.Conditions) != 0 + var yynn3427 int + if yyr3427 || yy2arr3427 { r.EncodeArrayStart(4) } else { - yynn3408 = 0 - for _, b := range yyq3408 { + yynn3427 = 0 + for _, b := range yyq3427 { if b { - yynn3408++ + yynn3427++ } } - r.EncodeMapStart(yynn3408) - yynn3408 = 0 + r.EncodeMapStart(yynn3427) + yynn3427 = 0 } - if yyr3408 || yy2arr3408 { + if yyr3427 || yy2arr3427 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3408[0] { - yym3410 := z.EncBinary() - _ = yym3410 + if yyq3427[0] { + yym3429 := z.EncBinary() + _ = yym3429 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42379,23 +42652,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3408[0] { + if yyq3427[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3411 := z.EncBinary() - _ = yym3411 + yym3430 := z.EncBinary() + _ = yym3430 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3408 || yy2arr3408 { + if yyr3427 || yy2arr3427 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3408[1] { - yym3413 := z.EncBinary() - _ = yym3413 + if yyq3427[1] { + yym3432 := z.EncBinary() + _ = yym3432 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42404,43 +42677,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3408[1] { + if yyq3427[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3414 := z.EncBinary() - _ = yym3414 + yym3433 := z.EncBinary() + _ = yym3433 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3408 || yy2arr3408 { + if yyr3427 || yy2arr3427 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3408[2] { - yy3416 := &x.ObjectMeta - yy3416.CodecEncodeSelf(e) + if yyq3427[2] { + yy3435 := &x.ObjectMeta + yy3435.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3408[2] { + if yyq3427[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3417 := &x.ObjectMeta - yy3417.CodecEncodeSelf(e) + yy3436 := &x.ObjectMeta + yy3436.CodecEncodeSelf(e) } } - if yyr3408 || yy2arr3408 { + if yyr3427 || yy2arr3427 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3408[3] { + if yyq3427[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3419 := z.EncBinary() - _ = yym3419 + yym3438 := z.EncBinary() + _ = yym3438 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -42450,15 +42723,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3408[3] { + if yyq3427[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3420 := z.EncBinary() - _ = yym3420 + yym3439 := z.EncBinary() + _ = yym3439 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -42466,7 +42739,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3408 || yy2arr3408 { + if yyr3427 || yy2arr3427 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42479,25 +42752,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3421 := z.DecBinary() - _ = yym3421 + yym3440 := z.DecBinary() + _ = yym3440 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3422 := r.ContainerType() - if yyct3422 == codecSelferValueTypeMap1234 { - yyl3422 := r.ReadMapStart() - if yyl3422 == 0 { + yyct3441 := r.ContainerType() + if yyct3441 == codecSelferValueTypeMap1234 { + yyl3441 := r.ReadMapStart() + if yyl3441 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3422, d) + x.codecDecodeSelfFromMap(yyl3441, d) } - } else if yyct3422 == codecSelferValueTypeArray1234 { - yyl3422 := r.ReadArrayStart() - if yyl3422 == 0 { + } else if yyct3441 == codecSelferValueTypeArray1234 { + yyl3441 := r.ReadArrayStart() + if yyl3441 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3422, d) + x.codecDecodeSelfFromArray(yyl3441, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42509,12 +42782,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3423Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3423Slc - var yyhl3423 bool = l >= 0 - for yyj3423 := 0; ; yyj3423++ { - if yyhl3423 { - if yyj3423 >= l { + var yys3442Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3442Slc + var yyhl3442 bool = l >= 0 + for yyj3442 := 0; ; yyj3442++ { + if yyhl3442 { + if yyj3442 >= l { break } } else { @@ -42523,10 +42796,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3423Slc = r.DecodeBytes(yys3423Slc, true, true) - yys3423 := string(yys3423Slc) + yys3442Slc = r.DecodeBytes(yys3442Slc, true, true) + yys3442 := string(yys3442Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3423 { + switch yys3442 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42543,25 +42816,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3426 := &x.ObjectMeta - yyv3426.CodecDecodeSelf(d) + yyv3445 := &x.ObjectMeta + yyv3445.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3427 := &x.Conditions - yym3428 := z.DecBinary() - _ = yym3428 + yyv3446 := &x.Conditions + yym3447 := z.DecBinary() + _ = yym3447 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3427), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3446), d) } } default: - z.DecStructFieldNotFound(-1, yys3423) - } // end switch yys3423 - } // end for yyj3423 + z.DecStructFieldNotFound(-1, yys3442) + } // end switch yys3442 + } // end for yyj3442 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42569,16 +42842,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3429 int - var yyb3429 bool - var yyhl3429 bool = l >= 0 - yyj3429++ - if yyhl3429 { - yyb3429 = yyj3429 > l + var yyj3448 int + var yyb3448 bool + var yyhl3448 bool = l >= 0 + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3429 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3429 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42588,13 +42861,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3429++ - if yyhl3429 { - yyb3429 = yyj3429 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3429 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3429 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42604,13 +42877,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3429++ - if yyhl3429 { - yyb3429 = yyj3429 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3429 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3429 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42618,16 +42891,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3432 := &x.ObjectMeta - yyv3432.CodecDecodeSelf(d) + yyv3451 := &x.ObjectMeta + yyv3451.CodecDecodeSelf(d) } - yyj3429++ - if yyhl3429 { - yyb3429 = yyj3429 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3429 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3429 { + if yyb3448 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42635,26 +42908,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3433 := &x.Conditions - yym3434 := z.DecBinary() - _ = yym3434 + yyv3452 := &x.Conditions + yym3453 := z.DecBinary() + _ = yym3453 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3433), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3452), d) } } for { - yyj3429++ - if yyhl3429 { - yyb3429 = yyj3429 > l + yyj3448++ + if yyhl3448 { + yyb3448 = yyj3448 > l } else { - yyb3429 = r.CheckBreak() + yyb3448 = r.CheckBreak() } - if yyb3429 { + if yyb3448 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3429-1, "") + z.DecStructFieldNotFound(yyj3448-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42666,37 +42939,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3435 := z.EncBinary() - _ = yym3435 + yym3454 := z.EncBinary() + _ = yym3454 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3436 := !z.EncBinary() - yy2arr3436 := z.EncBasicHandle().StructToArray - var yyq3436 [4]bool - _, _, _ = yysep3436, yyq3436, yy2arr3436 - const yyr3436 bool = false - yyq3436[0] = x.Kind != "" - yyq3436[1] = x.APIVersion != "" - yyq3436[2] = true - var yynn3436 int - if yyr3436 || yy2arr3436 { + yysep3455 := !z.EncBinary() + yy2arr3455 := z.EncBasicHandle().StructToArray + var yyq3455 [4]bool + _, _, _ = yysep3455, yyq3455, yy2arr3455 + const yyr3455 bool = false + yyq3455[0] = x.Kind != "" + yyq3455[1] = x.APIVersion != "" + yyq3455[2] = true + var yynn3455 int + if yyr3455 || yy2arr3455 { r.EncodeArrayStart(4) } else { - yynn3436 = 1 - for _, b := range yyq3436 { + yynn3455 = 1 + for _, b := range yyq3455 { if b { - yynn3436++ + yynn3455++ } } - r.EncodeMapStart(yynn3436) - yynn3436 = 0 + r.EncodeMapStart(yynn3455) + yynn3455 = 0 } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[0] { - yym3438 := z.EncBinary() - _ = yym3438 + if yyq3455[0] { + yym3457 := z.EncBinary() + _ = yym3457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42705,23 +42978,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3436[0] { + if yyq3455[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3439 := z.EncBinary() - _ = yym3439 + yym3458 := z.EncBinary() + _ = yym3458 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[1] { - yym3441 := z.EncBinary() - _ = yym3441 + if yyq3455[1] { + yym3460 := z.EncBinary() + _ = yym3460 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42730,54 +43003,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3436[1] { + if yyq3455[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3442 := z.EncBinary() - _ = yym3442 + yym3461 := z.EncBinary() + _ = yym3461 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3436[2] { - yy3444 := &x.ListMeta - yym3445 := z.EncBinary() - _ = yym3445 + if yyq3455[2] { + yy3463 := &x.ListMeta + yym3464 := z.EncBinary() + _ = yym3464 if false { - } else if z.HasExtensions() && z.EncExt(yy3444) { + } else if z.HasExtensions() && z.EncExt(yy3463) { } else { - z.EncFallback(yy3444) + z.EncFallback(yy3463) } } else { r.EncodeNil() } } else { - if yyq3436[2] { + if yyq3455[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3446 := &x.ListMeta - yym3447 := z.EncBinary() - _ = yym3447 + yy3465 := &x.ListMeta + yym3466 := z.EncBinary() + _ = yym3466 if false { - } else if z.HasExtensions() && z.EncExt(yy3446) { + } else if z.HasExtensions() && z.EncExt(yy3465) { } else { - z.EncFallback(yy3446) + z.EncFallback(yy3465) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3449 := z.EncBinary() - _ = yym3449 + yym3468 := z.EncBinary() + _ = yym3468 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -42790,15 +43063,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3450 := z.EncBinary() - _ = yym3450 + yym3469 := z.EncBinary() + _ = yym3469 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3436 || yy2arr3436 { + if yyr3455 || yy2arr3455 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42811,25 +43084,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3451 := z.DecBinary() - _ = yym3451 + yym3470 := z.DecBinary() + _ = yym3470 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3452 := r.ContainerType() - if yyct3452 == codecSelferValueTypeMap1234 { - yyl3452 := r.ReadMapStart() - if yyl3452 == 0 { + yyct3471 := r.ContainerType() + if yyct3471 == codecSelferValueTypeMap1234 { + yyl3471 := r.ReadMapStart() + if yyl3471 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3452, d) + x.codecDecodeSelfFromMap(yyl3471, d) } - } else if yyct3452 == codecSelferValueTypeArray1234 { - yyl3452 := r.ReadArrayStart() - if yyl3452 == 0 { + } else if yyct3471 == codecSelferValueTypeArray1234 { + yyl3471 := r.ReadArrayStart() + if yyl3471 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3452, d) + x.codecDecodeSelfFromArray(yyl3471, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42841,12 +43114,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3453Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3453Slc - var yyhl3453 bool = l >= 0 - for yyj3453 := 0; ; yyj3453++ { - if yyhl3453 { - if yyj3453 >= l { + var yys3472Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3472Slc + var yyhl3472 bool = l >= 0 + for yyj3472 := 0; ; yyj3472++ { + if yyhl3472 { + if yyj3472 >= l { break } } else { @@ -42855,10 +43128,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3453Slc = r.DecodeBytes(yys3453Slc, true, true) - yys3453 := string(yys3453Slc) + yys3472Slc = r.DecodeBytes(yys3472Slc, true, true) + yys3472 := string(yys3472Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3453 { + switch yys3472 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42875,31 +43148,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3456 := &x.ListMeta - yym3457 := z.DecBinary() - _ = yym3457 + yyv3475 := &x.ListMeta + yym3476 := z.DecBinary() + _ = yym3476 if false { - } else if z.HasExtensions() && z.DecExt(yyv3456) { + } else if z.HasExtensions() && z.DecExt(yyv3475) { } else { - z.DecFallback(yyv3456, false) + z.DecFallback(yyv3475, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3458 := &x.Items - yym3459 := z.DecBinary() - _ = yym3459 + yyv3477 := &x.Items + yym3478 := z.DecBinary() + _ = yym3478 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3458), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3477), d) } } default: - z.DecStructFieldNotFound(-1, yys3453) - } // end switch yys3453 - } // end for yyj3453 + z.DecStructFieldNotFound(-1, yys3472) + } // end switch yys3472 + } // end for yyj3472 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42907,16 +43180,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3460 int - var yyb3460 bool - var yyhl3460 bool = l >= 0 - yyj3460++ - if yyhl3460 { - yyb3460 = yyj3460 > l + var yyj3479 int + var yyb3479 bool + var yyhl3479 bool = l >= 0 + yyj3479++ + if yyhl3479 { + yyb3479 = yyj3479 > l } else { - yyb3460 = r.CheckBreak() + yyb3479 = r.CheckBreak() } - if yyb3460 { + if yyb3479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42926,13 +43199,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3460++ - if yyhl3460 { - yyb3460 = yyj3460 > l + yyj3479++ + if yyhl3479 { + yyb3479 = yyj3479 > l } else { - yyb3460 = r.CheckBreak() + yyb3479 = r.CheckBreak() } - if yyb3460 { + if yyb3479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42942,13 +43215,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3460++ - if yyhl3460 { - yyb3460 = yyj3460 > l + yyj3479++ + if yyhl3479 { + yyb3479 = yyj3479 > l } else { - yyb3460 = r.CheckBreak() + yyb3479 = r.CheckBreak() } - if yyb3460 { + if yyb3479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42956,22 +43229,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3463 := &x.ListMeta - yym3464 := z.DecBinary() - _ = yym3464 + yyv3482 := &x.ListMeta + yym3483 := z.DecBinary() + _ = yym3483 if false { - } else if z.HasExtensions() && z.DecExt(yyv3463) { + } else if z.HasExtensions() && z.DecExt(yyv3482) { } else { - z.DecFallback(yyv3463, false) + z.DecFallback(yyv3482, false) } } - yyj3460++ - if yyhl3460 { - yyb3460 = yyj3460 > l + yyj3479++ + if yyhl3479 { + yyb3479 = yyj3479 > l } else { - yyb3460 = r.CheckBreak() + yyb3479 = r.CheckBreak() } - if yyb3460 { + if yyb3479 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42979,26 +43252,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3465 := &x.Items - yym3466 := z.DecBinary() - _ = yym3466 + yyv3484 := &x.Items + yym3485 := z.DecBinary() + _ = yym3485 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3465), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3484), d) } } for { - yyj3460++ - if yyhl3460 { - yyb3460 = yyj3460 > l + yyj3479++ + if yyhl3479 { + yyb3479 = yyj3479 > l } else { - yyb3460 = r.CheckBreak() + yyb3479 = r.CheckBreak() } - if yyb3460 { + if yyb3479 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3460-1, "") + z.DecStructFieldNotFound(yyj3479-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43010,38 +43283,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3467 := z.EncBinary() - _ = yym3467 + yym3486 := z.EncBinary() + _ = yym3486 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3468 := !z.EncBinary() - yy2arr3468 := z.EncBasicHandle().StructToArray - var yyq3468 [1]bool - _, _, _ = yysep3468, yyq3468, yy2arr3468 - const yyr3468 bool = false - yyq3468[0] = len(x.Items) != 0 - var yynn3468 int - if yyr3468 || yy2arr3468 { + yysep3487 := !z.EncBinary() + yy2arr3487 := z.EncBasicHandle().StructToArray + var yyq3487 [1]bool + _, _, _ = yysep3487, yyq3487, yy2arr3487 + const yyr3487 bool = false + yyq3487[0] = len(x.Items) != 0 + var yynn3487 int + if yyr3487 || yy2arr3487 { r.EncodeArrayStart(1) } else { - yynn3468 = 0 - for _, b := range yyq3468 { + yynn3487 = 0 + for _, b := range yyq3487 { if b { - yynn3468++ + yynn3487++ } } - r.EncodeMapStart(yynn3468) - yynn3468 = 0 + r.EncodeMapStart(yynn3487) + yynn3487 = 0 } - if yyr3468 || yy2arr3468 { + if yyr3487 || yy2arr3487 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3468[0] { + if yyq3487[0] { if x.Items == nil { r.EncodeNil() } else { - yym3470 := z.EncBinary() - _ = yym3470 + yym3489 := z.EncBinary() + _ = yym3489 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -43051,15 +43324,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3468[0] { + if yyq3487[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym3471 := z.EncBinary() - _ = yym3471 + yym3490 := z.EncBinary() + _ = yym3490 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -43067,7 +43340,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3468 || yy2arr3468 { + if yyr3487 || yy2arr3487 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43080,25 +43353,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3472 := z.DecBinary() - _ = yym3472 + yym3491 := z.DecBinary() + _ = yym3491 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3473 := r.ContainerType() - if yyct3473 == codecSelferValueTypeMap1234 { - yyl3473 := r.ReadMapStart() - if yyl3473 == 0 { + yyct3492 := r.ContainerType() + if yyct3492 == codecSelferValueTypeMap1234 { + yyl3492 := r.ReadMapStart() + if yyl3492 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3473, d) + x.codecDecodeSelfFromMap(yyl3492, d) } - } else if yyct3473 == codecSelferValueTypeArray1234 { - yyl3473 := r.ReadArrayStart() - if yyl3473 == 0 { + } else if yyct3492 == codecSelferValueTypeArray1234 { + yyl3492 := r.ReadArrayStart() + if yyl3492 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3473, d) + x.codecDecodeSelfFromArray(yyl3492, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43110,12 +43383,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3474Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3474Slc - var yyhl3474 bool = l >= 0 - for yyj3474 := 0; ; yyj3474++ { - if yyhl3474 { - if yyj3474 >= l { + var yys3493Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3493Slc + var yyhl3493 bool = l >= 0 + for yyj3493 := 0; ; yyj3493++ { + if yyhl3493 { + if yyj3493 >= l { break } } else { @@ -43124,26 +43397,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3474Slc = r.DecodeBytes(yys3474Slc, true, true) - yys3474 := string(yys3474Slc) + yys3493Slc = r.DecodeBytes(yys3493Slc, true, true) + yys3493 := string(yys3493Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3474 { + switch yys3493 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3475 := &x.Items - yym3476 := z.DecBinary() - _ = yym3476 + yyv3494 := &x.Items + yym3495 := z.DecBinary() + _ = yym3495 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3475), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3494), d) } } default: - z.DecStructFieldNotFound(-1, yys3474) - } // end switch yys3474 - } // end for yyj3474 + z.DecStructFieldNotFound(-1, yys3493) + } // end switch yys3493 + } // end for yyj3493 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43151,16 +43424,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3477 int - var yyb3477 bool - var yyhl3477 bool = l >= 0 - yyj3477++ - if yyhl3477 { - yyb3477 = yyj3477 > l + var yyj3496 int + var yyb3496 bool + var yyhl3496 bool = l >= 0 + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3477 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3477 { + if yyb3496 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43168,26 +43441,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3478 := &x.Items - yym3479 := z.DecBinary() - _ = yym3479 + yyv3497 := &x.Items + yym3498 := z.DecBinary() + _ = yym3498 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3478), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3497), d) } } for { - yyj3477++ - if yyhl3477 { - yyb3477 = yyj3477 > l + yyj3496++ + if yyhl3496 { + yyb3496 = yyj3496 > l } else { - yyb3477 = r.CheckBreak() + yyb3496 = r.CheckBreak() } - if yyb3477 { + if yyb3496 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3477-1, "") + z.DecStructFieldNotFound(yyj3496-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43199,33 +43472,33 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3480 := z.EncBinary() - _ = yym3480 + yym3499 := z.EncBinary() + _ = yym3499 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3481 := !z.EncBinary() - yy2arr3481 := z.EncBasicHandle().StructToArray - var yyq3481 [2]bool - _, _, _ = yysep3481, yyq3481, yy2arr3481 - const yyr3481 bool = false - var yynn3481 int - if yyr3481 || yy2arr3481 { + yysep3500 := !z.EncBinary() + yy2arr3500 := z.EncBasicHandle().StructToArray + var yyq3500 [2]bool + _, _, _ = yysep3500, yyq3500, yy2arr3500 + const yyr3500 bool = false + var yynn3500 int + if yyr3500 || yy2arr3500 { r.EncodeArrayStart(2) } else { - yynn3481 = 2 - for _, b := range yyq3481 { + yynn3500 = 2 + for _, b := range yyq3500 { if b { - yynn3481++ + yynn3500++ } } - r.EncodeMapStart(yynn3481) - yynn3481 = 0 + r.EncodeMapStart(yynn3500) + yynn3500 = 0 } - if yyr3481 || yy2arr3481 { + if yyr3500 || yy2arr3500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3483 := z.EncBinary() - _ = yym3483 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -43234,25 +43507,25 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3484 := z.EncBinary() - _ = yym3484 + yym3503 := z.EncBinary() + _ = yym3503 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3481 || yy2arr3481 { + if yyr3500 || yy2arr3500 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3486 := &x.FieldRef - yy3486.CodecEncodeSelf(e) + yy3505 := &x.FieldRef + yy3505.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3487 := &x.FieldRef - yy3487.CodecEncodeSelf(e) + yy3506 := &x.FieldRef + yy3506.CodecEncodeSelf(e) } - if yyr3481 || yy2arr3481 { + if yyr3500 || yy2arr3500 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43265,25 +43538,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3488 := z.DecBinary() - _ = yym3488 + yym3507 := z.DecBinary() + _ = yym3507 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3489 := r.ContainerType() - if yyct3489 == codecSelferValueTypeMap1234 { - yyl3489 := r.ReadMapStart() - if yyl3489 == 0 { + yyct3508 := r.ContainerType() + if yyct3508 == codecSelferValueTypeMap1234 { + yyl3508 := r.ReadMapStart() + if yyl3508 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3489, d) + x.codecDecodeSelfFromMap(yyl3508, d) } - } else if yyct3489 == codecSelferValueTypeArray1234 { - yyl3489 := r.ReadArrayStart() - if yyl3489 == 0 { + } else if yyct3508 == codecSelferValueTypeArray1234 { + yyl3508 := r.ReadArrayStart() + if yyl3508 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3489, d) + x.codecDecodeSelfFromArray(yyl3508, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43295,12 +43568,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3490Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3490Slc - var yyhl3490 bool = l >= 0 - for yyj3490 := 0; ; yyj3490++ { - if yyhl3490 { - if yyj3490 >= l { + var yys3509Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3509Slc + var yyhl3509 bool = l >= 0 + for yyj3509 := 0; ; yyj3509++ { + if yyhl3509 { + if yyj3509 >= l { break } } else { @@ -43309,10 +43582,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3490Slc = r.DecodeBytes(yys3490Slc, true, true) - yys3490 := string(yys3490Slc) + yys3509Slc = r.DecodeBytes(yys3509Slc, true, true) + yys3509 := string(yys3509Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3490 { + switch yys3509 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -43323,13 +43596,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3492 := &x.FieldRef - yyv3492.CodecDecodeSelf(d) + yyv3511 := &x.FieldRef + yyv3511.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3490) - } // end switch yys3490 - } // end for yyj3490 + z.DecStructFieldNotFound(-1, yys3509) + } // end switch yys3509 + } // end for yyj3509 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43337,16 +43610,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3493 int - var yyb3493 bool - var yyhl3493 bool = l >= 0 - yyj3493++ - if yyhl3493 { - yyb3493 = yyj3493 > l + var yyj3512 int + var yyb3512 bool + var yyhl3512 bool = l >= 0 + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3493 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3493 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43356,13 +43629,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj3493++ - if yyhl3493 { - yyb3493 = yyj3493 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3493 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3493 { + if yyb3512 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43370,21 +43643,21 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3495 := &x.FieldRef - yyv3495.CodecDecodeSelf(d) + yyv3514 := &x.FieldRef + yyv3514.CodecDecodeSelf(d) } for { - yyj3493++ - if yyhl3493 { - yyb3493 = yyj3493 > l + yyj3512++ + if yyhl3512 { + yyb3512 = yyj3512 > l } else { - yyb3493 = r.CheckBreak() + yyb3512 = r.CheckBreak() } - if yyb3493 { + if yyb3512 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3493-1, "") + z.DecStructFieldNotFound(yyj3512-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43396,37 +43669,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3496 := z.EncBinary() - _ = yym3496 + yym3515 := z.EncBinary() + _ = yym3515 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3497 := !z.EncBinary() - yy2arr3497 := z.EncBasicHandle().StructToArray - var yyq3497 [5]bool - _, _, _ = yysep3497, yyq3497, yy2arr3497 - const yyr3497 bool = false - yyq3497[0] = x.Capabilities != nil - yyq3497[1] = x.Privileged != nil - yyq3497[2] = x.SELinuxOptions != nil - yyq3497[3] = x.RunAsUser != nil - yyq3497[4] = x.RunAsNonRoot != nil - var yynn3497 int - if yyr3497 || yy2arr3497 { + yysep3516 := !z.EncBinary() + yy2arr3516 := z.EncBasicHandle().StructToArray + var yyq3516 [5]bool + _, _, _ = yysep3516, yyq3516, yy2arr3516 + const yyr3516 bool = false + yyq3516[0] = x.Capabilities != nil + yyq3516[1] = x.Privileged != nil + yyq3516[2] = x.SELinuxOptions != nil + yyq3516[3] = x.RunAsUser != nil + yyq3516[4] = x.RunAsNonRoot != nil + var yynn3516 int + if yyr3516 || yy2arr3516 { r.EncodeArrayStart(5) } else { - yynn3497 = 0 - for _, b := range yyq3497 { + yynn3516 = 0 + for _, b := range yyq3516 { if b { - yynn3497++ + yynn3516++ } } - r.EncodeMapStart(yynn3497) - yynn3497 = 0 + r.EncodeMapStart(yynn3516) + yynn3516 = 0 } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3497[0] { + if yyq3516[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -43436,7 +43709,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3497[0] { + if yyq3516[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43447,44 +43720,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3497[1] { + if yyq3516[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3500 := *x.Privileged - yym3501 := z.EncBinary() - _ = yym3501 + yy3519 := *x.Privileged + yym3520 := z.EncBinary() + _ = yym3520 if false { } else { - r.EncodeBool(bool(yy3500)) + r.EncodeBool(bool(yy3519)) } } } else { r.EncodeNil() } } else { - if yyq3497[1] { + if yyq3516[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3502 := *x.Privileged - yym3503 := z.EncBinary() - _ = yym3503 + yy3521 := *x.Privileged + yym3522 := z.EncBinary() + _ = yym3522 if false { } else { - r.EncodeBool(bool(yy3502)) + r.EncodeBool(bool(yy3521)) } } } } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3497[2] { + if yyq3516[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -43494,7 +43767,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3497[2] { + if yyq3516[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -43505,77 +43778,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3497[3] { + if yyq3516[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3506 := *x.RunAsUser - yym3507 := z.EncBinary() - _ = yym3507 + yy3525 := *x.RunAsUser + yym3526 := z.EncBinary() + _ = yym3526 if false { } else { - r.EncodeInt(int64(yy3506)) + r.EncodeInt(int64(yy3525)) } } } else { r.EncodeNil() } } else { - if yyq3497[3] { + if yyq3516[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3508 := *x.RunAsUser - yym3509 := z.EncBinary() - _ = yym3509 + yy3527 := *x.RunAsUser + yym3528 := z.EncBinary() + _ = yym3528 if false { } else { - r.EncodeInt(int64(yy3508)) + r.EncodeInt(int64(yy3527)) } } } } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3497[4] { + if yyq3516[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3511 := *x.RunAsNonRoot - yym3512 := z.EncBinary() - _ = yym3512 + yy3530 := *x.RunAsNonRoot + yym3531 := z.EncBinary() + _ = yym3531 if false { } else { - r.EncodeBool(bool(yy3511)) + r.EncodeBool(bool(yy3530)) } } } else { r.EncodeNil() } } else { - if yyq3497[4] { + if yyq3516[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3513 := *x.RunAsNonRoot - yym3514 := z.EncBinary() - _ = yym3514 + yy3532 := *x.RunAsNonRoot + yym3533 := z.EncBinary() + _ = yym3533 if false { } else { - r.EncodeBool(bool(yy3513)) + r.EncodeBool(bool(yy3532)) } } } } - if yyr3497 || yy2arr3497 { + if yyr3516 || yy2arr3516 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43588,25 +43861,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3515 := z.DecBinary() - _ = yym3515 + yym3534 := z.DecBinary() + _ = yym3534 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3516 := r.ContainerType() - if yyct3516 == codecSelferValueTypeMap1234 { - yyl3516 := r.ReadMapStart() - if yyl3516 == 0 { + yyct3535 := r.ContainerType() + if yyct3535 == codecSelferValueTypeMap1234 { + yyl3535 := r.ReadMapStart() + if yyl3535 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3516, d) + x.codecDecodeSelfFromMap(yyl3535, d) } - } else if yyct3516 == codecSelferValueTypeArray1234 { - yyl3516 := r.ReadArrayStart() - if yyl3516 == 0 { + } else if yyct3535 == codecSelferValueTypeArray1234 { + yyl3535 := r.ReadArrayStart() + if yyl3535 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3516, d) + x.codecDecodeSelfFromArray(yyl3535, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43618,12 +43891,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3517Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3517Slc - var yyhl3517 bool = l >= 0 - for yyj3517 := 0; ; yyj3517++ { - if yyhl3517 { - if yyj3517 >= l { + var yys3536Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3536Slc + var yyhl3536 bool = l >= 0 + for yyj3536 := 0; ; yyj3536++ { + if yyhl3536 { + if yyj3536 >= l { break } } else { @@ -43632,10 +43905,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3517Slc = r.DecodeBytes(yys3517Slc, true, true) - yys3517 := string(yys3517Slc) + yys3536Slc = r.DecodeBytes(yys3536Slc, true, true) + yys3536 := string(yys3536Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3517 { + switch yys3536 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -43656,8 +43929,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3520 := z.DecBinary() - _ = yym3520 + yym3539 := z.DecBinary() + _ = yym3539 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -43683,8 +43956,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3523 := z.DecBinary() - _ = yym3523 + yym3542 := z.DecBinary() + _ = yym3542 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -43699,17 +43972,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3525 := z.DecBinary() - _ = yym3525 + yym3544 := z.DecBinary() + _ = yym3544 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3517) - } // end switch yys3517 - } // end for yyj3517 + z.DecStructFieldNotFound(-1, yys3536) + } // end switch yys3536 + } // end for yyj3536 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43717,16 +43990,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3526 int - var yyb3526 bool - var yyhl3526 bool = l >= 0 - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + var yyj3545 int + var yyb3545 bool + var yyhl3545 bool = l >= 0 + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43741,13 +44014,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43760,20 +44033,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3529 := z.DecBinary() - _ = yym3529 + yym3548 := z.DecBinary() + _ = yym3548 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43788,13 +44061,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43807,20 +44080,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3532 := z.DecBinary() - _ = yym3532 + yym3551 := z.DecBinary() + _ = yym3551 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43833,25 +44106,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3534 := z.DecBinary() - _ = yym3534 + yym3553 := z.DecBinary() + _ = yym3553 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3526++ - if yyhl3526 { - yyb3526 = yyj3526 > l + yyj3545++ + if yyhl3545 { + yyb3545 = yyj3545 > l } else { - yyb3526 = r.CheckBreak() + yyb3545 = r.CheckBreak() } - if yyb3526 { + if yyb3545 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3526-1, "") + z.DecStructFieldNotFound(yyj3545-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43863,38 +44136,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3535 := z.EncBinary() - _ = yym3535 + yym3554 := z.EncBinary() + _ = yym3554 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3536 := !z.EncBinary() - yy2arr3536 := z.EncBasicHandle().StructToArray - var yyq3536 [4]bool - _, _, _ = yysep3536, yyq3536, yy2arr3536 - const yyr3536 bool = false - yyq3536[0] = x.User != "" - yyq3536[1] = x.Role != "" - yyq3536[2] = x.Type != "" - yyq3536[3] = x.Level != "" - var yynn3536 int - if yyr3536 || yy2arr3536 { + yysep3555 := !z.EncBinary() + yy2arr3555 := z.EncBasicHandle().StructToArray + var yyq3555 [4]bool + _, _, _ = yysep3555, yyq3555, yy2arr3555 + const yyr3555 bool = false + yyq3555[0] = x.User != "" + yyq3555[1] = x.Role != "" + yyq3555[2] = x.Type != "" + yyq3555[3] = x.Level != "" + var yynn3555 int + if yyr3555 || yy2arr3555 { r.EncodeArrayStart(4) } else { - yynn3536 = 0 - for _, b := range yyq3536 { + yynn3555 = 0 + for _, b := range yyq3555 { if b { - yynn3536++ + yynn3555++ } } - r.EncodeMapStart(yynn3536) - yynn3536 = 0 + r.EncodeMapStart(yynn3555) + yynn3555 = 0 } - if yyr3536 || yy2arr3536 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3536[0] { - yym3538 := z.EncBinary() - _ = yym3538 + if yyq3555[0] { + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -43903,23 +44176,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3536[0] { + if yyq3555[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3539 := z.EncBinary() - _ = yym3539 + yym3558 := z.EncBinary() + _ = yym3558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3536 || yy2arr3536 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3536[1] { - yym3541 := z.EncBinary() - _ = yym3541 + if yyq3555[1] { + yym3560 := z.EncBinary() + _ = yym3560 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -43928,23 +44201,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3536[1] { + if yyq3555[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3542 := z.EncBinary() - _ = yym3542 + yym3561 := z.EncBinary() + _ = yym3561 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3536 || yy2arr3536 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3536[2] { - yym3544 := z.EncBinary() - _ = yym3544 + if yyq3555[2] { + yym3563 := z.EncBinary() + _ = yym3563 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -43953,23 +44226,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3536[2] { + if yyq3555[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3545 := z.EncBinary() - _ = yym3545 + yym3564 := z.EncBinary() + _ = yym3564 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3536 || yy2arr3536 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3536[3] { - yym3547 := z.EncBinary() - _ = yym3547 + if yyq3555[3] { + yym3566 := z.EncBinary() + _ = yym3566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -43978,19 +44251,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3536[3] { + if yyq3555[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3548 := z.EncBinary() - _ = yym3548 + yym3567 := z.EncBinary() + _ = yym3567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3536 || yy2arr3536 { + if yyr3555 || yy2arr3555 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44003,25 +44276,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3549 := z.DecBinary() - _ = yym3549 + yym3568 := z.DecBinary() + _ = yym3568 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3550 := r.ContainerType() - if yyct3550 == codecSelferValueTypeMap1234 { - yyl3550 := r.ReadMapStart() - if yyl3550 == 0 { + yyct3569 := r.ContainerType() + if yyct3569 == codecSelferValueTypeMap1234 { + yyl3569 := r.ReadMapStart() + if yyl3569 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3550, d) + x.codecDecodeSelfFromMap(yyl3569, d) } - } else if yyct3550 == codecSelferValueTypeArray1234 { - yyl3550 := r.ReadArrayStart() - if yyl3550 == 0 { + } else if yyct3569 == codecSelferValueTypeArray1234 { + yyl3569 := r.ReadArrayStart() + if yyl3569 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3550, d) + x.codecDecodeSelfFromArray(yyl3569, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44033,12 +44306,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3551Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3551Slc - var yyhl3551 bool = l >= 0 - for yyj3551 := 0; ; yyj3551++ { - if yyhl3551 { - if yyj3551 >= l { + var yys3570Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3570Slc + var yyhl3570 bool = l >= 0 + for yyj3570 := 0; ; yyj3570++ { + if yyhl3570 { + if yyj3570 >= l { break } } else { @@ -44047,10 +44320,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3551Slc = r.DecodeBytes(yys3551Slc, true, true) - yys3551 := string(yys3551Slc) + yys3570Slc = r.DecodeBytes(yys3570Slc, true, true) + yys3570 := string(yys3570Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3551 { + switch yys3570 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -44076,9 +44349,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3551) - } // end switch yys3551 - } // end for yyj3551 + z.DecStructFieldNotFound(-1, yys3570) + } // end switch yys3570 + } // end for yyj3570 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44086,16 +44359,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3556 int - var yyb3556 bool - var yyhl3556 bool = l >= 0 - yyj3556++ - if yyhl3556 { - yyb3556 = yyj3556 > l + var yyj3575 int + var yyb3575 bool + var yyhl3575 bool = l >= 0 + yyj3575++ + if yyhl3575 { + yyb3575 = yyj3575 > l } else { - yyb3556 = r.CheckBreak() + yyb3575 = r.CheckBreak() } - if yyb3556 { + if yyb3575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44105,13 +44378,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3556++ - if yyhl3556 { - yyb3556 = yyj3556 > l + yyj3575++ + if yyhl3575 { + yyb3575 = yyj3575 > l } else { - yyb3556 = r.CheckBreak() + yyb3575 = r.CheckBreak() } - if yyb3556 { + if yyb3575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44121,13 +44394,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3556++ - if yyhl3556 { - yyb3556 = yyj3556 > l + yyj3575++ + if yyhl3575 { + yyb3575 = yyj3575 > l } else { - yyb3556 = r.CheckBreak() + yyb3575 = r.CheckBreak() } - if yyb3556 { + if yyb3575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44137,13 +44410,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3556++ - if yyhl3556 { - yyb3556 = yyj3556 > l + yyj3575++ + if yyhl3575 { + yyb3575 = yyj3575 > l } else { - yyb3556 = r.CheckBreak() + yyb3575 = r.CheckBreak() } - if yyb3556 { + if yyb3575 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44154,17 +44427,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3556++ - if yyhl3556 { - yyb3556 = yyj3556 > l + yyj3575++ + if yyhl3575 { + yyb3575 = yyj3575 > l } else { - yyb3556 = r.CheckBreak() + yyb3575 = r.CheckBreak() } - if yyb3556 { + if yyb3575 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3556-1, "") + z.DecStructFieldNotFound(yyj3575-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44176,37 +44449,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3561 := z.EncBinary() - _ = yym3561 + yym3580 := z.EncBinary() + _ = yym3580 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3562 := !z.EncBinary() - yy2arr3562 := z.EncBasicHandle().StructToArray - var yyq3562 [5]bool - _, _, _ = yysep3562, yyq3562, yy2arr3562 - const yyr3562 bool = false - yyq3562[0] = x.Kind != "" - yyq3562[1] = x.APIVersion != "" - yyq3562[2] = true - var yynn3562 int - if yyr3562 || yy2arr3562 { + yysep3581 := !z.EncBinary() + yy2arr3581 := z.EncBasicHandle().StructToArray + var yyq3581 [5]bool + _, _, _ = yysep3581, yyq3581, yy2arr3581 + const yyr3581 bool = false + yyq3581[0] = x.Kind != "" + yyq3581[1] = x.APIVersion != "" + yyq3581[2] = true + var yynn3581 int + if yyr3581 || yy2arr3581 { r.EncodeArrayStart(5) } else { - yynn3562 = 2 - for _, b := range yyq3562 { + yynn3581 = 2 + for _, b := range yyq3581 { if b { - yynn3562++ + yynn3581++ } } - r.EncodeMapStart(yynn3562) - yynn3562 = 0 + r.EncodeMapStart(yynn3581) + yynn3581 = 0 } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[0] { - yym3564 := z.EncBinary() - _ = yym3564 + if yyq3581[0] { + yym3583 := z.EncBinary() + _ = yym3583 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -44215,23 +44488,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3562[0] { + if yyq3581[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3565 := z.EncBinary() - _ = yym3565 + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[1] { - yym3567 := z.EncBinary() - _ = yym3567 + if yyq3581[1] { + yym3586 := z.EncBinary() + _ = yym3586 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -44240,39 +44513,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3562[1] { + if yyq3581[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3568 := z.EncBinary() - _ = yym3568 + yym3587 := z.EncBinary() + _ = yym3587 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3562[2] { - yy3570 := &x.ObjectMeta - yy3570.CodecEncodeSelf(e) + if yyq3581[2] { + yy3589 := &x.ObjectMeta + yy3589.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3562[2] { + if yyq3581[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3571 := &x.ObjectMeta - yy3571.CodecEncodeSelf(e) + yy3590 := &x.ObjectMeta + yy3590.CodecEncodeSelf(e) } } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3573 := z.EncBinary() - _ = yym3573 + yym3592 := z.EncBinary() + _ = yym3592 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -44281,20 +44554,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3574 := z.EncBinary() - _ = yym3574 + yym3593 := z.EncBinary() + _ = yym3593 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3576 := z.EncBinary() - _ = yym3576 + yym3595 := z.EncBinary() + _ = yym3595 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -44307,15 +44580,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3577 := z.EncBinary() - _ = yym3577 + yym3596 := z.EncBinary() + _ = yym3596 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3562 || yy2arr3562 { + if yyr3581 || yy2arr3581 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44328,25 +44601,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3578 := z.DecBinary() - _ = yym3578 + yym3597 := z.DecBinary() + _ = yym3597 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3579 := r.ContainerType() - if yyct3579 == codecSelferValueTypeMap1234 { - yyl3579 := r.ReadMapStart() - if yyl3579 == 0 { + yyct3598 := r.ContainerType() + if yyct3598 == codecSelferValueTypeMap1234 { + yyl3598 := r.ReadMapStart() + if yyl3598 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3579, d) + x.codecDecodeSelfFromMap(yyl3598, d) } - } else if yyct3579 == codecSelferValueTypeArray1234 { - yyl3579 := r.ReadArrayStart() - if yyl3579 == 0 { + } else if yyct3598 == codecSelferValueTypeArray1234 { + yyl3598 := r.ReadArrayStart() + if yyl3598 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3579, d) + x.codecDecodeSelfFromArray(yyl3598, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44358,12 +44631,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3580Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3580Slc - var yyhl3580 bool = l >= 0 - for yyj3580 := 0; ; yyj3580++ { - if yyhl3580 { - if yyj3580 >= l { + var yys3599Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3599Slc + var yyhl3599 bool = l >= 0 + for yyj3599 := 0; ; yyj3599++ { + if yyhl3599 { + if yyj3599 >= l { break } } else { @@ -44372,10 +44645,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3580Slc = r.DecodeBytes(yys3580Slc, true, true) - yys3580 := string(yys3580Slc) + yys3599Slc = r.DecodeBytes(yys3599Slc, true, true) + yys3599 := string(yys3599Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3580 { + switch yys3599 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44392,8 +44665,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3583 := &x.ObjectMeta - yyv3583.CodecDecodeSelf(d) + yyv3602 := &x.ObjectMeta + yyv3602.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -44405,18 +44678,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3585 := &x.Data - yym3586 := z.DecBinary() - _ = yym3586 + yyv3604 := &x.Data + yym3605 := z.DecBinary() + _ = yym3605 if false { } else { - *yyv3585 = r.DecodeBytes(*(*[]byte)(yyv3585), false, false) + *yyv3604 = r.DecodeBytes(*(*[]byte)(yyv3604), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3580) - } // end switch yys3580 - } // end for yyj3580 + z.DecStructFieldNotFound(-1, yys3599) + } // end switch yys3599 + } // end for yyj3599 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44424,16 +44697,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3587 int - var yyb3587 bool - var yyhl3587 bool = l >= 0 - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + var yyj3606 int + var yyb3606 bool + var yyhl3606 bool = l >= 0 + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44443,13 +44716,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44459,13 +44732,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44473,16 +44746,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3590 := &x.ObjectMeta - yyv3590.CodecDecodeSelf(d) + yyv3609 := &x.ObjectMeta + yyv3609.CodecDecodeSelf(d) } - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44492,13 +44765,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44506,26 +44779,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3592 := &x.Data - yym3593 := z.DecBinary() - _ = yym3593 + yyv3611 := &x.Data + yym3612 := z.DecBinary() + _ = yym3612 if false { } else { - *yyv3592 = r.DecodeBytes(*(*[]byte)(yyv3592), false, false) + *yyv3611 = r.DecodeBytes(*(*[]byte)(yyv3611), false, false) } } for { - yyj3587++ - if yyhl3587 { - yyb3587 = yyj3587 > l + yyj3606++ + if yyhl3606 { + yyb3606 = yyj3606 > l } else { - yyb3587 = r.CheckBreak() + yyb3606 = r.CheckBreak() } - if yyb3587 { + if yyb3606 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3587-1, "") + z.DecStructFieldNotFound(yyj3606-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44535,9 +44808,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3594 := range v { + for _, yyv3613 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3594.CodecEncodeSelf(e) + yyv3613.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44547,75 +44820,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3595 := *v - yyh3595, yyl3595 := z.DecSliceHelperStart() - var yyc3595 bool - if yyl3595 == 0 { - if yyv3595 == nil { - yyv3595 = []PersistentVolumeAccessMode{} - yyc3595 = true - } else if len(yyv3595) != 0 { - yyv3595 = yyv3595[:0] - yyc3595 = true + yyv3614 := *v + yyh3614, yyl3614 := z.DecSliceHelperStart() + var yyc3614 bool + if yyl3614 == 0 { + if yyv3614 == nil { + yyv3614 = []PersistentVolumeAccessMode{} + yyc3614 = true + } else if len(yyv3614) != 0 { + yyv3614 = yyv3614[:0] + yyc3614 = true } - } else if yyl3595 > 0 { - var yyrr3595, yyrl3595 int - var yyrt3595 bool - if yyl3595 > cap(yyv3595) { + } else if yyl3614 > 0 { + var yyrr3614, yyrl3614 int + var yyrt3614 bool + if yyl3614 > cap(yyv3614) { - yyrl3595, yyrt3595 = z.DecInferLen(yyl3595, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3595 { - if yyrl3595 <= cap(yyv3595) { - yyv3595 = yyv3595[:yyrl3595] + yyrl3614, yyrt3614 = z.DecInferLen(yyl3614, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3614 { + if yyrl3614 <= cap(yyv3614) { + yyv3614 = yyv3614[:yyrl3614] } else { - yyv3595 = make([]PersistentVolumeAccessMode, yyrl3595) + yyv3614 = make([]PersistentVolumeAccessMode, yyrl3614) } } else { - yyv3595 = make([]PersistentVolumeAccessMode, yyrl3595) + yyv3614 = make([]PersistentVolumeAccessMode, yyrl3614) } - yyc3595 = true - yyrr3595 = len(yyv3595) - } else if yyl3595 != len(yyv3595) { - yyv3595 = yyv3595[:yyl3595] - yyc3595 = true + yyc3614 = true + yyrr3614 = len(yyv3614) + } else if yyl3614 != len(yyv3614) { + yyv3614 = yyv3614[:yyl3614] + yyc3614 = true } - yyj3595 := 0 - for ; yyj3595 < yyrr3595; yyj3595++ { - yyh3595.ElemContainerState(yyj3595) + yyj3614 := 0 + for ; yyj3614 < yyrr3614; yyj3614++ { + yyh3614.ElemContainerState(yyj3614) if r.TryDecodeAsNil() { - yyv3595[yyj3595] = "" + yyv3614[yyj3614] = "" } else { - yyv3595[yyj3595] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3614[yyj3614] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt3595 { - for ; yyj3595 < yyl3595; yyj3595++ { - yyv3595 = append(yyv3595, "") - yyh3595.ElemContainerState(yyj3595) + if yyrt3614 { + for ; yyj3614 < yyl3614; yyj3614++ { + yyv3614 = append(yyv3614, "") + yyh3614.ElemContainerState(yyj3614) if r.TryDecodeAsNil() { - yyv3595[yyj3595] = "" + yyv3614[yyj3614] = "" } else { - yyv3595[yyj3595] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3614[yyj3614] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj3595 := 0 - for ; !r.CheckBreak(); yyj3595++ { + yyj3614 := 0 + for ; !r.CheckBreak(); yyj3614++ { - if yyj3595 >= len(yyv3595) { - yyv3595 = append(yyv3595, "") // var yyz3595 PersistentVolumeAccessMode - yyc3595 = true + if yyj3614 >= len(yyv3614) { + yyv3614 = append(yyv3614, "") // var yyz3614 PersistentVolumeAccessMode + yyc3614 = true } - yyh3595.ElemContainerState(yyj3595) - if yyj3595 < len(yyv3595) { + yyh3614.ElemContainerState(yyj3614) + if yyj3614 < len(yyv3614) { if r.TryDecodeAsNil() { - yyv3595[yyj3595] = "" + yyv3614[yyj3614] = "" } else { - yyv3595[yyj3595] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3614[yyj3614] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -44623,17 +44896,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj3595 < len(yyv3595) { - yyv3595 = yyv3595[:yyj3595] - yyc3595 = true - } else if yyj3595 == 0 && yyv3595 == nil { - yyv3595 = []PersistentVolumeAccessMode{} - yyc3595 = true + if yyj3614 < len(yyv3614) { + yyv3614 = yyv3614[:yyj3614] + yyc3614 = true + } else if yyj3614 == 0 && yyv3614 == nil { + yyv3614 = []PersistentVolumeAccessMode{} + yyc3614 = true } } - yyh3595.End() - if yyc3595 { - *v = yyv3595 + yyh3614.End() + if yyc3614 { + *v = yyv3614 } } @@ -44642,10 +44915,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3599 := range v { + for _, yyv3618 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3600 := &yyv3599 - yy3600.CodecEncodeSelf(e) + yy3619 := &yyv3618 + yy3619.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44655,83 +44928,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3601 := *v - yyh3601, yyl3601 := z.DecSliceHelperStart() - var yyc3601 bool - if yyl3601 == 0 { - if yyv3601 == nil { - yyv3601 = []PersistentVolume{} - yyc3601 = true - } else if len(yyv3601) != 0 { - yyv3601 = yyv3601[:0] - yyc3601 = true + yyv3620 := *v + yyh3620, yyl3620 := z.DecSliceHelperStart() + var yyc3620 bool + if yyl3620 == 0 { + if yyv3620 == nil { + yyv3620 = []PersistentVolume{} + yyc3620 = true + } else if len(yyv3620) != 0 { + yyv3620 = yyv3620[:0] + yyc3620 = true } - } else if yyl3601 > 0 { - var yyrr3601, yyrl3601 int - var yyrt3601 bool - if yyl3601 > cap(yyv3601) { + } else if yyl3620 > 0 { + var yyrr3620, yyrl3620 int + var yyrt3620 bool + if yyl3620 > cap(yyv3620) { - yyrg3601 := len(yyv3601) > 0 - yyv23601 := yyv3601 - yyrl3601, yyrt3601 = z.DecInferLen(yyl3601, z.DecBasicHandle().MaxInitLen, 392) - if yyrt3601 { - if yyrl3601 <= cap(yyv3601) { - yyv3601 = yyv3601[:yyrl3601] + yyrg3620 := len(yyv3620) > 0 + yyv23620 := yyv3620 + yyrl3620, yyrt3620 = z.DecInferLen(yyl3620, z.DecBasicHandle().MaxInitLen, 392) + if yyrt3620 { + if yyrl3620 <= cap(yyv3620) { + yyv3620 = yyv3620[:yyrl3620] } else { - yyv3601 = make([]PersistentVolume, yyrl3601) + yyv3620 = make([]PersistentVolume, yyrl3620) } } else { - yyv3601 = make([]PersistentVolume, yyrl3601) + yyv3620 = make([]PersistentVolume, yyrl3620) } - yyc3601 = true - yyrr3601 = len(yyv3601) - if yyrg3601 { - copy(yyv3601, yyv23601) + yyc3620 = true + yyrr3620 = len(yyv3620) + if yyrg3620 { + copy(yyv3620, yyv23620) } - } else if yyl3601 != len(yyv3601) { - yyv3601 = yyv3601[:yyl3601] - yyc3601 = true + } else if yyl3620 != len(yyv3620) { + yyv3620 = yyv3620[:yyl3620] + yyc3620 = true } - yyj3601 := 0 - for ; yyj3601 < yyrr3601; yyj3601++ { - yyh3601.ElemContainerState(yyj3601) + yyj3620 := 0 + for ; yyj3620 < yyrr3620; yyj3620++ { + yyh3620.ElemContainerState(yyj3620) if r.TryDecodeAsNil() { - yyv3601[yyj3601] = PersistentVolume{} + yyv3620[yyj3620] = PersistentVolume{} } else { - yyv3602 := &yyv3601[yyj3601] - yyv3602.CodecDecodeSelf(d) + yyv3621 := &yyv3620[yyj3620] + yyv3621.CodecDecodeSelf(d) } } - if yyrt3601 { - for ; yyj3601 < yyl3601; yyj3601++ { - yyv3601 = append(yyv3601, PersistentVolume{}) - yyh3601.ElemContainerState(yyj3601) + if yyrt3620 { + for ; yyj3620 < yyl3620; yyj3620++ { + yyv3620 = append(yyv3620, PersistentVolume{}) + yyh3620.ElemContainerState(yyj3620) if r.TryDecodeAsNil() { - yyv3601[yyj3601] = PersistentVolume{} + yyv3620[yyj3620] = PersistentVolume{} } else { - yyv3603 := &yyv3601[yyj3601] - yyv3603.CodecDecodeSelf(d) + yyv3622 := &yyv3620[yyj3620] + yyv3622.CodecDecodeSelf(d) } } } } else { - yyj3601 := 0 - for ; !r.CheckBreak(); yyj3601++ { + yyj3620 := 0 + for ; !r.CheckBreak(); yyj3620++ { - if yyj3601 >= len(yyv3601) { - yyv3601 = append(yyv3601, PersistentVolume{}) // var yyz3601 PersistentVolume - yyc3601 = true + if yyj3620 >= len(yyv3620) { + yyv3620 = append(yyv3620, PersistentVolume{}) // var yyz3620 PersistentVolume + yyc3620 = true } - yyh3601.ElemContainerState(yyj3601) - if yyj3601 < len(yyv3601) { + yyh3620.ElemContainerState(yyj3620) + if yyj3620 < len(yyv3620) { if r.TryDecodeAsNil() { - yyv3601[yyj3601] = PersistentVolume{} + yyv3620[yyj3620] = PersistentVolume{} } else { - yyv3604 := &yyv3601[yyj3601] - yyv3604.CodecDecodeSelf(d) + yyv3623 := &yyv3620[yyj3620] + yyv3623.CodecDecodeSelf(d) } } else { @@ -44739,17 +45012,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj3601 < len(yyv3601) { - yyv3601 = yyv3601[:yyj3601] - yyc3601 = true - } else if yyj3601 == 0 && yyv3601 == nil { - yyv3601 = []PersistentVolume{} - yyc3601 = true + if yyj3620 < len(yyv3620) { + yyv3620 = yyv3620[:yyj3620] + yyc3620 = true + } else if yyj3620 == 0 && yyv3620 == nil { + yyv3620 = []PersistentVolume{} + yyc3620 = true } } - yyh3601.End() - if yyc3601 { - *v = yyv3601 + yyh3620.End() + if yyc3620 { + *v = yyv3620 } } @@ -44758,10 +45031,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3605 := range v { + for _, yyv3624 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3606 := &yyv3605 - yy3606.CodecEncodeSelf(e) + yy3625 := &yyv3624 + yy3625.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44771,83 +45044,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3607 := *v - yyh3607, yyl3607 := z.DecSliceHelperStart() - var yyc3607 bool - if yyl3607 == 0 { - if yyv3607 == nil { - yyv3607 = []PersistentVolumeClaim{} - yyc3607 = true - } else if len(yyv3607) != 0 { - yyv3607 = yyv3607[:0] - yyc3607 = true + yyv3626 := *v + yyh3626, yyl3626 := z.DecSliceHelperStart() + var yyc3626 bool + if yyl3626 == 0 { + if yyv3626 == nil { + yyv3626 = []PersistentVolumeClaim{} + yyc3626 = true + } else if len(yyv3626) != 0 { + yyv3626 = yyv3626[:0] + yyc3626 = true } - } else if yyl3607 > 0 { - var yyrr3607, yyrl3607 int - var yyrt3607 bool - if yyl3607 > cap(yyv3607) { + } else if yyl3626 > 0 { + var yyrr3626, yyrl3626 int + var yyrt3626 bool + if yyl3626 > cap(yyv3626) { - yyrg3607 := len(yyv3607) > 0 - yyv23607 := yyv3607 - yyrl3607, yyrt3607 = z.DecInferLen(yyl3607, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3607 { - if yyrl3607 <= cap(yyv3607) { - yyv3607 = yyv3607[:yyrl3607] + yyrg3626 := len(yyv3626) > 0 + yyv23626 := yyv3626 + yyrl3626, yyrt3626 = z.DecInferLen(yyl3626, z.DecBasicHandle().MaxInitLen, 296) + if yyrt3626 { + if yyrl3626 <= cap(yyv3626) { + yyv3626 = yyv3626[:yyrl3626] } else { - yyv3607 = make([]PersistentVolumeClaim, yyrl3607) + yyv3626 = make([]PersistentVolumeClaim, yyrl3626) } } else { - yyv3607 = make([]PersistentVolumeClaim, yyrl3607) + yyv3626 = make([]PersistentVolumeClaim, yyrl3626) } - yyc3607 = true - yyrr3607 = len(yyv3607) - if yyrg3607 { - copy(yyv3607, yyv23607) + yyc3626 = true + yyrr3626 = len(yyv3626) + if yyrg3626 { + copy(yyv3626, yyv23626) } - } else if yyl3607 != len(yyv3607) { - yyv3607 = yyv3607[:yyl3607] - yyc3607 = true + } else if yyl3626 != len(yyv3626) { + yyv3626 = yyv3626[:yyl3626] + yyc3626 = true } - yyj3607 := 0 - for ; yyj3607 < yyrr3607; yyj3607++ { - yyh3607.ElemContainerState(yyj3607) + yyj3626 := 0 + for ; yyj3626 < yyrr3626; yyj3626++ { + yyh3626.ElemContainerState(yyj3626) if r.TryDecodeAsNil() { - yyv3607[yyj3607] = PersistentVolumeClaim{} + yyv3626[yyj3626] = PersistentVolumeClaim{} } else { - yyv3608 := &yyv3607[yyj3607] - yyv3608.CodecDecodeSelf(d) + yyv3627 := &yyv3626[yyj3626] + yyv3627.CodecDecodeSelf(d) } } - if yyrt3607 { - for ; yyj3607 < yyl3607; yyj3607++ { - yyv3607 = append(yyv3607, PersistentVolumeClaim{}) - yyh3607.ElemContainerState(yyj3607) + if yyrt3626 { + for ; yyj3626 < yyl3626; yyj3626++ { + yyv3626 = append(yyv3626, PersistentVolumeClaim{}) + yyh3626.ElemContainerState(yyj3626) if r.TryDecodeAsNil() { - yyv3607[yyj3607] = PersistentVolumeClaim{} + yyv3626[yyj3626] = PersistentVolumeClaim{} } else { - yyv3609 := &yyv3607[yyj3607] - yyv3609.CodecDecodeSelf(d) + yyv3628 := &yyv3626[yyj3626] + yyv3628.CodecDecodeSelf(d) } } } } else { - yyj3607 := 0 - for ; !r.CheckBreak(); yyj3607++ { + yyj3626 := 0 + for ; !r.CheckBreak(); yyj3626++ { - if yyj3607 >= len(yyv3607) { - yyv3607 = append(yyv3607, PersistentVolumeClaim{}) // var yyz3607 PersistentVolumeClaim - yyc3607 = true + if yyj3626 >= len(yyv3626) { + yyv3626 = append(yyv3626, PersistentVolumeClaim{}) // var yyz3626 PersistentVolumeClaim + yyc3626 = true } - yyh3607.ElemContainerState(yyj3607) - if yyj3607 < len(yyv3607) { + yyh3626.ElemContainerState(yyj3626) + if yyj3626 < len(yyv3626) { if r.TryDecodeAsNil() { - yyv3607[yyj3607] = PersistentVolumeClaim{} + yyv3626[yyj3626] = PersistentVolumeClaim{} } else { - yyv3610 := &yyv3607[yyj3607] - yyv3610.CodecDecodeSelf(d) + yyv3629 := &yyv3626[yyj3626] + yyv3629.CodecDecodeSelf(d) } } else { @@ -44855,17 +45128,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj3607 < len(yyv3607) { - yyv3607 = yyv3607[:yyj3607] - yyc3607 = true - } else if yyj3607 == 0 && yyv3607 == nil { - yyv3607 = []PersistentVolumeClaim{} - yyc3607 = true + if yyj3626 < len(yyv3626) { + yyv3626 = yyv3626[:yyj3626] + yyc3626 = true + } else if yyj3626 == 0 && yyv3626 == nil { + yyv3626 = []PersistentVolumeClaim{} + yyc3626 = true } } - yyh3607.End() - if yyc3607 { - *v = yyv3607 + yyh3626.End() + if yyc3626 { + *v = yyv3626 } } @@ -44874,9 +45147,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3611 := range v { + for _, yyv3630 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3611.CodecEncodeSelf(e) + yyv3630.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44886,75 +45159,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3612 := *v - yyh3612, yyl3612 := z.DecSliceHelperStart() - var yyc3612 bool - if yyl3612 == 0 { - if yyv3612 == nil { - yyv3612 = []Capability{} - yyc3612 = true - } else if len(yyv3612) != 0 { - yyv3612 = yyv3612[:0] - yyc3612 = true + yyv3631 := *v + yyh3631, yyl3631 := z.DecSliceHelperStart() + var yyc3631 bool + if yyl3631 == 0 { + if yyv3631 == nil { + yyv3631 = []Capability{} + yyc3631 = true + } else if len(yyv3631) != 0 { + yyv3631 = yyv3631[:0] + yyc3631 = true } - } else if yyl3612 > 0 { - var yyrr3612, yyrl3612 int - var yyrt3612 bool - if yyl3612 > cap(yyv3612) { + } else if yyl3631 > 0 { + var yyrr3631, yyrl3631 int + var yyrt3631 bool + if yyl3631 > cap(yyv3631) { - yyrl3612, yyrt3612 = z.DecInferLen(yyl3612, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3612 { - if yyrl3612 <= cap(yyv3612) { - yyv3612 = yyv3612[:yyrl3612] + yyrl3631, yyrt3631 = z.DecInferLen(yyl3631, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3631 { + if yyrl3631 <= cap(yyv3631) { + yyv3631 = yyv3631[:yyrl3631] } else { - yyv3612 = make([]Capability, yyrl3612) + yyv3631 = make([]Capability, yyrl3631) } } else { - yyv3612 = make([]Capability, yyrl3612) + yyv3631 = make([]Capability, yyrl3631) } - yyc3612 = true - yyrr3612 = len(yyv3612) - } else if yyl3612 != len(yyv3612) { - yyv3612 = yyv3612[:yyl3612] - yyc3612 = true + yyc3631 = true + yyrr3631 = len(yyv3631) + } else if yyl3631 != len(yyv3631) { + yyv3631 = yyv3631[:yyl3631] + yyc3631 = true } - yyj3612 := 0 - for ; yyj3612 < yyrr3612; yyj3612++ { - yyh3612.ElemContainerState(yyj3612) + yyj3631 := 0 + for ; yyj3631 < yyrr3631; yyj3631++ { + yyh3631.ElemContainerState(yyj3631) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = "" + yyv3631[yyj3631] = "" } else { - yyv3612[yyj3612] = Capability(r.DecodeString()) + yyv3631[yyj3631] = Capability(r.DecodeString()) } } - if yyrt3612 { - for ; yyj3612 < yyl3612; yyj3612++ { - yyv3612 = append(yyv3612, "") - yyh3612.ElemContainerState(yyj3612) + if yyrt3631 { + for ; yyj3631 < yyl3631; yyj3631++ { + yyv3631 = append(yyv3631, "") + yyh3631.ElemContainerState(yyj3631) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = "" + yyv3631[yyj3631] = "" } else { - yyv3612[yyj3612] = Capability(r.DecodeString()) + yyv3631[yyj3631] = Capability(r.DecodeString()) } } } } else { - yyj3612 := 0 - for ; !r.CheckBreak(); yyj3612++ { + yyj3631 := 0 + for ; !r.CheckBreak(); yyj3631++ { - if yyj3612 >= len(yyv3612) { - yyv3612 = append(yyv3612, "") // var yyz3612 Capability - yyc3612 = true + if yyj3631 >= len(yyv3631) { + yyv3631 = append(yyv3631, "") // var yyz3631 Capability + yyc3631 = true } - yyh3612.ElemContainerState(yyj3612) - if yyj3612 < len(yyv3612) { + yyh3631.ElemContainerState(yyj3631) + if yyj3631 < len(yyv3631) { if r.TryDecodeAsNil() { - yyv3612[yyj3612] = "" + yyv3631[yyj3631] = "" } else { - yyv3612[yyj3612] = Capability(r.DecodeString()) + yyv3631[yyj3631] = Capability(r.DecodeString()) } } else { @@ -44962,17 +45235,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj3612 < len(yyv3612) { - yyv3612 = yyv3612[:yyj3612] - yyc3612 = true - } else if yyj3612 == 0 && yyv3612 == nil { - yyv3612 = []Capability{} - yyc3612 = true + if yyj3631 < len(yyv3631) { + yyv3631 = yyv3631[:yyj3631] + yyc3631 = true + } else if yyj3631 == 0 && yyv3631 == nil { + yyv3631 = []Capability{} + yyc3631 = true } } - yyh3612.End() - if yyc3612 { - *v = yyv3612 + yyh3631.End() + if yyc3631 { + *v = yyv3631 } } @@ -44981,10 +45254,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3616 := range v { + for _, yyv3635 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3617 := &yyv3616 - yy3617.CodecEncodeSelf(e) + yy3636 := &yyv3635 + yy3636.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44994,83 +45267,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3618 := *v - yyh3618, yyl3618 := z.DecSliceHelperStart() - var yyc3618 bool - if yyl3618 == 0 { - if yyv3618 == nil { - yyv3618 = []ContainerPort{} - yyc3618 = true - } else if len(yyv3618) != 0 { - yyv3618 = yyv3618[:0] - yyc3618 = true + yyv3637 := *v + yyh3637, yyl3637 := z.DecSliceHelperStart() + var yyc3637 bool + if yyl3637 == 0 { + if yyv3637 == nil { + yyv3637 = []ContainerPort{} + yyc3637 = true + } else if len(yyv3637) != 0 { + yyv3637 = yyv3637[:0] + yyc3637 = true } - } else if yyl3618 > 0 { - var yyrr3618, yyrl3618 int - var yyrt3618 bool - if yyl3618 > cap(yyv3618) { + } else if yyl3637 > 0 { + var yyrr3637, yyrl3637 int + var yyrt3637 bool + if yyl3637 > cap(yyv3637) { - yyrg3618 := len(yyv3618) > 0 - yyv23618 := yyv3618 - yyrl3618, yyrt3618 = z.DecInferLen(yyl3618, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3618 { - if yyrl3618 <= cap(yyv3618) { - yyv3618 = yyv3618[:yyrl3618] + yyrg3637 := len(yyv3637) > 0 + yyv23637 := yyv3637 + yyrl3637, yyrt3637 = z.DecInferLen(yyl3637, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3637 { + if yyrl3637 <= cap(yyv3637) { + yyv3637 = yyv3637[:yyrl3637] } else { - yyv3618 = make([]ContainerPort, yyrl3618) + yyv3637 = make([]ContainerPort, yyrl3637) } } else { - yyv3618 = make([]ContainerPort, yyrl3618) + yyv3637 = make([]ContainerPort, yyrl3637) } - yyc3618 = true - yyrr3618 = len(yyv3618) - if yyrg3618 { - copy(yyv3618, yyv23618) + yyc3637 = true + yyrr3637 = len(yyv3637) + if yyrg3637 { + copy(yyv3637, yyv23637) } - } else if yyl3618 != len(yyv3618) { - yyv3618 = yyv3618[:yyl3618] - yyc3618 = true + } else if yyl3637 != len(yyv3637) { + yyv3637 = yyv3637[:yyl3637] + yyc3637 = true } - yyj3618 := 0 - for ; yyj3618 < yyrr3618; yyj3618++ { - yyh3618.ElemContainerState(yyj3618) + yyj3637 := 0 + for ; yyj3637 < yyrr3637; yyj3637++ { + yyh3637.ElemContainerState(yyj3637) if r.TryDecodeAsNil() { - yyv3618[yyj3618] = ContainerPort{} + yyv3637[yyj3637] = ContainerPort{} } else { - yyv3619 := &yyv3618[yyj3618] - yyv3619.CodecDecodeSelf(d) + yyv3638 := &yyv3637[yyj3637] + yyv3638.CodecDecodeSelf(d) } } - if yyrt3618 { - for ; yyj3618 < yyl3618; yyj3618++ { - yyv3618 = append(yyv3618, ContainerPort{}) - yyh3618.ElemContainerState(yyj3618) + if yyrt3637 { + for ; yyj3637 < yyl3637; yyj3637++ { + yyv3637 = append(yyv3637, ContainerPort{}) + yyh3637.ElemContainerState(yyj3637) if r.TryDecodeAsNil() { - yyv3618[yyj3618] = ContainerPort{} + yyv3637[yyj3637] = ContainerPort{} } else { - yyv3620 := &yyv3618[yyj3618] - yyv3620.CodecDecodeSelf(d) + yyv3639 := &yyv3637[yyj3637] + yyv3639.CodecDecodeSelf(d) } } } } else { - yyj3618 := 0 - for ; !r.CheckBreak(); yyj3618++ { + yyj3637 := 0 + for ; !r.CheckBreak(); yyj3637++ { - if yyj3618 >= len(yyv3618) { - yyv3618 = append(yyv3618, ContainerPort{}) // var yyz3618 ContainerPort - yyc3618 = true + if yyj3637 >= len(yyv3637) { + yyv3637 = append(yyv3637, ContainerPort{}) // var yyz3637 ContainerPort + yyc3637 = true } - yyh3618.ElemContainerState(yyj3618) - if yyj3618 < len(yyv3618) { + yyh3637.ElemContainerState(yyj3637) + if yyj3637 < len(yyv3637) { if r.TryDecodeAsNil() { - yyv3618[yyj3618] = ContainerPort{} + yyv3637[yyj3637] = ContainerPort{} } else { - yyv3621 := &yyv3618[yyj3618] - yyv3621.CodecDecodeSelf(d) + yyv3640 := &yyv3637[yyj3637] + yyv3640.CodecDecodeSelf(d) } } else { @@ -45078,17 +45351,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj3618 < len(yyv3618) { - yyv3618 = yyv3618[:yyj3618] - yyc3618 = true - } else if yyj3618 == 0 && yyv3618 == nil { - yyv3618 = []ContainerPort{} - yyc3618 = true + if yyj3637 < len(yyv3637) { + yyv3637 = yyv3637[:yyj3637] + yyc3637 = true + } else if yyj3637 == 0 && yyv3637 == nil { + yyv3637 = []ContainerPort{} + yyc3637 = true } } - yyh3618.End() - if yyc3618 { - *v = yyv3618 + yyh3637.End() + if yyc3637 { + *v = yyv3637 } } @@ -45097,10 +45370,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3622 := range v { + for _, yyv3641 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3623 := &yyv3622 - yy3623.CodecEncodeSelf(e) + yy3642 := &yyv3641 + yy3642.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45110,83 +45383,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3624 := *v - yyh3624, yyl3624 := z.DecSliceHelperStart() - var yyc3624 bool - if yyl3624 == 0 { - if yyv3624 == nil { - yyv3624 = []EnvVar{} - yyc3624 = true - } else if len(yyv3624) != 0 { - yyv3624 = yyv3624[:0] - yyc3624 = true + yyv3643 := *v + yyh3643, yyl3643 := z.DecSliceHelperStart() + var yyc3643 bool + if yyl3643 == 0 { + if yyv3643 == nil { + yyv3643 = []EnvVar{} + yyc3643 = true + } else if len(yyv3643) != 0 { + yyv3643 = yyv3643[:0] + yyc3643 = true } - } else if yyl3624 > 0 { - var yyrr3624, yyrl3624 int - var yyrt3624 bool - if yyl3624 > cap(yyv3624) { + } else if yyl3643 > 0 { + var yyrr3643, yyrl3643 int + var yyrt3643 bool + if yyl3643 > cap(yyv3643) { - yyrg3624 := len(yyv3624) > 0 - yyv23624 := yyv3624 - yyrl3624, yyrt3624 = z.DecInferLen(yyl3624, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3624 { - if yyrl3624 <= cap(yyv3624) { - yyv3624 = yyv3624[:yyrl3624] + yyrg3643 := len(yyv3643) > 0 + yyv23643 := yyv3643 + yyrl3643, yyrt3643 = z.DecInferLen(yyl3643, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3643 { + if yyrl3643 <= cap(yyv3643) { + yyv3643 = yyv3643[:yyrl3643] } else { - yyv3624 = make([]EnvVar, yyrl3624) + yyv3643 = make([]EnvVar, yyrl3643) } } else { - yyv3624 = make([]EnvVar, yyrl3624) + yyv3643 = make([]EnvVar, yyrl3643) } - yyc3624 = true - yyrr3624 = len(yyv3624) - if yyrg3624 { - copy(yyv3624, yyv23624) + yyc3643 = true + yyrr3643 = len(yyv3643) + if yyrg3643 { + copy(yyv3643, yyv23643) } - } else if yyl3624 != len(yyv3624) { - yyv3624 = yyv3624[:yyl3624] - yyc3624 = true + } else if yyl3643 != len(yyv3643) { + yyv3643 = yyv3643[:yyl3643] + yyc3643 = true } - yyj3624 := 0 - for ; yyj3624 < yyrr3624; yyj3624++ { - yyh3624.ElemContainerState(yyj3624) + yyj3643 := 0 + for ; yyj3643 < yyrr3643; yyj3643++ { + yyh3643.ElemContainerState(yyj3643) if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EnvVar{} + yyv3643[yyj3643] = EnvVar{} } else { - yyv3625 := &yyv3624[yyj3624] - yyv3625.CodecDecodeSelf(d) + yyv3644 := &yyv3643[yyj3643] + yyv3644.CodecDecodeSelf(d) } } - if yyrt3624 { - for ; yyj3624 < yyl3624; yyj3624++ { - yyv3624 = append(yyv3624, EnvVar{}) - yyh3624.ElemContainerState(yyj3624) + if yyrt3643 { + for ; yyj3643 < yyl3643; yyj3643++ { + yyv3643 = append(yyv3643, EnvVar{}) + yyh3643.ElemContainerState(yyj3643) if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EnvVar{} + yyv3643[yyj3643] = EnvVar{} } else { - yyv3626 := &yyv3624[yyj3624] - yyv3626.CodecDecodeSelf(d) + yyv3645 := &yyv3643[yyj3643] + yyv3645.CodecDecodeSelf(d) } } } } else { - yyj3624 := 0 - for ; !r.CheckBreak(); yyj3624++ { + yyj3643 := 0 + for ; !r.CheckBreak(); yyj3643++ { - if yyj3624 >= len(yyv3624) { - yyv3624 = append(yyv3624, EnvVar{}) // var yyz3624 EnvVar - yyc3624 = true + if yyj3643 >= len(yyv3643) { + yyv3643 = append(yyv3643, EnvVar{}) // var yyz3643 EnvVar + yyc3643 = true } - yyh3624.ElemContainerState(yyj3624) - if yyj3624 < len(yyv3624) { + yyh3643.ElemContainerState(yyj3643) + if yyj3643 < len(yyv3643) { if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EnvVar{} + yyv3643[yyj3643] = EnvVar{} } else { - yyv3627 := &yyv3624[yyj3624] - yyv3627.CodecDecodeSelf(d) + yyv3646 := &yyv3643[yyj3643] + yyv3646.CodecDecodeSelf(d) } } else { @@ -45194,17 +45467,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj3624 < len(yyv3624) { - yyv3624 = yyv3624[:yyj3624] - yyc3624 = true - } else if yyj3624 == 0 && yyv3624 == nil { - yyv3624 = []EnvVar{} - yyc3624 = true + if yyj3643 < len(yyv3643) { + yyv3643 = yyv3643[:yyj3643] + yyc3643 = true + } else if yyj3643 == 0 && yyv3643 == nil { + yyv3643 = []EnvVar{} + yyc3643 = true } } - yyh3624.End() - if yyc3624 { - *v = yyv3624 + yyh3643.End() + if yyc3643 { + *v = yyv3643 } } @@ -45213,10 +45486,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3628 := range v { + for _, yyv3647 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3629 := &yyv3628 - yy3629.CodecEncodeSelf(e) + yy3648 := &yyv3647 + yy3648.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45226,83 +45499,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3630 := *v - yyh3630, yyl3630 := z.DecSliceHelperStart() - var yyc3630 bool - if yyl3630 == 0 { - if yyv3630 == nil { - yyv3630 = []VolumeMount{} - yyc3630 = true - } else if len(yyv3630) != 0 { - yyv3630 = yyv3630[:0] - yyc3630 = true + yyv3649 := *v + yyh3649, yyl3649 := z.DecSliceHelperStart() + var yyc3649 bool + if yyl3649 == 0 { + if yyv3649 == nil { + yyv3649 = []VolumeMount{} + yyc3649 = true + } else if len(yyv3649) != 0 { + yyv3649 = yyv3649[:0] + yyc3649 = true } - } else if yyl3630 > 0 { - var yyrr3630, yyrl3630 int - var yyrt3630 bool - if yyl3630 > cap(yyv3630) { + } else if yyl3649 > 0 { + var yyrr3649, yyrl3649 int + var yyrt3649 bool + if yyl3649 > cap(yyv3649) { - yyrg3630 := len(yyv3630) > 0 - yyv23630 := yyv3630 - yyrl3630, yyrt3630 = z.DecInferLen(yyl3630, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3630 { - if yyrl3630 <= cap(yyv3630) { - yyv3630 = yyv3630[:yyrl3630] + yyrg3649 := len(yyv3649) > 0 + yyv23649 := yyv3649 + yyrl3649, yyrt3649 = z.DecInferLen(yyl3649, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3649 { + if yyrl3649 <= cap(yyv3649) { + yyv3649 = yyv3649[:yyrl3649] } else { - yyv3630 = make([]VolumeMount, yyrl3630) + yyv3649 = make([]VolumeMount, yyrl3649) } } else { - yyv3630 = make([]VolumeMount, yyrl3630) + yyv3649 = make([]VolumeMount, yyrl3649) } - yyc3630 = true - yyrr3630 = len(yyv3630) - if yyrg3630 { - copy(yyv3630, yyv23630) + yyc3649 = true + yyrr3649 = len(yyv3649) + if yyrg3649 { + copy(yyv3649, yyv23649) } - } else if yyl3630 != len(yyv3630) { - yyv3630 = yyv3630[:yyl3630] - yyc3630 = true + } else if yyl3649 != len(yyv3649) { + yyv3649 = yyv3649[:yyl3649] + yyc3649 = true } - yyj3630 := 0 - for ; yyj3630 < yyrr3630; yyj3630++ { - yyh3630.ElemContainerState(yyj3630) + yyj3649 := 0 + for ; yyj3649 < yyrr3649; yyj3649++ { + yyh3649.ElemContainerState(yyj3649) if r.TryDecodeAsNil() { - yyv3630[yyj3630] = VolumeMount{} + yyv3649[yyj3649] = VolumeMount{} } else { - yyv3631 := &yyv3630[yyj3630] - yyv3631.CodecDecodeSelf(d) + yyv3650 := &yyv3649[yyj3649] + yyv3650.CodecDecodeSelf(d) } } - if yyrt3630 { - for ; yyj3630 < yyl3630; yyj3630++ { - yyv3630 = append(yyv3630, VolumeMount{}) - yyh3630.ElemContainerState(yyj3630) + if yyrt3649 { + for ; yyj3649 < yyl3649; yyj3649++ { + yyv3649 = append(yyv3649, VolumeMount{}) + yyh3649.ElemContainerState(yyj3649) if r.TryDecodeAsNil() { - yyv3630[yyj3630] = VolumeMount{} + yyv3649[yyj3649] = VolumeMount{} } else { - yyv3632 := &yyv3630[yyj3630] - yyv3632.CodecDecodeSelf(d) + yyv3651 := &yyv3649[yyj3649] + yyv3651.CodecDecodeSelf(d) } } } } else { - yyj3630 := 0 - for ; !r.CheckBreak(); yyj3630++ { + yyj3649 := 0 + for ; !r.CheckBreak(); yyj3649++ { - if yyj3630 >= len(yyv3630) { - yyv3630 = append(yyv3630, VolumeMount{}) // var yyz3630 VolumeMount - yyc3630 = true + if yyj3649 >= len(yyv3649) { + yyv3649 = append(yyv3649, VolumeMount{}) // var yyz3649 VolumeMount + yyc3649 = true } - yyh3630.ElemContainerState(yyj3630) - if yyj3630 < len(yyv3630) { + yyh3649.ElemContainerState(yyj3649) + if yyj3649 < len(yyv3649) { if r.TryDecodeAsNil() { - yyv3630[yyj3630] = VolumeMount{} + yyv3649[yyj3649] = VolumeMount{} } else { - yyv3633 := &yyv3630[yyj3630] - yyv3633.CodecDecodeSelf(d) + yyv3652 := &yyv3649[yyj3649] + yyv3652.CodecDecodeSelf(d) } } else { @@ -45310,17 +45583,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj3630 < len(yyv3630) { - yyv3630 = yyv3630[:yyj3630] - yyc3630 = true - } else if yyj3630 == 0 && yyv3630 == nil { - yyv3630 = []VolumeMount{} - yyc3630 = true + if yyj3649 < len(yyv3649) { + yyv3649 = yyv3649[:yyj3649] + yyc3649 = true + } else if yyj3649 == 0 && yyv3649 == nil { + yyv3649 = []VolumeMount{} + yyc3649 = true } } - yyh3630.End() - if yyc3630 { - *v = yyv3630 + yyh3649.End() + if yyc3649 { + *v = yyv3649 } } @@ -45329,10 +45602,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3634 := range v { + for _, yyv3653 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3635 := &yyv3634 - yy3635.CodecEncodeSelf(e) + yy3654 := &yyv3653 + yy3654.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45342,83 +45615,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3636 := *v - yyh3636, yyl3636 := z.DecSliceHelperStart() - var yyc3636 bool - if yyl3636 == 0 { - if yyv3636 == nil { - yyv3636 = []Volume{} - yyc3636 = true - } else if len(yyv3636) != 0 { - yyv3636 = yyv3636[:0] - yyc3636 = true + yyv3655 := *v + yyh3655, yyl3655 := z.DecSliceHelperStart() + var yyc3655 bool + if yyl3655 == 0 { + if yyv3655 == nil { + yyv3655 = []Volume{} + yyc3655 = true + } else if len(yyv3655) != 0 { + yyv3655 = yyv3655[:0] + yyc3655 = true } - } else if yyl3636 > 0 { - var yyrr3636, yyrl3636 int - var yyrt3636 bool - if yyl3636 > cap(yyv3636) { + } else if yyl3655 > 0 { + var yyrr3655, yyrl3655 int + var yyrt3655 bool + if yyl3655 > cap(yyv3655) { - yyrg3636 := len(yyv3636) > 0 - yyv23636 := yyv3636 - yyrl3636, yyrt3636 = z.DecInferLen(yyl3636, z.DecBasicHandle().MaxInitLen, 152) - if yyrt3636 { - if yyrl3636 <= cap(yyv3636) { - yyv3636 = yyv3636[:yyrl3636] + yyrg3655 := len(yyv3655) > 0 + yyv23655 := yyv3655 + yyrl3655, yyrt3655 = z.DecInferLen(yyl3655, z.DecBasicHandle().MaxInitLen, 152) + if yyrt3655 { + if yyrl3655 <= cap(yyv3655) { + yyv3655 = yyv3655[:yyrl3655] } else { - yyv3636 = make([]Volume, yyrl3636) + yyv3655 = make([]Volume, yyrl3655) } } else { - yyv3636 = make([]Volume, yyrl3636) + yyv3655 = make([]Volume, yyrl3655) } - yyc3636 = true - yyrr3636 = len(yyv3636) - if yyrg3636 { - copy(yyv3636, yyv23636) + yyc3655 = true + yyrr3655 = len(yyv3655) + if yyrg3655 { + copy(yyv3655, yyv23655) } - } else if yyl3636 != len(yyv3636) { - yyv3636 = yyv3636[:yyl3636] - yyc3636 = true + } else if yyl3655 != len(yyv3655) { + yyv3655 = yyv3655[:yyl3655] + yyc3655 = true } - yyj3636 := 0 - for ; yyj3636 < yyrr3636; yyj3636++ { - yyh3636.ElemContainerState(yyj3636) + yyj3655 := 0 + for ; yyj3655 < yyrr3655; yyj3655++ { + yyh3655.ElemContainerState(yyj3655) if r.TryDecodeAsNil() { - yyv3636[yyj3636] = Volume{} + yyv3655[yyj3655] = Volume{} } else { - yyv3637 := &yyv3636[yyj3636] - yyv3637.CodecDecodeSelf(d) + yyv3656 := &yyv3655[yyj3655] + yyv3656.CodecDecodeSelf(d) } } - if yyrt3636 { - for ; yyj3636 < yyl3636; yyj3636++ { - yyv3636 = append(yyv3636, Volume{}) - yyh3636.ElemContainerState(yyj3636) + if yyrt3655 { + for ; yyj3655 < yyl3655; yyj3655++ { + yyv3655 = append(yyv3655, Volume{}) + yyh3655.ElemContainerState(yyj3655) if r.TryDecodeAsNil() { - yyv3636[yyj3636] = Volume{} + yyv3655[yyj3655] = Volume{} } else { - yyv3638 := &yyv3636[yyj3636] - yyv3638.CodecDecodeSelf(d) + yyv3657 := &yyv3655[yyj3655] + yyv3657.CodecDecodeSelf(d) } } } } else { - yyj3636 := 0 - for ; !r.CheckBreak(); yyj3636++ { + yyj3655 := 0 + for ; !r.CheckBreak(); yyj3655++ { - if yyj3636 >= len(yyv3636) { - yyv3636 = append(yyv3636, Volume{}) // var yyz3636 Volume - yyc3636 = true + if yyj3655 >= len(yyv3655) { + yyv3655 = append(yyv3655, Volume{}) // var yyz3655 Volume + yyc3655 = true } - yyh3636.ElemContainerState(yyj3636) - if yyj3636 < len(yyv3636) { + yyh3655.ElemContainerState(yyj3655) + if yyj3655 < len(yyv3655) { if r.TryDecodeAsNil() { - yyv3636[yyj3636] = Volume{} + yyv3655[yyj3655] = Volume{} } else { - yyv3639 := &yyv3636[yyj3636] - yyv3639.CodecDecodeSelf(d) + yyv3658 := &yyv3655[yyj3655] + yyv3658.CodecDecodeSelf(d) } } else { @@ -45426,17 +45699,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3636 < len(yyv3636) { - yyv3636 = yyv3636[:yyj3636] - yyc3636 = true - } else if yyj3636 == 0 && yyv3636 == nil { - yyv3636 = []Volume{} - yyc3636 = true + if yyj3655 < len(yyv3655) { + yyv3655 = yyv3655[:yyj3655] + yyc3655 = true + } else if yyj3655 == 0 && yyv3655 == nil { + yyv3655 = []Volume{} + yyc3655 = true } } - yyh3636.End() - if yyc3636 { - *v = yyv3636 + yyh3655.End() + if yyc3655 { + *v = yyv3655 } } @@ -45445,10 +45718,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3640 := range v { + for _, yyv3659 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3641 := &yyv3640 - yy3641.CodecEncodeSelf(e) + yy3660 := &yyv3659 + yy3660.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45458,83 +45731,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3642 := *v - yyh3642, yyl3642 := z.DecSliceHelperStart() - var yyc3642 bool - if yyl3642 == 0 { - if yyv3642 == nil { - yyv3642 = []Container{} - yyc3642 = true - } else if len(yyv3642) != 0 { - yyv3642 = yyv3642[:0] - yyc3642 = true + yyv3661 := *v + yyh3661, yyl3661 := z.DecSliceHelperStart() + var yyc3661 bool + if yyl3661 == 0 { + if yyv3661 == nil { + yyv3661 = []Container{} + yyc3661 = true + } else if len(yyv3661) != 0 { + yyv3661 = yyv3661[:0] + yyc3661 = true } - } else if yyl3642 > 0 { - var yyrr3642, yyrl3642 int - var yyrt3642 bool - if yyl3642 > cap(yyv3642) { + } else if yyl3661 > 0 { + var yyrr3661, yyrl3661 int + var yyrt3661 bool + if yyl3661 > cap(yyv3661) { - yyrg3642 := len(yyv3642) > 0 - yyv23642 := yyv3642 - yyrl3642, yyrt3642 = z.DecInferLen(yyl3642, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3642 { - if yyrl3642 <= cap(yyv3642) { - yyv3642 = yyv3642[:yyrl3642] + yyrg3661 := len(yyv3661) > 0 + yyv23661 := yyv3661 + yyrl3661, yyrt3661 = z.DecInferLen(yyl3661, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3661 { + if yyrl3661 <= cap(yyv3661) { + yyv3661 = yyv3661[:yyrl3661] } else { - yyv3642 = make([]Container, yyrl3642) + yyv3661 = make([]Container, yyrl3661) } } else { - yyv3642 = make([]Container, yyrl3642) + yyv3661 = make([]Container, yyrl3661) } - yyc3642 = true - yyrr3642 = len(yyv3642) - if yyrg3642 { - copy(yyv3642, yyv23642) + yyc3661 = true + yyrr3661 = len(yyv3661) + if yyrg3661 { + copy(yyv3661, yyv23661) } - } else if yyl3642 != len(yyv3642) { - yyv3642 = yyv3642[:yyl3642] - yyc3642 = true + } else if yyl3661 != len(yyv3661) { + yyv3661 = yyv3661[:yyl3661] + yyc3661 = true } - yyj3642 := 0 - for ; yyj3642 < yyrr3642; yyj3642++ { - yyh3642.ElemContainerState(yyj3642) + yyj3661 := 0 + for ; yyj3661 < yyrr3661; yyj3661++ { + yyh3661.ElemContainerState(yyj3661) if r.TryDecodeAsNil() { - yyv3642[yyj3642] = Container{} + yyv3661[yyj3661] = Container{} } else { - yyv3643 := &yyv3642[yyj3642] - yyv3643.CodecDecodeSelf(d) + yyv3662 := &yyv3661[yyj3661] + yyv3662.CodecDecodeSelf(d) } } - if yyrt3642 { - for ; yyj3642 < yyl3642; yyj3642++ { - yyv3642 = append(yyv3642, Container{}) - yyh3642.ElemContainerState(yyj3642) + if yyrt3661 { + for ; yyj3661 < yyl3661; yyj3661++ { + yyv3661 = append(yyv3661, Container{}) + yyh3661.ElemContainerState(yyj3661) if r.TryDecodeAsNil() { - yyv3642[yyj3642] = Container{} + yyv3661[yyj3661] = Container{} } else { - yyv3644 := &yyv3642[yyj3642] - yyv3644.CodecDecodeSelf(d) + yyv3663 := &yyv3661[yyj3661] + yyv3663.CodecDecodeSelf(d) } } } } else { - yyj3642 := 0 - for ; !r.CheckBreak(); yyj3642++ { + yyj3661 := 0 + for ; !r.CheckBreak(); yyj3661++ { - if yyj3642 >= len(yyv3642) { - yyv3642 = append(yyv3642, Container{}) // var yyz3642 Container - yyc3642 = true + if yyj3661 >= len(yyv3661) { + yyv3661 = append(yyv3661, Container{}) // var yyz3661 Container + yyc3661 = true } - yyh3642.ElemContainerState(yyj3642) - if yyj3642 < len(yyv3642) { + yyh3661.ElemContainerState(yyj3661) + if yyj3661 < len(yyv3661) { if r.TryDecodeAsNil() { - yyv3642[yyj3642] = Container{} + yyv3661[yyj3661] = Container{} } else { - yyv3645 := &yyv3642[yyj3642] - yyv3645.CodecDecodeSelf(d) + yyv3664 := &yyv3661[yyj3661] + yyv3664.CodecDecodeSelf(d) } } else { @@ -45542,17 +45815,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3642 < len(yyv3642) { - yyv3642 = yyv3642[:yyj3642] - yyc3642 = true - } else if yyj3642 == 0 && yyv3642 == nil { - yyv3642 = []Container{} - yyc3642 = true + if yyj3661 < len(yyv3661) { + yyv3661 = yyv3661[:yyj3661] + yyc3661 = true + } else if yyj3661 == 0 && yyv3661 == nil { + yyv3661 = []Container{} + yyc3661 = true } } - yyh3642.End() - if yyc3642 { - *v = yyv3642 + yyh3661.End() + if yyc3661 { + *v = yyv3661 } } @@ -45561,10 +45834,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3646 := range v { + for _, yyv3665 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3647 := &yyv3646 - yy3647.CodecEncodeSelf(e) + yy3666 := &yyv3665 + yy3666.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45574,83 +45847,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3648 := *v - yyh3648, yyl3648 := z.DecSliceHelperStart() - var yyc3648 bool - if yyl3648 == 0 { - if yyv3648 == nil { - yyv3648 = []LocalObjectReference{} - yyc3648 = true - } else if len(yyv3648) != 0 { - yyv3648 = yyv3648[:0] - yyc3648 = true + yyv3667 := *v + yyh3667, yyl3667 := z.DecSliceHelperStart() + var yyc3667 bool + if yyl3667 == 0 { + if yyv3667 == nil { + yyv3667 = []LocalObjectReference{} + yyc3667 = true + } else if len(yyv3667) != 0 { + yyv3667 = yyv3667[:0] + yyc3667 = true } - } else if yyl3648 > 0 { - var yyrr3648, yyrl3648 int - var yyrt3648 bool - if yyl3648 > cap(yyv3648) { + } else if yyl3667 > 0 { + var yyrr3667, yyrl3667 int + var yyrt3667 bool + if yyl3667 > cap(yyv3667) { - yyrg3648 := len(yyv3648) > 0 - yyv23648 := yyv3648 - yyrl3648, yyrt3648 = z.DecInferLen(yyl3648, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3648 { - if yyrl3648 <= cap(yyv3648) { - yyv3648 = yyv3648[:yyrl3648] + yyrg3667 := len(yyv3667) > 0 + yyv23667 := yyv3667 + yyrl3667, yyrt3667 = z.DecInferLen(yyl3667, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3667 { + if yyrl3667 <= cap(yyv3667) { + yyv3667 = yyv3667[:yyrl3667] } else { - yyv3648 = make([]LocalObjectReference, yyrl3648) + yyv3667 = make([]LocalObjectReference, yyrl3667) } } else { - yyv3648 = make([]LocalObjectReference, yyrl3648) + yyv3667 = make([]LocalObjectReference, yyrl3667) } - yyc3648 = true - yyrr3648 = len(yyv3648) - if yyrg3648 { - copy(yyv3648, yyv23648) + yyc3667 = true + yyrr3667 = len(yyv3667) + if yyrg3667 { + copy(yyv3667, yyv23667) } - } else if yyl3648 != len(yyv3648) { - yyv3648 = yyv3648[:yyl3648] - yyc3648 = true + } else if yyl3667 != len(yyv3667) { + yyv3667 = yyv3667[:yyl3667] + yyc3667 = true } - yyj3648 := 0 - for ; yyj3648 < yyrr3648; yyj3648++ { - yyh3648.ElemContainerState(yyj3648) + yyj3667 := 0 + for ; yyj3667 < yyrr3667; yyj3667++ { + yyh3667.ElemContainerState(yyj3667) if r.TryDecodeAsNil() { - yyv3648[yyj3648] = LocalObjectReference{} + yyv3667[yyj3667] = LocalObjectReference{} } else { - yyv3649 := &yyv3648[yyj3648] - yyv3649.CodecDecodeSelf(d) + yyv3668 := &yyv3667[yyj3667] + yyv3668.CodecDecodeSelf(d) } } - if yyrt3648 { - for ; yyj3648 < yyl3648; yyj3648++ { - yyv3648 = append(yyv3648, LocalObjectReference{}) - yyh3648.ElemContainerState(yyj3648) + if yyrt3667 { + for ; yyj3667 < yyl3667; yyj3667++ { + yyv3667 = append(yyv3667, LocalObjectReference{}) + yyh3667.ElemContainerState(yyj3667) if r.TryDecodeAsNil() { - yyv3648[yyj3648] = LocalObjectReference{} + yyv3667[yyj3667] = LocalObjectReference{} } else { - yyv3650 := &yyv3648[yyj3648] - yyv3650.CodecDecodeSelf(d) + yyv3669 := &yyv3667[yyj3667] + yyv3669.CodecDecodeSelf(d) } } } } else { - yyj3648 := 0 - for ; !r.CheckBreak(); yyj3648++ { + yyj3667 := 0 + for ; !r.CheckBreak(); yyj3667++ { - if yyj3648 >= len(yyv3648) { - yyv3648 = append(yyv3648, LocalObjectReference{}) // var yyz3648 LocalObjectReference - yyc3648 = true + if yyj3667 >= len(yyv3667) { + yyv3667 = append(yyv3667, LocalObjectReference{}) // var yyz3667 LocalObjectReference + yyc3667 = true } - yyh3648.ElemContainerState(yyj3648) - if yyj3648 < len(yyv3648) { + yyh3667.ElemContainerState(yyj3667) + if yyj3667 < len(yyv3667) { if r.TryDecodeAsNil() { - yyv3648[yyj3648] = LocalObjectReference{} + yyv3667[yyj3667] = LocalObjectReference{} } else { - yyv3651 := &yyv3648[yyj3648] - yyv3651.CodecDecodeSelf(d) + yyv3670 := &yyv3667[yyj3667] + yyv3670.CodecDecodeSelf(d) } } else { @@ -45658,17 +45931,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3648 < len(yyv3648) { - yyv3648 = yyv3648[:yyj3648] - yyc3648 = true - } else if yyj3648 == 0 && yyv3648 == nil { - yyv3648 = []LocalObjectReference{} - yyc3648 = true + if yyj3667 < len(yyv3667) { + yyv3667 = yyv3667[:yyj3667] + yyc3667 = true + } else if yyj3667 == 0 && yyv3667 == nil { + yyv3667 = []LocalObjectReference{} + yyc3667 = true } } - yyh3648.End() - if yyc3648 { - *v = yyv3648 + yyh3667.End() + if yyc3667 { + *v = yyv3667 } } @@ -45677,10 +45950,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3652 := range v { + for _, yyv3671 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3653 := &yyv3652 - yy3653.CodecEncodeSelf(e) + yy3672 := &yyv3671 + yy3672.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45690,83 +45963,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3654 := *v - yyh3654, yyl3654 := z.DecSliceHelperStart() - var yyc3654 bool - if yyl3654 == 0 { - if yyv3654 == nil { - yyv3654 = []PodCondition{} - yyc3654 = true - } else if len(yyv3654) != 0 { - yyv3654 = yyv3654[:0] - yyc3654 = true + yyv3673 := *v + yyh3673, yyl3673 := z.DecSliceHelperStart() + var yyc3673 bool + if yyl3673 == 0 { + if yyv3673 == nil { + yyv3673 = []PodCondition{} + yyc3673 = true + } else if len(yyv3673) != 0 { + yyv3673 = yyv3673[:0] + yyc3673 = true } - } else if yyl3654 > 0 { - var yyrr3654, yyrl3654 int - var yyrt3654 bool - if yyl3654 > cap(yyv3654) { + } else if yyl3673 > 0 { + var yyrr3673, yyrl3673 int + var yyrt3673 bool + if yyl3673 > cap(yyv3673) { - yyrg3654 := len(yyv3654) > 0 - yyv23654 := yyv3654 - yyrl3654, yyrt3654 = z.DecInferLen(yyl3654, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3654 { - if yyrl3654 <= cap(yyv3654) { - yyv3654 = yyv3654[:yyrl3654] + yyrg3673 := len(yyv3673) > 0 + yyv23673 := yyv3673 + yyrl3673, yyrt3673 = z.DecInferLen(yyl3673, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3673 { + if yyrl3673 <= cap(yyv3673) { + yyv3673 = yyv3673[:yyrl3673] } else { - yyv3654 = make([]PodCondition, yyrl3654) + yyv3673 = make([]PodCondition, yyrl3673) } } else { - yyv3654 = make([]PodCondition, yyrl3654) + yyv3673 = make([]PodCondition, yyrl3673) } - yyc3654 = true - yyrr3654 = len(yyv3654) - if yyrg3654 { - copy(yyv3654, yyv23654) + yyc3673 = true + yyrr3673 = len(yyv3673) + if yyrg3673 { + copy(yyv3673, yyv23673) } - } else if yyl3654 != len(yyv3654) { - yyv3654 = yyv3654[:yyl3654] - yyc3654 = true + } else if yyl3673 != len(yyv3673) { + yyv3673 = yyv3673[:yyl3673] + yyc3673 = true } - yyj3654 := 0 - for ; yyj3654 < yyrr3654; yyj3654++ { - yyh3654.ElemContainerState(yyj3654) + yyj3673 := 0 + for ; yyj3673 < yyrr3673; yyj3673++ { + yyh3673.ElemContainerState(yyj3673) if r.TryDecodeAsNil() { - yyv3654[yyj3654] = PodCondition{} + yyv3673[yyj3673] = PodCondition{} } else { - yyv3655 := &yyv3654[yyj3654] - yyv3655.CodecDecodeSelf(d) + yyv3674 := &yyv3673[yyj3673] + yyv3674.CodecDecodeSelf(d) } } - if yyrt3654 { - for ; yyj3654 < yyl3654; yyj3654++ { - yyv3654 = append(yyv3654, PodCondition{}) - yyh3654.ElemContainerState(yyj3654) + if yyrt3673 { + for ; yyj3673 < yyl3673; yyj3673++ { + yyv3673 = append(yyv3673, PodCondition{}) + yyh3673.ElemContainerState(yyj3673) if r.TryDecodeAsNil() { - yyv3654[yyj3654] = PodCondition{} + yyv3673[yyj3673] = PodCondition{} } else { - yyv3656 := &yyv3654[yyj3654] - yyv3656.CodecDecodeSelf(d) + yyv3675 := &yyv3673[yyj3673] + yyv3675.CodecDecodeSelf(d) } } } } else { - yyj3654 := 0 - for ; !r.CheckBreak(); yyj3654++ { + yyj3673 := 0 + for ; !r.CheckBreak(); yyj3673++ { - if yyj3654 >= len(yyv3654) { - yyv3654 = append(yyv3654, PodCondition{}) // var yyz3654 PodCondition - yyc3654 = true + if yyj3673 >= len(yyv3673) { + yyv3673 = append(yyv3673, PodCondition{}) // var yyz3673 PodCondition + yyc3673 = true } - yyh3654.ElemContainerState(yyj3654) - if yyj3654 < len(yyv3654) { + yyh3673.ElemContainerState(yyj3673) + if yyj3673 < len(yyv3673) { if r.TryDecodeAsNil() { - yyv3654[yyj3654] = PodCondition{} + yyv3673[yyj3673] = PodCondition{} } else { - yyv3657 := &yyv3654[yyj3654] - yyv3657.CodecDecodeSelf(d) + yyv3676 := &yyv3673[yyj3673] + yyv3676.CodecDecodeSelf(d) } } else { @@ -45774,17 +46047,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3654 < len(yyv3654) { - yyv3654 = yyv3654[:yyj3654] - yyc3654 = true - } else if yyj3654 == 0 && yyv3654 == nil { - yyv3654 = []PodCondition{} - yyc3654 = true + if yyj3673 < len(yyv3673) { + yyv3673 = yyv3673[:yyj3673] + yyc3673 = true + } else if yyj3673 == 0 && yyv3673 == nil { + yyv3673 = []PodCondition{} + yyc3673 = true } } - yyh3654.End() - if yyc3654 { - *v = yyv3654 + yyh3673.End() + if yyc3673 { + *v = yyv3673 } } @@ -45793,10 +46066,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3658 := range v { + for _, yyv3677 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3659 := &yyv3658 - yy3659.CodecEncodeSelf(e) + yy3678 := &yyv3677 + yy3678.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45806,83 +46079,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3660 := *v - yyh3660, yyl3660 := z.DecSliceHelperStart() - var yyc3660 bool - if yyl3660 == 0 { - if yyv3660 == nil { - yyv3660 = []ContainerStatus{} - yyc3660 = true - } else if len(yyv3660) != 0 { - yyv3660 = yyv3660[:0] - yyc3660 = true + yyv3679 := *v + yyh3679, yyl3679 := z.DecSliceHelperStart() + var yyc3679 bool + if yyl3679 == 0 { + if yyv3679 == nil { + yyv3679 = []ContainerStatus{} + yyc3679 = true + } else if len(yyv3679) != 0 { + yyv3679 = yyv3679[:0] + yyc3679 = true } - } else if yyl3660 > 0 { - var yyrr3660, yyrl3660 int - var yyrt3660 bool - if yyl3660 > cap(yyv3660) { + } else if yyl3679 > 0 { + var yyrr3679, yyrl3679 int + var yyrt3679 bool + if yyl3679 > cap(yyv3679) { - yyrg3660 := len(yyv3660) > 0 - yyv23660 := yyv3660 - yyrl3660, yyrt3660 = z.DecInferLen(yyl3660, z.DecBasicHandle().MaxInitLen, 120) - if yyrt3660 { - if yyrl3660 <= cap(yyv3660) { - yyv3660 = yyv3660[:yyrl3660] + yyrg3679 := len(yyv3679) > 0 + yyv23679 := yyv3679 + yyrl3679, yyrt3679 = z.DecInferLen(yyl3679, z.DecBasicHandle().MaxInitLen, 120) + if yyrt3679 { + if yyrl3679 <= cap(yyv3679) { + yyv3679 = yyv3679[:yyrl3679] } else { - yyv3660 = make([]ContainerStatus, yyrl3660) + yyv3679 = make([]ContainerStatus, yyrl3679) } } else { - yyv3660 = make([]ContainerStatus, yyrl3660) + yyv3679 = make([]ContainerStatus, yyrl3679) } - yyc3660 = true - yyrr3660 = len(yyv3660) - if yyrg3660 { - copy(yyv3660, yyv23660) + yyc3679 = true + yyrr3679 = len(yyv3679) + if yyrg3679 { + copy(yyv3679, yyv23679) } - } else if yyl3660 != len(yyv3660) { - yyv3660 = yyv3660[:yyl3660] - yyc3660 = true + } else if yyl3679 != len(yyv3679) { + yyv3679 = yyv3679[:yyl3679] + yyc3679 = true } - yyj3660 := 0 - for ; yyj3660 < yyrr3660; yyj3660++ { - yyh3660.ElemContainerState(yyj3660) + yyj3679 := 0 + for ; yyj3679 < yyrr3679; yyj3679++ { + yyh3679.ElemContainerState(yyj3679) if r.TryDecodeAsNil() { - yyv3660[yyj3660] = ContainerStatus{} + yyv3679[yyj3679] = ContainerStatus{} } else { - yyv3661 := &yyv3660[yyj3660] - yyv3661.CodecDecodeSelf(d) + yyv3680 := &yyv3679[yyj3679] + yyv3680.CodecDecodeSelf(d) } } - if yyrt3660 { - for ; yyj3660 < yyl3660; yyj3660++ { - yyv3660 = append(yyv3660, ContainerStatus{}) - yyh3660.ElemContainerState(yyj3660) + if yyrt3679 { + for ; yyj3679 < yyl3679; yyj3679++ { + yyv3679 = append(yyv3679, ContainerStatus{}) + yyh3679.ElemContainerState(yyj3679) if r.TryDecodeAsNil() { - yyv3660[yyj3660] = ContainerStatus{} + yyv3679[yyj3679] = ContainerStatus{} } else { - yyv3662 := &yyv3660[yyj3660] - yyv3662.CodecDecodeSelf(d) + yyv3681 := &yyv3679[yyj3679] + yyv3681.CodecDecodeSelf(d) } } } } else { - yyj3660 := 0 - for ; !r.CheckBreak(); yyj3660++ { + yyj3679 := 0 + for ; !r.CheckBreak(); yyj3679++ { - if yyj3660 >= len(yyv3660) { - yyv3660 = append(yyv3660, ContainerStatus{}) // var yyz3660 ContainerStatus - yyc3660 = true + if yyj3679 >= len(yyv3679) { + yyv3679 = append(yyv3679, ContainerStatus{}) // var yyz3679 ContainerStatus + yyc3679 = true } - yyh3660.ElemContainerState(yyj3660) - if yyj3660 < len(yyv3660) { + yyh3679.ElemContainerState(yyj3679) + if yyj3679 < len(yyv3679) { if r.TryDecodeAsNil() { - yyv3660[yyj3660] = ContainerStatus{} + yyv3679[yyj3679] = ContainerStatus{} } else { - yyv3663 := &yyv3660[yyj3660] - yyv3663.CodecDecodeSelf(d) + yyv3682 := &yyv3679[yyj3679] + yyv3682.CodecDecodeSelf(d) } } else { @@ -45890,17 +46163,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3660 < len(yyv3660) { - yyv3660 = yyv3660[:yyj3660] - yyc3660 = true - } else if yyj3660 == 0 && yyv3660 == nil { - yyv3660 = []ContainerStatus{} - yyc3660 = true + if yyj3679 < len(yyv3679) { + yyv3679 = yyv3679[:yyj3679] + yyc3679 = true + } else if yyj3679 == 0 && yyv3679 == nil { + yyv3679 = []ContainerStatus{} + yyc3679 = true } } - yyh3660.End() - if yyc3660 { - *v = yyv3660 + yyh3679.End() + if yyc3679 { + *v = yyv3679 } } @@ -45909,10 +46182,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3664 := range v { + for _, yyv3683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3665 := &yyv3664 - yy3665.CodecEncodeSelf(e) + yy3684 := &yyv3683 + yy3684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45922,83 +46195,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3666 := *v - yyh3666, yyl3666 := z.DecSliceHelperStart() - var yyc3666 bool - if yyl3666 == 0 { - if yyv3666 == nil { - yyv3666 = []Pod{} - yyc3666 = true - } else if len(yyv3666) != 0 { - yyv3666 = yyv3666[:0] - yyc3666 = true + yyv3685 := *v + yyh3685, yyl3685 := z.DecSliceHelperStart() + var yyc3685 bool + if yyl3685 == 0 { + if yyv3685 == nil { + yyv3685 = []Pod{} + yyc3685 = true + } else if len(yyv3685) != 0 { + yyv3685 = yyv3685[:0] + yyc3685 = true } - } else if yyl3666 > 0 { - var yyrr3666, yyrl3666 int - var yyrt3666 bool - if yyl3666 > cap(yyv3666) { + } else if yyl3685 > 0 { + var yyrr3685, yyrl3685 int + var yyrt3685 bool + if yyl3685 > cap(yyv3685) { - yyrg3666 := len(yyv3666) > 0 - yyv23666 := yyv3666 - yyrl3666, yyrt3666 = z.DecInferLen(yyl3666, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3666 { - if yyrl3666 <= cap(yyv3666) { - yyv3666 = yyv3666[:yyrl3666] + yyrg3685 := len(yyv3685) > 0 + yyv23685 := yyv3685 + yyrl3685, yyrt3685 = z.DecInferLen(yyl3685, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3685 { + if yyrl3685 <= cap(yyv3685) { + yyv3685 = yyv3685[:yyrl3685] } else { - yyv3666 = make([]Pod, yyrl3666) + yyv3685 = make([]Pod, yyrl3685) } } else { - yyv3666 = make([]Pod, yyrl3666) + yyv3685 = make([]Pod, yyrl3685) } - yyc3666 = true - yyrr3666 = len(yyv3666) - if yyrg3666 { - copy(yyv3666, yyv23666) + yyc3685 = true + yyrr3685 = len(yyv3685) + if yyrg3685 { + copy(yyv3685, yyv23685) } - } else if yyl3666 != len(yyv3666) { - yyv3666 = yyv3666[:yyl3666] - yyc3666 = true + } else if yyl3685 != len(yyv3685) { + yyv3685 = yyv3685[:yyl3685] + yyc3685 = true } - yyj3666 := 0 - for ; yyj3666 < yyrr3666; yyj3666++ { - yyh3666.ElemContainerState(yyj3666) + yyj3685 := 0 + for ; yyj3685 < yyrr3685; yyj3685++ { + yyh3685.ElemContainerState(yyj3685) if r.TryDecodeAsNil() { - yyv3666[yyj3666] = Pod{} + yyv3685[yyj3685] = Pod{} } else { - yyv3667 := &yyv3666[yyj3666] - yyv3667.CodecDecodeSelf(d) + yyv3686 := &yyv3685[yyj3685] + yyv3686.CodecDecodeSelf(d) } } - if yyrt3666 { - for ; yyj3666 < yyl3666; yyj3666++ { - yyv3666 = append(yyv3666, Pod{}) - yyh3666.ElemContainerState(yyj3666) + if yyrt3685 { + for ; yyj3685 < yyl3685; yyj3685++ { + yyv3685 = append(yyv3685, Pod{}) + yyh3685.ElemContainerState(yyj3685) if r.TryDecodeAsNil() { - yyv3666[yyj3666] = Pod{} + yyv3685[yyj3685] = Pod{} } else { - yyv3668 := &yyv3666[yyj3666] - yyv3668.CodecDecodeSelf(d) + yyv3687 := &yyv3685[yyj3685] + yyv3687.CodecDecodeSelf(d) } } } } else { - yyj3666 := 0 - for ; !r.CheckBreak(); yyj3666++ { + yyj3685 := 0 + for ; !r.CheckBreak(); yyj3685++ { - if yyj3666 >= len(yyv3666) { - yyv3666 = append(yyv3666, Pod{}) // var yyz3666 Pod - yyc3666 = true + if yyj3685 >= len(yyv3685) { + yyv3685 = append(yyv3685, Pod{}) // var yyz3685 Pod + yyc3685 = true } - yyh3666.ElemContainerState(yyj3666) - if yyj3666 < len(yyv3666) { + yyh3685.ElemContainerState(yyj3685) + if yyj3685 < len(yyv3685) { if r.TryDecodeAsNil() { - yyv3666[yyj3666] = Pod{} + yyv3685[yyj3685] = Pod{} } else { - yyv3669 := &yyv3666[yyj3666] - yyv3669.CodecDecodeSelf(d) + yyv3688 := &yyv3685[yyj3685] + yyv3688.CodecDecodeSelf(d) } } else { @@ -46006,17 +46279,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj3666 < len(yyv3666) { - yyv3666 = yyv3666[:yyj3666] - yyc3666 = true - } else if yyj3666 == 0 && yyv3666 == nil { - yyv3666 = []Pod{} - yyc3666 = true + if yyj3685 < len(yyv3685) { + yyv3685 = yyv3685[:yyj3685] + yyc3685 = true + } else if yyj3685 == 0 && yyv3685 == nil { + yyv3685 = []Pod{} + yyc3685 = true } } - yyh3666.End() - if yyc3666 { - *v = yyv3666 + yyh3685.End() + if yyc3685 { + *v = yyv3685 } } @@ -46025,10 +46298,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3670 := range v { + for _, yyv3689 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3671 := &yyv3670 - yy3671.CodecEncodeSelf(e) + yy3690 := &yyv3689 + yy3690.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46038,83 +46311,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3672 := *v - yyh3672, yyl3672 := z.DecSliceHelperStart() - var yyc3672 bool - if yyl3672 == 0 { - if yyv3672 == nil { - yyv3672 = []PodTemplate{} - yyc3672 = true - } else if len(yyv3672) != 0 { - yyv3672 = yyv3672[:0] - yyc3672 = true + yyv3691 := *v + yyh3691, yyl3691 := z.DecSliceHelperStart() + var yyc3691 bool + if yyl3691 == 0 { + if yyv3691 == nil { + yyv3691 = []PodTemplate{} + yyc3691 = true + } else if len(yyv3691) != 0 { + yyv3691 = yyv3691[:0] + yyc3691 = true } - } else if yyl3672 > 0 { - var yyrr3672, yyrl3672 int - var yyrt3672 bool - if yyl3672 > cap(yyv3672) { + } else if yyl3691 > 0 { + var yyrr3691, yyrl3691 int + var yyrt3691 bool + if yyl3691 > cap(yyv3691) { - yyrg3672 := len(yyv3672) > 0 - yyv23672 := yyv3672 - yyrl3672, yyrt3672 = z.DecInferLen(yyl3672, z.DecBasicHandle().MaxInitLen, 544) - if yyrt3672 { - if yyrl3672 <= cap(yyv3672) { - yyv3672 = yyv3672[:yyrl3672] + yyrg3691 := len(yyv3691) > 0 + yyv23691 := yyv3691 + yyrl3691, yyrt3691 = z.DecInferLen(yyl3691, z.DecBasicHandle().MaxInitLen, 544) + if yyrt3691 { + if yyrl3691 <= cap(yyv3691) { + yyv3691 = yyv3691[:yyrl3691] } else { - yyv3672 = make([]PodTemplate, yyrl3672) + yyv3691 = make([]PodTemplate, yyrl3691) } } else { - yyv3672 = make([]PodTemplate, yyrl3672) + yyv3691 = make([]PodTemplate, yyrl3691) } - yyc3672 = true - yyrr3672 = len(yyv3672) - if yyrg3672 { - copy(yyv3672, yyv23672) + yyc3691 = true + yyrr3691 = len(yyv3691) + if yyrg3691 { + copy(yyv3691, yyv23691) } - } else if yyl3672 != len(yyv3672) { - yyv3672 = yyv3672[:yyl3672] - yyc3672 = true + } else if yyl3691 != len(yyv3691) { + yyv3691 = yyv3691[:yyl3691] + yyc3691 = true } - yyj3672 := 0 - for ; yyj3672 < yyrr3672; yyj3672++ { - yyh3672.ElemContainerState(yyj3672) + yyj3691 := 0 + for ; yyj3691 < yyrr3691; yyj3691++ { + yyh3691.ElemContainerState(yyj3691) if r.TryDecodeAsNil() { - yyv3672[yyj3672] = PodTemplate{} + yyv3691[yyj3691] = PodTemplate{} } else { - yyv3673 := &yyv3672[yyj3672] - yyv3673.CodecDecodeSelf(d) + yyv3692 := &yyv3691[yyj3691] + yyv3692.CodecDecodeSelf(d) } } - if yyrt3672 { - for ; yyj3672 < yyl3672; yyj3672++ { - yyv3672 = append(yyv3672, PodTemplate{}) - yyh3672.ElemContainerState(yyj3672) + if yyrt3691 { + for ; yyj3691 < yyl3691; yyj3691++ { + yyv3691 = append(yyv3691, PodTemplate{}) + yyh3691.ElemContainerState(yyj3691) if r.TryDecodeAsNil() { - yyv3672[yyj3672] = PodTemplate{} + yyv3691[yyj3691] = PodTemplate{} } else { - yyv3674 := &yyv3672[yyj3672] - yyv3674.CodecDecodeSelf(d) + yyv3693 := &yyv3691[yyj3691] + yyv3693.CodecDecodeSelf(d) } } } } else { - yyj3672 := 0 - for ; !r.CheckBreak(); yyj3672++ { + yyj3691 := 0 + for ; !r.CheckBreak(); yyj3691++ { - if yyj3672 >= len(yyv3672) { - yyv3672 = append(yyv3672, PodTemplate{}) // var yyz3672 PodTemplate - yyc3672 = true + if yyj3691 >= len(yyv3691) { + yyv3691 = append(yyv3691, PodTemplate{}) // var yyz3691 PodTemplate + yyc3691 = true } - yyh3672.ElemContainerState(yyj3672) - if yyj3672 < len(yyv3672) { + yyh3691.ElemContainerState(yyj3691) + if yyj3691 < len(yyv3691) { if r.TryDecodeAsNil() { - yyv3672[yyj3672] = PodTemplate{} + yyv3691[yyj3691] = PodTemplate{} } else { - yyv3675 := &yyv3672[yyj3672] - yyv3675.CodecDecodeSelf(d) + yyv3694 := &yyv3691[yyj3691] + yyv3694.CodecDecodeSelf(d) } } else { @@ -46122,17 +46395,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3672 < len(yyv3672) { - yyv3672 = yyv3672[:yyj3672] - yyc3672 = true - } else if yyj3672 == 0 && yyv3672 == nil { - yyv3672 = []PodTemplate{} - yyc3672 = true + if yyj3691 < len(yyv3691) { + yyv3691 = yyv3691[:yyj3691] + yyc3691 = true + } else if yyj3691 == 0 && yyv3691 == nil { + yyv3691 = []PodTemplate{} + yyc3691 = true } } - yyh3672.End() - if yyc3672 { - *v = yyv3672 + yyh3691.End() + if yyc3691 { + *v = yyv3691 } } @@ -46141,10 +46414,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3676 := range v { + for _, yyv3695 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3677 := &yyv3676 - yy3677.CodecEncodeSelf(e) + yy3696 := &yyv3695 + yy3696.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46154,83 +46427,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3678 := *v - yyh3678, yyl3678 := z.DecSliceHelperStart() - var yyc3678 bool - if yyl3678 == 0 { - if yyv3678 == nil { - yyv3678 = []ReplicationController{} - yyc3678 = true - } else if len(yyv3678) != 0 { - yyv3678 = yyv3678[:0] - yyc3678 = true + yyv3697 := *v + yyh3697, yyl3697 := z.DecSliceHelperStart() + var yyc3697 bool + if yyl3697 == 0 { + if yyv3697 == nil { + yyv3697 = []ReplicationController{} + yyc3697 = true + } else if len(yyv3697) != 0 { + yyv3697 = yyv3697[:0] + yyc3697 = true } - } else if yyl3678 > 0 { - var yyrr3678, yyrl3678 int - var yyrt3678 bool - if yyl3678 > cap(yyv3678) { + } else if yyl3697 > 0 { + var yyrr3697, yyrl3697 int + var yyrt3697 bool + if yyl3697 > cap(yyv3697) { - yyrg3678 := len(yyv3678) > 0 - yyv23678 := yyv3678 - yyrl3678, yyrt3678 = z.DecInferLen(yyl3678, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3678 { - if yyrl3678 <= cap(yyv3678) { - yyv3678 = yyv3678[:yyrl3678] + yyrg3697 := len(yyv3697) > 0 + yyv23697 := yyv3697 + yyrl3697, yyrt3697 = z.DecInferLen(yyl3697, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3697 { + if yyrl3697 <= cap(yyv3697) { + yyv3697 = yyv3697[:yyrl3697] } else { - yyv3678 = make([]ReplicationController, yyrl3678) + yyv3697 = make([]ReplicationController, yyrl3697) } } else { - yyv3678 = make([]ReplicationController, yyrl3678) + yyv3697 = make([]ReplicationController, yyrl3697) } - yyc3678 = true - yyrr3678 = len(yyv3678) - if yyrg3678 { - copy(yyv3678, yyv23678) + yyc3697 = true + yyrr3697 = len(yyv3697) + if yyrg3697 { + copy(yyv3697, yyv23697) } - } else if yyl3678 != len(yyv3678) { - yyv3678 = yyv3678[:yyl3678] - yyc3678 = true + } else if yyl3697 != len(yyv3697) { + yyv3697 = yyv3697[:yyl3697] + yyc3697 = true } - yyj3678 := 0 - for ; yyj3678 < yyrr3678; yyj3678++ { - yyh3678.ElemContainerState(yyj3678) + yyj3697 := 0 + for ; yyj3697 < yyrr3697; yyj3697++ { + yyh3697.ElemContainerState(yyj3697) if r.TryDecodeAsNil() { - yyv3678[yyj3678] = ReplicationController{} + yyv3697[yyj3697] = ReplicationController{} } else { - yyv3679 := &yyv3678[yyj3678] - yyv3679.CodecDecodeSelf(d) + yyv3698 := &yyv3697[yyj3697] + yyv3698.CodecDecodeSelf(d) } } - if yyrt3678 { - for ; yyj3678 < yyl3678; yyj3678++ { - yyv3678 = append(yyv3678, ReplicationController{}) - yyh3678.ElemContainerState(yyj3678) + if yyrt3697 { + for ; yyj3697 < yyl3697; yyj3697++ { + yyv3697 = append(yyv3697, ReplicationController{}) + yyh3697.ElemContainerState(yyj3697) if r.TryDecodeAsNil() { - yyv3678[yyj3678] = ReplicationController{} + yyv3697[yyj3697] = ReplicationController{} } else { - yyv3680 := &yyv3678[yyj3678] - yyv3680.CodecDecodeSelf(d) + yyv3699 := &yyv3697[yyj3697] + yyv3699.CodecDecodeSelf(d) } } } } else { - yyj3678 := 0 - for ; !r.CheckBreak(); yyj3678++ { + yyj3697 := 0 + for ; !r.CheckBreak(); yyj3697++ { - if yyj3678 >= len(yyv3678) { - yyv3678 = append(yyv3678, ReplicationController{}) // var yyz3678 ReplicationController - yyc3678 = true + if yyj3697 >= len(yyv3697) { + yyv3697 = append(yyv3697, ReplicationController{}) // var yyz3697 ReplicationController + yyc3697 = true } - yyh3678.ElemContainerState(yyj3678) - if yyj3678 < len(yyv3678) { + yyh3697.ElemContainerState(yyj3697) + if yyj3697 < len(yyv3697) { if r.TryDecodeAsNil() { - yyv3678[yyj3678] = ReplicationController{} + yyv3697[yyj3697] = ReplicationController{} } else { - yyv3681 := &yyv3678[yyj3678] - yyv3681.CodecDecodeSelf(d) + yyv3700 := &yyv3697[yyj3697] + yyv3700.CodecDecodeSelf(d) } } else { @@ -46238,17 +46511,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3678 < len(yyv3678) { - yyv3678 = yyv3678[:yyj3678] - yyc3678 = true - } else if yyj3678 == 0 && yyv3678 == nil { - yyv3678 = []ReplicationController{} - yyc3678 = true + if yyj3697 < len(yyv3697) { + yyv3697 = yyv3697[:yyj3697] + yyc3697 = true + } else if yyj3697 == 0 && yyv3697 == nil { + yyv3697 = []ReplicationController{} + yyc3697 = true } } - yyh3678.End() - if yyc3678 { - *v = yyv3678 + yyh3697.End() + if yyc3697 { + *v = yyv3697 } } @@ -46257,10 +46530,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3682 := range v { + for _, yyv3701 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3683 := &yyv3682 - yy3683.CodecEncodeSelf(e) + yy3702 := &yyv3701 + yy3702.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46270,83 +46543,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3684 := *v - yyh3684, yyl3684 := z.DecSliceHelperStart() - var yyc3684 bool - if yyl3684 == 0 { - if yyv3684 == nil { - yyv3684 = []LoadBalancerIngress{} - yyc3684 = true - } else if len(yyv3684) != 0 { - yyv3684 = yyv3684[:0] - yyc3684 = true + yyv3703 := *v + yyh3703, yyl3703 := z.DecSliceHelperStart() + var yyc3703 bool + if yyl3703 == 0 { + if yyv3703 == nil { + yyv3703 = []LoadBalancerIngress{} + yyc3703 = true + } else if len(yyv3703) != 0 { + yyv3703 = yyv3703[:0] + yyc3703 = true } - } else if yyl3684 > 0 { - var yyrr3684, yyrl3684 int - var yyrt3684 bool - if yyl3684 > cap(yyv3684) { + } else if yyl3703 > 0 { + var yyrr3703, yyrl3703 int + var yyrt3703 bool + if yyl3703 > cap(yyv3703) { - yyrg3684 := len(yyv3684) > 0 - yyv23684 := yyv3684 - yyrl3684, yyrt3684 = z.DecInferLen(yyl3684, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3684 { - if yyrl3684 <= cap(yyv3684) { - yyv3684 = yyv3684[:yyrl3684] + yyrg3703 := len(yyv3703) > 0 + yyv23703 := yyv3703 + yyrl3703, yyrt3703 = z.DecInferLen(yyl3703, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3703 { + if yyrl3703 <= cap(yyv3703) { + yyv3703 = yyv3703[:yyrl3703] } else { - yyv3684 = make([]LoadBalancerIngress, yyrl3684) + yyv3703 = make([]LoadBalancerIngress, yyrl3703) } } else { - yyv3684 = make([]LoadBalancerIngress, yyrl3684) + yyv3703 = make([]LoadBalancerIngress, yyrl3703) } - yyc3684 = true - yyrr3684 = len(yyv3684) - if yyrg3684 { - copy(yyv3684, yyv23684) + yyc3703 = true + yyrr3703 = len(yyv3703) + if yyrg3703 { + copy(yyv3703, yyv23703) } - } else if yyl3684 != len(yyv3684) { - yyv3684 = yyv3684[:yyl3684] - yyc3684 = true + } else if yyl3703 != len(yyv3703) { + yyv3703 = yyv3703[:yyl3703] + yyc3703 = true } - yyj3684 := 0 - for ; yyj3684 < yyrr3684; yyj3684++ { - yyh3684.ElemContainerState(yyj3684) + yyj3703 := 0 + for ; yyj3703 < yyrr3703; yyj3703++ { + yyh3703.ElemContainerState(yyj3703) if r.TryDecodeAsNil() { - yyv3684[yyj3684] = LoadBalancerIngress{} + yyv3703[yyj3703] = LoadBalancerIngress{} } else { - yyv3685 := &yyv3684[yyj3684] - yyv3685.CodecDecodeSelf(d) + yyv3704 := &yyv3703[yyj3703] + yyv3704.CodecDecodeSelf(d) } } - if yyrt3684 { - for ; yyj3684 < yyl3684; yyj3684++ { - yyv3684 = append(yyv3684, LoadBalancerIngress{}) - yyh3684.ElemContainerState(yyj3684) + if yyrt3703 { + for ; yyj3703 < yyl3703; yyj3703++ { + yyv3703 = append(yyv3703, LoadBalancerIngress{}) + yyh3703.ElemContainerState(yyj3703) if r.TryDecodeAsNil() { - yyv3684[yyj3684] = LoadBalancerIngress{} + yyv3703[yyj3703] = LoadBalancerIngress{} } else { - yyv3686 := &yyv3684[yyj3684] - yyv3686.CodecDecodeSelf(d) + yyv3705 := &yyv3703[yyj3703] + yyv3705.CodecDecodeSelf(d) } } } } else { - yyj3684 := 0 - for ; !r.CheckBreak(); yyj3684++ { + yyj3703 := 0 + for ; !r.CheckBreak(); yyj3703++ { - if yyj3684 >= len(yyv3684) { - yyv3684 = append(yyv3684, LoadBalancerIngress{}) // var yyz3684 LoadBalancerIngress - yyc3684 = true + if yyj3703 >= len(yyv3703) { + yyv3703 = append(yyv3703, LoadBalancerIngress{}) // var yyz3703 LoadBalancerIngress + yyc3703 = true } - yyh3684.ElemContainerState(yyj3684) - if yyj3684 < len(yyv3684) { + yyh3703.ElemContainerState(yyj3703) + if yyj3703 < len(yyv3703) { if r.TryDecodeAsNil() { - yyv3684[yyj3684] = LoadBalancerIngress{} + yyv3703[yyj3703] = LoadBalancerIngress{} } else { - yyv3687 := &yyv3684[yyj3684] - yyv3687.CodecDecodeSelf(d) + yyv3706 := &yyv3703[yyj3703] + yyv3706.CodecDecodeSelf(d) } } else { @@ -46354,17 +46627,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3684 < len(yyv3684) { - yyv3684 = yyv3684[:yyj3684] - yyc3684 = true - } else if yyj3684 == 0 && yyv3684 == nil { - yyv3684 = []LoadBalancerIngress{} - yyc3684 = true + if yyj3703 < len(yyv3703) { + yyv3703 = yyv3703[:yyj3703] + yyc3703 = true + } else if yyj3703 == 0 && yyv3703 == nil { + yyv3703 = []LoadBalancerIngress{} + yyc3703 = true } } - yyh3684.End() - if yyc3684 { - *v = yyv3684 + yyh3703.End() + if yyc3703 { + *v = yyv3703 } } @@ -46373,10 +46646,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3688 := range v { + for _, yyv3707 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3689 := &yyv3688 - yy3689.CodecEncodeSelf(e) + yy3708 := &yyv3707 + yy3708.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46386,83 +46659,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3690 := *v - yyh3690, yyl3690 := z.DecSliceHelperStart() - var yyc3690 bool - if yyl3690 == 0 { - if yyv3690 == nil { - yyv3690 = []ServicePort{} - yyc3690 = true - } else if len(yyv3690) != 0 { - yyv3690 = yyv3690[:0] - yyc3690 = true + yyv3709 := *v + yyh3709, yyl3709 := z.DecSliceHelperStart() + var yyc3709 bool + if yyl3709 == 0 { + if yyv3709 == nil { + yyv3709 = []ServicePort{} + yyc3709 = true + } else if len(yyv3709) != 0 { + yyv3709 = yyv3709[:0] + yyc3709 = true } - } else if yyl3690 > 0 { - var yyrr3690, yyrl3690 int - var yyrt3690 bool - if yyl3690 > cap(yyv3690) { + } else if yyl3709 > 0 { + var yyrr3709, yyrl3709 int + var yyrt3709 bool + if yyl3709 > cap(yyv3709) { - yyrg3690 := len(yyv3690) > 0 - yyv23690 := yyv3690 - yyrl3690, yyrt3690 = z.DecInferLen(yyl3690, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3690 { - if yyrl3690 <= cap(yyv3690) { - yyv3690 = yyv3690[:yyrl3690] + yyrg3709 := len(yyv3709) > 0 + yyv23709 := yyv3709 + yyrl3709, yyrt3709 = z.DecInferLen(yyl3709, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3709 { + if yyrl3709 <= cap(yyv3709) { + yyv3709 = yyv3709[:yyrl3709] } else { - yyv3690 = make([]ServicePort, yyrl3690) + yyv3709 = make([]ServicePort, yyrl3709) } } else { - yyv3690 = make([]ServicePort, yyrl3690) + yyv3709 = make([]ServicePort, yyrl3709) } - yyc3690 = true - yyrr3690 = len(yyv3690) - if yyrg3690 { - copy(yyv3690, yyv23690) + yyc3709 = true + yyrr3709 = len(yyv3709) + if yyrg3709 { + copy(yyv3709, yyv23709) } - } else if yyl3690 != len(yyv3690) { - yyv3690 = yyv3690[:yyl3690] - yyc3690 = true + } else if yyl3709 != len(yyv3709) { + yyv3709 = yyv3709[:yyl3709] + yyc3709 = true } - yyj3690 := 0 - for ; yyj3690 < yyrr3690; yyj3690++ { - yyh3690.ElemContainerState(yyj3690) + yyj3709 := 0 + for ; yyj3709 < yyrr3709; yyj3709++ { + yyh3709.ElemContainerState(yyj3709) if r.TryDecodeAsNil() { - yyv3690[yyj3690] = ServicePort{} + yyv3709[yyj3709] = ServicePort{} } else { - yyv3691 := &yyv3690[yyj3690] - yyv3691.CodecDecodeSelf(d) + yyv3710 := &yyv3709[yyj3709] + yyv3710.CodecDecodeSelf(d) } } - if yyrt3690 { - for ; yyj3690 < yyl3690; yyj3690++ { - yyv3690 = append(yyv3690, ServicePort{}) - yyh3690.ElemContainerState(yyj3690) + if yyrt3709 { + for ; yyj3709 < yyl3709; yyj3709++ { + yyv3709 = append(yyv3709, ServicePort{}) + yyh3709.ElemContainerState(yyj3709) if r.TryDecodeAsNil() { - yyv3690[yyj3690] = ServicePort{} + yyv3709[yyj3709] = ServicePort{} } else { - yyv3692 := &yyv3690[yyj3690] - yyv3692.CodecDecodeSelf(d) + yyv3711 := &yyv3709[yyj3709] + yyv3711.CodecDecodeSelf(d) } } } } else { - yyj3690 := 0 - for ; !r.CheckBreak(); yyj3690++ { + yyj3709 := 0 + for ; !r.CheckBreak(); yyj3709++ { - if yyj3690 >= len(yyv3690) { - yyv3690 = append(yyv3690, ServicePort{}) // var yyz3690 ServicePort - yyc3690 = true + if yyj3709 >= len(yyv3709) { + yyv3709 = append(yyv3709, ServicePort{}) // var yyz3709 ServicePort + yyc3709 = true } - yyh3690.ElemContainerState(yyj3690) - if yyj3690 < len(yyv3690) { + yyh3709.ElemContainerState(yyj3709) + if yyj3709 < len(yyv3709) { if r.TryDecodeAsNil() { - yyv3690[yyj3690] = ServicePort{} + yyv3709[yyj3709] = ServicePort{} } else { - yyv3693 := &yyv3690[yyj3690] - yyv3693.CodecDecodeSelf(d) + yyv3712 := &yyv3709[yyj3709] + yyv3712.CodecDecodeSelf(d) } } else { @@ -46470,17 +46743,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3690 < len(yyv3690) { - yyv3690 = yyv3690[:yyj3690] - yyc3690 = true - } else if yyj3690 == 0 && yyv3690 == nil { - yyv3690 = []ServicePort{} - yyc3690 = true + if yyj3709 < len(yyv3709) { + yyv3709 = yyv3709[:yyj3709] + yyc3709 = true + } else if yyj3709 == 0 && yyv3709 == nil { + yyv3709 = []ServicePort{} + yyc3709 = true } } - yyh3690.End() - if yyc3690 { - *v = yyv3690 + yyh3709.End() + if yyc3709 { + *v = yyv3709 } } @@ -46489,10 +46762,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3694 := range v { + for _, yyv3713 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3695 := &yyv3694 - yy3695.CodecEncodeSelf(e) + yy3714 := &yyv3713 + yy3714.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46502,83 +46775,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3696 := *v - yyh3696, yyl3696 := z.DecSliceHelperStart() - var yyc3696 bool - if yyl3696 == 0 { - if yyv3696 == nil { - yyv3696 = []Service{} - yyc3696 = true - } else if len(yyv3696) != 0 { - yyv3696 = yyv3696[:0] - yyc3696 = true + yyv3715 := *v + yyh3715, yyl3715 := z.DecSliceHelperStart() + var yyc3715 bool + if yyl3715 == 0 { + if yyv3715 == nil { + yyv3715 = []Service{} + yyc3715 = true + } else if len(yyv3715) != 0 { + yyv3715 = yyv3715[:0] + yyc3715 = true } - } else if yyl3696 > 0 { - var yyrr3696, yyrl3696 int - var yyrt3696 bool - if yyl3696 > cap(yyv3696) { + } else if yyl3715 > 0 { + var yyrr3715, yyrl3715 int + var yyrt3715 bool + if yyl3715 > cap(yyv3715) { - yyrg3696 := len(yyv3696) > 0 - yyv23696 := yyv3696 - yyrl3696, yyrt3696 = z.DecInferLen(yyl3696, z.DecBasicHandle().MaxInitLen, 360) - if yyrt3696 { - if yyrl3696 <= cap(yyv3696) { - yyv3696 = yyv3696[:yyrl3696] + yyrg3715 := len(yyv3715) > 0 + yyv23715 := yyv3715 + yyrl3715, yyrt3715 = z.DecInferLen(yyl3715, z.DecBasicHandle().MaxInitLen, 360) + if yyrt3715 { + if yyrl3715 <= cap(yyv3715) { + yyv3715 = yyv3715[:yyrl3715] } else { - yyv3696 = make([]Service, yyrl3696) + yyv3715 = make([]Service, yyrl3715) } } else { - yyv3696 = make([]Service, yyrl3696) + yyv3715 = make([]Service, yyrl3715) } - yyc3696 = true - yyrr3696 = len(yyv3696) - if yyrg3696 { - copy(yyv3696, yyv23696) + yyc3715 = true + yyrr3715 = len(yyv3715) + if yyrg3715 { + copy(yyv3715, yyv23715) } - } else if yyl3696 != len(yyv3696) { - yyv3696 = yyv3696[:yyl3696] - yyc3696 = true + } else if yyl3715 != len(yyv3715) { + yyv3715 = yyv3715[:yyl3715] + yyc3715 = true } - yyj3696 := 0 - for ; yyj3696 < yyrr3696; yyj3696++ { - yyh3696.ElemContainerState(yyj3696) + yyj3715 := 0 + for ; yyj3715 < yyrr3715; yyj3715++ { + yyh3715.ElemContainerState(yyj3715) if r.TryDecodeAsNil() { - yyv3696[yyj3696] = Service{} + yyv3715[yyj3715] = Service{} } else { - yyv3697 := &yyv3696[yyj3696] - yyv3697.CodecDecodeSelf(d) + yyv3716 := &yyv3715[yyj3715] + yyv3716.CodecDecodeSelf(d) } } - if yyrt3696 { - for ; yyj3696 < yyl3696; yyj3696++ { - yyv3696 = append(yyv3696, Service{}) - yyh3696.ElemContainerState(yyj3696) + if yyrt3715 { + for ; yyj3715 < yyl3715; yyj3715++ { + yyv3715 = append(yyv3715, Service{}) + yyh3715.ElemContainerState(yyj3715) if r.TryDecodeAsNil() { - yyv3696[yyj3696] = Service{} + yyv3715[yyj3715] = Service{} } else { - yyv3698 := &yyv3696[yyj3696] - yyv3698.CodecDecodeSelf(d) + yyv3717 := &yyv3715[yyj3715] + yyv3717.CodecDecodeSelf(d) } } } } else { - yyj3696 := 0 - for ; !r.CheckBreak(); yyj3696++ { + yyj3715 := 0 + for ; !r.CheckBreak(); yyj3715++ { - if yyj3696 >= len(yyv3696) { - yyv3696 = append(yyv3696, Service{}) // var yyz3696 Service - yyc3696 = true + if yyj3715 >= len(yyv3715) { + yyv3715 = append(yyv3715, Service{}) // var yyz3715 Service + yyc3715 = true } - yyh3696.ElemContainerState(yyj3696) - if yyj3696 < len(yyv3696) { + yyh3715.ElemContainerState(yyj3715) + if yyj3715 < len(yyv3715) { if r.TryDecodeAsNil() { - yyv3696[yyj3696] = Service{} + yyv3715[yyj3715] = Service{} } else { - yyv3699 := &yyv3696[yyj3696] - yyv3699.CodecDecodeSelf(d) + yyv3718 := &yyv3715[yyj3715] + yyv3718.CodecDecodeSelf(d) } } else { @@ -46586,17 +46859,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3696 < len(yyv3696) { - yyv3696 = yyv3696[:yyj3696] - yyc3696 = true - } else if yyj3696 == 0 && yyv3696 == nil { - yyv3696 = []Service{} - yyc3696 = true + if yyj3715 < len(yyv3715) { + yyv3715 = yyv3715[:yyj3715] + yyc3715 = true + } else if yyj3715 == 0 && yyv3715 == nil { + yyv3715 = []Service{} + yyc3715 = true } } - yyh3696.End() - if yyc3696 { - *v = yyv3696 + yyh3715.End() + if yyc3715 { + *v = yyv3715 } } @@ -46605,10 +46878,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3700 := range v { + for _, yyv3719 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3701 := &yyv3700 - yy3701.CodecEncodeSelf(e) + yy3720 := &yyv3719 + yy3720.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46618,83 +46891,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3702 := *v - yyh3702, yyl3702 := z.DecSliceHelperStart() - var yyc3702 bool - if yyl3702 == 0 { - if yyv3702 == nil { - yyv3702 = []ObjectReference{} - yyc3702 = true - } else if len(yyv3702) != 0 { - yyv3702 = yyv3702[:0] - yyc3702 = true + yyv3721 := *v + yyh3721, yyl3721 := z.DecSliceHelperStart() + var yyc3721 bool + if yyl3721 == 0 { + if yyv3721 == nil { + yyv3721 = []ObjectReference{} + yyc3721 = true + } else if len(yyv3721) != 0 { + yyv3721 = yyv3721[:0] + yyc3721 = true } - } else if yyl3702 > 0 { - var yyrr3702, yyrl3702 int - var yyrt3702 bool - if yyl3702 > cap(yyv3702) { + } else if yyl3721 > 0 { + var yyrr3721, yyrl3721 int + var yyrt3721 bool + if yyl3721 > cap(yyv3721) { - yyrg3702 := len(yyv3702) > 0 - yyv23702 := yyv3702 - yyrl3702, yyrt3702 = z.DecInferLen(yyl3702, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3702 { - if yyrl3702 <= cap(yyv3702) { - yyv3702 = yyv3702[:yyrl3702] + yyrg3721 := len(yyv3721) > 0 + yyv23721 := yyv3721 + yyrl3721, yyrt3721 = z.DecInferLen(yyl3721, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3721 { + if yyrl3721 <= cap(yyv3721) { + yyv3721 = yyv3721[:yyrl3721] } else { - yyv3702 = make([]ObjectReference, yyrl3702) + yyv3721 = make([]ObjectReference, yyrl3721) } } else { - yyv3702 = make([]ObjectReference, yyrl3702) + yyv3721 = make([]ObjectReference, yyrl3721) } - yyc3702 = true - yyrr3702 = len(yyv3702) - if yyrg3702 { - copy(yyv3702, yyv23702) + yyc3721 = true + yyrr3721 = len(yyv3721) + if yyrg3721 { + copy(yyv3721, yyv23721) } - } else if yyl3702 != len(yyv3702) { - yyv3702 = yyv3702[:yyl3702] - yyc3702 = true + } else if yyl3721 != len(yyv3721) { + yyv3721 = yyv3721[:yyl3721] + yyc3721 = true } - yyj3702 := 0 - for ; yyj3702 < yyrr3702; yyj3702++ { - yyh3702.ElemContainerState(yyj3702) + yyj3721 := 0 + for ; yyj3721 < yyrr3721; yyj3721++ { + yyh3721.ElemContainerState(yyj3721) if r.TryDecodeAsNil() { - yyv3702[yyj3702] = ObjectReference{} + yyv3721[yyj3721] = ObjectReference{} } else { - yyv3703 := &yyv3702[yyj3702] - yyv3703.CodecDecodeSelf(d) + yyv3722 := &yyv3721[yyj3721] + yyv3722.CodecDecodeSelf(d) } } - if yyrt3702 { - for ; yyj3702 < yyl3702; yyj3702++ { - yyv3702 = append(yyv3702, ObjectReference{}) - yyh3702.ElemContainerState(yyj3702) + if yyrt3721 { + for ; yyj3721 < yyl3721; yyj3721++ { + yyv3721 = append(yyv3721, ObjectReference{}) + yyh3721.ElemContainerState(yyj3721) if r.TryDecodeAsNil() { - yyv3702[yyj3702] = ObjectReference{} + yyv3721[yyj3721] = ObjectReference{} } else { - yyv3704 := &yyv3702[yyj3702] - yyv3704.CodecDecodeSelf(d) + yyv3723 := &yyv3721[yyj3721] + yyv3723.CodecDecodeSelf(d) } } } } else { - yyj3702 := 0 - for ; !r.CheckBreak(); yyj3702++ { + yyj3721 := 0 + for ; !r.CheckBreak(); yyj3721++ { - if yyj3702 >= len(yyv3702) { - yyv3702 = append(yyv3702, ObjectReference{}) // var yyz3702 ObjectReference - yyc3702 = true + if yyj3721 >= len(yyv3721) { + yyv3721 = append(yyv3721, ObjectReference{}) // var yyz3721 ObjectReference + yyc3721 = true } - yyh3702.ElemContainerState(yyj3702) - if yyj3702 < len(yyv3702) { + yyh3721.ElemContainerState(yyj3721) + if yyj3721 < len(yyv3721) { if r.TryDecodeAsNil() { - yyv3702[yyj3702] = ObjectReference{} + yyv3721[yyj3721] = ObjectReference{} } else { - yyv3705 := &yyv3702[yyj3702] - yyv3705.CodecDecodeSelf(d) + yyv3724 := &yyv3721[yyj3721] + yyv3724.CodecDecodeSelf(d) } } else { @@ -46702,17 +46975,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3702 < len(yyv3702) { - yyv3702 = yyv3702[:yyj3702] - yyc3702 = true - } else if yyj3702 == 0 && yyv3702 == nil { - yyv3702 = []ObjectReference{} - yyc3702 = true + if yyj3721 < len(yyv3721) { + yyv3721 = yyv3721[:yyj3721] + yyc3721 = true + } else if yyj3721 == 0 && yyv3721 == nil { + yyv3721 = []ObjectReference{} + yyc3721 = true } } - yyh3702.End() - if yyc3702 { - *v = yyv3702 + yyh3721.End() + if yyc3721 { + *v = yyv3721 } } @@ -46721,10 +46994,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3706 := range v { + for _, yyv3725 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3707 := &yyv3706 - yy3707.CodecEncodeSelf(e) + yy3726 := &yyv3725 + yy3726.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46734,83 +47007,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3708 := *v - yyh3708, yyl3708 := z.DecSliceHelperStart() - var yyc3708 bool - if yyl3708 == 0 { - if yyv3708 == nil { - yyv3708 = []ServiceAccount{} - yyc3708 = true - } else if len(yyv3708) != 0 { - yyv3708 = yyv3708[:0] - yyc3708 = true + yyv3727 := *v + yyh3727, yyl3727 := z.DecSliceHelperStart() + var yyc3727 bool + if yyl3727 == 0 { + if yyv3727 == nil { + yyv3727 = []ServiceAccount{} + yyc3727 = true + } else if len(yyv3727) != 0 { + yyv3727 = yyv3727[:0] + yyc3727 = true } - } else if yyl3708 > 0 { - var yyrr3708, yyrl3708 int - var yyrt3708 bool - if yyl3708 > cap(yyv3708) { + } else if yyl3727 > 0 { + var yyrr3727, yyrl3727 int + var yyrt3727 bool + if yyl3727 > cap(yyv3727) { - yyrg3708 := len(yyv3708) > 0 - yyv23708 := yyv3708 - yyrl3708, yyrt3708 = z.DecInferLen(yyl3708, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3708 { - if yyrl3708 <= cap(yyv3708) { - yyv3708 = yyv3708[:yyrl3708] + yyrg3727 := len(yyv3727) > 0 + yyv23727 := yyv3727 + yyrl3727, yyrt3727 = z.DecInferLen(yyl3727, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3727 { + if yyrl3727 <= cap(yyv3727) { + yyv3727 = yyv3727[:yyrl3727] } else { - yyv3708 = make([]ServiceAccount, yyrl3708) + yyv3727 = make([]ServiceAccount, yyrl3727) } } else { - yyv3708 = make([]ServiceAccount, yyrl3708) + yyv3727 = make([]ServiceAccount, yyrl3727) } - yyc3708 = true - yyrr3708 = len(yyv3708) - if yyrg3708 { - copy(yyv3708, yyv23708) + yyc3727 = true + yyrr3727 = len(yyv3727) + if yyrg3727 { + copy(yyv3727, yyv23727) } - } else if yyl3708 != len(yyv3708) { - yyv3708 = yyv3708[:yyl3708] - yyc3708 = true + } else if yyl3727 != len(yyv3727) { + yyv3727 = yyv3727[:yyl3727] + yyc3727 = true } - yyj3708 := 0 - for ; yyj3708 < yyrr3708; yyj3708++ { - yyh3708.ElemContainerState(yyj3708) + yyj3727 := 0 + for ; yyj3727 < yyrr3727; yyj3727++ { + yyh3727.ElemContainerState(yyj3727) if r.TryDecodeAsNil() { - yyv3708[yyj3708] = ServiceAccount{} + yyv3727[yyj3727] = ServiceAccount{} } else { - yyv3709 := &yyv3708[yyj3708] - yyv3709.CodecDecodeSelf(d) + yyv3728 := &yyv3727[yyj3727] + yyv3728.CodecDecodeSelf(d) } } - if yyrt3708 { - for ; yyj3708 < yyl3708; yyj3708++ { - yyv3708 = append(yyv3708, ServiceAccount{}) - yyh3708.ElemContainerState(yyj3708) + if yyrt3727 { + for ; yyj3727 < yyl3727; yyj3727++ { + yyv3727 = append(yyv3727, ServiceAccount{}) + yyh3727.ElemContainerState(yyj3727) if r.TryDecodeAsNil() { - yyv3708[yyj3708] = ServiceAccount{} + yyv3727[yyj3727] = ServiceAccount{} } else { - yyv3710 := &yyv3708[yyj3708] - yyv3710.CodecDecodeSelf(d) + yyv3729 := &yyv3727[yyj3727] + yyv3729.CodecDecodeSelf(d) } } } } else { - yyj3708 := 0 - for ; !r.CheckBreak(); yyj3708++ { + yyj3727 := 0 + for ; !r.CheckBreak(); yyj3727++ { - if yyj3708 >= len(yyv3708) { - yyv3708 = append(yyv3708, ServiceAccount{}) // var yyz3708 ServiceAccount - yyc3708 = true + if yyj3727 >= len(yyv3727) { + yyv3727 = append(yyv3727, ServiceAccount{}) // var yyz3727 ServiceAccount + yyc3727 = true } - yyh3708.ElemContainerState(yyj3708) - if yyj3708 < len(yyv3708) { + yyh3727.ElemContainerState(yyj3727) + if yyj3727 < len(yyv3727) { if r.TryDecodeAsNil() { - yyv3708[yyj3708] = ServiceAccount{} + yyv3727[yyj3727] = ServiceAccount{} } else { - yyv3711 := &yyv3708[yyj3708] - yyv3711.CodecDecodeSelf(d) + yyv3730 := &yyv3727[yyj3727] + yyv3730.CodecDecodeSelf(d) } } else { @@ -46818,17 +47091,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3708 < len(yyv3708) { - yyv3708 = yyv3708[:yyj3708] - yyc3708 = true - } else if yyj3708 == 0 && yyv3708 == nil { - yyv3708 = []ServiceAccount{} - yyc3708 = true + if yyj3727 < len(yyv3727) { + yyv3727 = yyv3727[:yyj3727] + yyc3727 = true + } else if yyj3727 == 0 && yyv3727 == nil { + yyv3727 = []ServiceAccount{} + yyc3727 = true } } - yyh3708.End() - if yyc3708 { - *v = yyv3708 + yyh3727.End() + if yyc3727 { + *v = yyv3727 } } @@ -46837,10 +47110,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3712 := range v { + for _, yyv3731 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3713 := &yyv3712 - yy3713.CodecEncodeSelf(e) + yy3732 := &yyv3731 + yy3732.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46850,83 +47123,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3714 := *v - yyh3714, yyl3714 := z.DecSliceHelperStart() - var yyc3714 bool - if yyl3714 == 0 { - if yyv3714 == nil { - yyv3714 = []EndpointSubset{} - yyc3714 = true - } else if len(yyv3714) != 0 { - yyv3714 = yyv3714[:0] - yyc3714 = true + yyv3733 := *v + yyh3733, yyl3733 := z.DecSliceHelperStart() + var yyc3733 bool + if yyl3733 == 0 { + if yyv3733 == nil { + yyv3733 = []EndpointSubset{} + yyc3733 = true + } else if len(yyv3733) != 0 { + yyv3733 = yyv3733[:0] + yyc3733 = true } - } else if yyl3714 > 0 { - var yyrr3714, yyrl3714 int - var yyrt3714 bool - if yyl3714 > cap(yyv3714) { + } else if yyl3733 > 0 { + var yyrr3733, yyrl3733 int + var yyrt3733 bool + if yyl3733 > cap(yyv3733) { - yyrg3714 := len(yyv3714) > 0 - yyv23714 := yyv3714 - yyrl3714, yyrt3714 = z.DecInferLen(yyl3714, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3714 { - if yyrl3714 <= cap(yyv3714) { - yyv3714 = yyv3714[:yyrl3714] + yyrg3733 := len(yyv3733) > 0 + yyv23733 := yyv3733 + yyrl3733, yyrt3733 = z.DecInferLen(yyl3733, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3733 { + if yyrl3733 <= cap(yyv3733) { + yyv3733 = yyv3733[:yyrl3733] } else { - yyv3714 = make([]EndpointSubset, yyrl3714) + yyv3733 = make([]EndpointSubset, yyrl3733) } } else { - yyv3714 = make([]EndpointSubset, yyrl3714) + yyv3733 = make([]EndpointSubset, yyrl3733) } - yyc3714 = true - yyrr3714 = len(yyv3714) - if yyrg3714 { - copy(yyv3714, yyv23714) + yyc3733 = true + yyrr3733 = len(yyv3733) + if yyrg3733 { + copy(yyv3733, yyv23733) } - } else if yyl3714 != len(yyv3714) { - yyv3714 = yyv3714[:yyl3714] - yyc3714 = true + } else if yyl3733 != len(yyv3733) { + yyv3733 = yyv3733[:yyl3733] + yyc3733 = true } - yyj3714 := 0 - for ; yyj3714 < yyrr3714; yyj3714++ { - yyh3714.ElemContainerState(yyj3714) + yyj3733 := 0 + for ; yyj3733 < yyrr3733; yyj3733++ { + yyh3733.ElemContainerState(yyj3733) if r.TryDecodeAsNil() { - yyv3714[yyj3714] = EndpointSubset{} + yyv3733[yyj3733] = EndpointSubset{} } else { - yyv3715 := &yyv3714[yyj3714] - yyv3715.CodecDecodeSelf(d) + yyv3734 := &yyv3733[yyj3733] + yyv3734.CodecDecodeSelf(d) } } - if yyrt3714 { - for ; yyj3714 < yyl3714; yyj3714++ { - yyv3714 = append(yyv3714, EndpointSubset{}) - yyh3714.ElemContainerState(yyj3714) + if yyrt3733 { + for ; yyj3733 < yyl3733; yyj3733++ { + yyv3733 = append(yyv3733, EndpointSubset{}) + yyh3733.ElemContainerState(yyj3733) if r.TryDecodeAsNil() { - yyv3714[yyj3714] = EndpointSubset{} + yyv3733[yyj3733] = EndpointSubset{} } else { - yyv3716 := &yyv3714[yyj3714] - yyv3716.CodecDecodeSelf(d) + yyv3735 := &yyv3733[yyj3733] + yyv3735.CodecDecodeSelf(d) } } } } else { - yyj3714 := 0 - for ; !r.CheckBreak(); yyj3714++ { + yyj3733 := 0 + for ; !r.CheckBreak(); yyj3733++ { - if yyj3714 >= len(yyv3714) { - yyv3714 = append(yyv3714, EndpointSubset{}) // var yyz3714 EndpointSubset - yyc3714 = true + if yyj3733 >= len(yyv3733) { + yyv3733 = append(yyv3733, EndpointSubset{}) // var yyz3733 EndpointSubset + yyc3733 = true } - yyh3714.ElemContainerState(yyj3714) - if yyj3714 < len(yyv3714) { + yyh3733.ElemContainerState(yyj3733) + if yyj3733 < len(yyv3733) { if r.TryDecodeAsNil() { - yyv3714[yyj3714] = EndpointSubset{} + yyv3733[yyj3733] = EndpointSubset{} } else { - yyv3717 := &yyv3714[yyj3714] - yyv3717.CodecDecodeSelf(d) + yyv3736 := &yyv3733[yyj3733] + yyv3736.CodecDecodeSelf(d) } } else { @@ -46934,17 +47207,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3714 < len(yyv3714) { - yyv3714 = yyv3714[:yyj3714] - yyc3714 = true - } else if yyj3714 == 0 && yyv3714 == nil { - yyv3714 = []EndpointSubset{} - yyc3714 = true + if yyj3733 < len(yyv3733) { + yyv3733 = yyv3733[:yyj3733] + yyc3733 = true + } else if yyj3733 == 0 && yyv3733 == nil { + yyv3733 = []EndpointSubset{} + yyc3733 = true } } - yyh3714.End() - if yyc3714 { - *v = yyv3714 + yyh3733.End() + if yyc3733 { + *v = yyv3733 } } @@ -46953,10 +47226,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3718 := range v { + for _, yyv3737 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3719 := &yyv3718 - yy3719.CodecEncodeSelf(e) + yy3738 := &yyv3737 + yy3738.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46966,83 +47239,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3720 := *v - yyh3720, yyl3720 := z.DecSliceHelperStart() - var yyc3720 bool - if yyl3720 == 0 { - if yyv3720 == nil { - yyv3720 = []EndpointAddress{} - yyc3720 = true - } else if len(yyv3720) != 0 { - yyv3720 = yyv3720[:0] - yyc3720 = true + yyv3739 := *v + yyh3739, yyl3739 := z.DecSliceHelperStart() + var yyc3739 bool + if yyl3739 == 0 { + if yyv3739 == nil { + yyv3739 = []EndpointAddress{} + yyc3739 = true + } else if len(yyv3739) != 0 { + yyv3739 = yyv3739[:0] + yyc3739 = true } - } else if yyl3720 > 0 { - var yyrr3720, yyrl3720 int - var yyrt3720 bool - if yyl3720 > cap(yyv3720) { + } else if yyl3739 > 0 { + var yyrr3739, yyrl3739 int + var yyrt3739 bool + if yyl3739 > cap(yyv3739) { - yyrg3720 := len(yyv3720) > 0 - yyv23720 := yyv3720 - yyrl3720, yyrt3720 = z.DecInferLen(yyl3720, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3720 { - if yyrl3720 <= cap(yyv3720) { - yyv3720 = yyv3720[:yyrl3720] + yyrg3739 := len(yyv3739) > 0 + yyv23739 := yyv3739 + yyrl3739, yyrt3739 = z.DecInferLen(yyl3739, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3739 { + if yyrl3739 <= cap(yyv3739) { + yyv3739 = yyv3739[:yyrl3739] } else { - yyv3720 = make([]EndpointAddress, yyrl3720) + yyv3739 = make([]EndpointAddress, yyrl3739) } } else { - yyv3720 = make([]EndpointAddress, yyrl3720) + yyv3739 = make([]EndpointAddress, yyrl3739) } - yyc3720 = true - yyrr3720 = len(yyv3720) - if yyrg3720 { - copy(yyv3720, yyv23720) + yyc3739 = true + yyrr3739 = len(yyv3739) + if yyrg3739 { + copy(yyv3739, yyv23739) } - } else if yyl3720 != len(yyv3720) { - yyv3720 = yyv3720[:yyl3720] - yyc3720 = true + } else if yyl3739 != len(yyv3739) { + yyv3739 = yyv3739[:yyl3739] + yyc3739 = true } - yyj3720 := 0 - for ; yyj3720 < yyrr3720; yyj3720++ { - yyh3720.ElemContainerState(yyj3720) + yyj3739 := 0 + for ; yyj3739 < yyrr3739; yyj3739++ { + yyh3739.ElemContainerState(yyj3739) if r.TryDecodeAsNil() { - yyv3720[yyj3720] = EndpointAddress{} + yyv3739[yyj3739] = EndpointAddress{} } else { - yyv3721 := &yyv3720[yyj3720] - yyv3721.CodecDecodeSelf(d) + yyv3740 := &yyv3739[yyj3739] + yyv3740.CodecDecodeSelf(d) } } - if yyrt3720 { - for ; yyj3720 < yyl3720; yyj3720++ { - yyv3720 = append(yyv3720, EndpointAddress{}) - yyh3720.ElemContainerState(yyj3720) + if yyrt3739 { + for ; yyj3739 < yyl3739; yyj3739++ { + yyv3739 = append(yyv3739, EndpointAddress{}) + yyh3739.ElemContainerState(yyj3739) if r.TryDecodeAsNil() { - yyv3720[yyj3720] = EndpointAddress{} + yyv3739[yyj3739] = EndpointAddress{} } else { - yyv3722 := &yyv3720[yyj3720] - yyv3722.CodecDecodeSelf(d) + yyv3741 := &yyv3739[yyj3739] + yyv3741.CodecDecodeSelf(d) } } } } else { - yyj3720 := 0 - for ; !r.CheckBreak(); yyj3720++ { + yyj3739 := 0 + for ; !r.CheckBreak(); yyj3739++ { - if yyj3720 >= len(yyv3720) { - yyv3720 = append(yyv3720, EndpointAddress{}) // var yyz3720 EndpointAddress - yyc3720 = true + if yyj3739 >= len(yyv3739) { + yyv3739 = append(yyv3739, EndpointAddress{}) // var yyz3739 EndpointAddress + yyc3739 = true } - yyh3720.ElemContainerState(yyj3720) - if yyj3720 < len(yyv3720) { + yyh3739.ElemContainerState(yyj3739) + if yyj3739 < len(yyv3739) { if r.TryDecodeAsNil() { - yyv3720[yyj3720] = EndpointAddress{} + yyv3739[yyj3739] = EndpointAddress{} } else { - yyv3723 := &yyv3720[yyj3720] - yyv3723.CodecDecodeSelf(d) + yyv3742 := &yyv3739[yyj3739] + yyv3742.CodecDecodeSelf(d) } } else { @@ -47050,17 +47323,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3720 < len(yyv3720) { - yyv3720 = yyv3720[:yyj3720] - yyc3720 = true - } else if yyj3720 == 0 && yyv3720 == nil { - yyv3720 = []EndpointAddress{} - yyc3720 = true + if yyj3739 < len(yyv3739) { + yyv3739 = yyv3739[:yyj3739] + yyc3739 = true + } else if yyj3739 == 0 && yyv3739 == nil { + yyv3739 = []EndpointAddress{} + yyc3739 = true } } - yyh3720.End() - if yyc3720 { - *v = yyv3720 + yyh3739.End() + if yyc3739 { + *v = yyv3739 } } @@ -47069,10 +47342,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3724 := range v { + for _, yyv3743 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3725 := &yyv3724 - yy3725.CodecEncodeSelf(e) + yy3744 := &yyv3743 + yy3744.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47082,83 +47355,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3726 := *v - yyh3726, yyl3726 := z.DecSliceHelperStart() - var yyc3726 bool - if yyl3726 == 0 { - if yyv3726 == nil { - yyv3726 = []EndpointPort{} - yyc3726 = true - } else if len(yyv3726) != 0 { - yyv3726 = yyv3726[:0] - yyc3726 = true + yyv3745 := *v + yyh3745, yyl3745 := z.DecSliceHelperStart() + var yyc3745 bool + if yyl3745 == 0 { + if yyv3745 == nil { + yyv3745 = []EndpointPort{} + yyc3745 = true + } else if len(yyv3745) != 0 { + yyv3745 = yyv3745[:0] + yyc3745 = true } - } else if yyl3726 > 0 { - var yyrr3726, yyrl3726 int - var yyrt3726 bool - if yyl3726 > cap(yyv3726) { + } else if yyl3745 > 0 { + var yyrr3745, yyrl3745 int + var yyrt3745 bool + if yyl3745 > cap(yyv3745) { - yyrg3726 := len(yyv3726) > 0 - yyv23726 := yyv3726 - yyrl3726, yyrt3726 = z.DecInferLen(yyl3726, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3726 { - if yyrl3726 <= cap(yyv3726) { - yyv3726 = yyv3726[:yyrl3726] + yyrg3745 := len(yyv3745) > 0 + yyv23745 := yyv3745 + yyrl3745, yyrt3745 = z.DecInferLen(yyl3745, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3745 { + if yyrl3745 <= cap(yyv3745) { + yyv3745 = yyv3745[:yyrl3745] } else { - yyv3726 = make([]EndpointPort, yyrl3726) + yyv3745 = make([]EndpointPort, yyrl3745) } } else { - yyv3726 = make([]EndpointPort, yyrl3726) + yyv3745 = make([]EndpointPort, yyrl3745) } - yyc3726 = true - yyrr3726 = len(yyv3726) - if yyrg3726 { - copy(yyv3726, yyv23726) + yyc3745 = true + yyrr3745 = len(yyv3745) + if yyrg3745 { + copy(yyv3745, yyv23745) } - } else if yyl3726 != len(yyv3726) { - yyv3726 = yyv3726[:yyl3726] - yyc3726 = true + } else if yyl3745 != len(yyv3745) { + yyv3745 = yyv3745[:yyl3745] + yyc3745 = true } - yyj3726 := 0 - for ; yyj3726 < yyrr3726; yyj3726++ { - yyh3726.ElemContainerState(yyj3726) + yyj3745 := 0 + for ; yyj3745 < yyrr3745; yyj3745++ { + yyh3745.ElemContainerState(yyj3745) if r.TryDecodeAsNil() { - yyv3726[yyj3726] = EndpointPort{} + yyv3745[yyj3745] = EndpointPort{} } else { - yyv3727 := &yyv3726[yyj3726] - yyv3727.CodecDecodeSelf(d) + yyv3746 := &yyv3745[yyj3745] + yyv3746.CodecDecodeSelf(d) } } - if yyrt3726 { - for ; yyj3726 < yyl3726; yyj3726++ { - yyv3726 = append(yyv3726, EndpointPort{}) - yyh3726.ElemContainerState(yyj3726) + if yyrt3745 { + for ; yyj3745 < yyl3745; yyj3745++ { + yyv3745 = append(yyv3745, EndpointPort{}) + yyh3745.ElemContainerState(yyj3745) if r.TryDecodeAsNil() { - yyv3726[yyj3726] = EndpointPort{} + yyv3745[yyj3745] = EndpointPort{} } else { - yyv3728 := &yyv3726[yyj3726] - yyv3728.CodecDecodeSelf(d) + yyv3747 := &yyv3745[yyj3745] + yyv3747.CodecDecodeSelf(d) } } } } else { - yyj3726 := 0 - for ; !r.CheckBreak(); yyj3726++ { + yyj3745 := 0 + for ; !r.CheckBreak(); yyj3745++ { - if yyj3726 >= len(yyv3726) { - yyv3726 = append(yyv3726, EndpointPort{}) // var yyz3726 EndpointPort - yyc3726 = true + if yyj3745 >= len(yyv3745) { + yyv3745 = append(yyv3745, EndpointPort{}) // var yyz3745 EndpointPort + yyc3745 = true } - yyh3726.ElemContainerState(yyj3726) - if yyj3726 < len(yyv3726) { + yyh3745.ElemContainerState(yyj3745) + if yyj3745 < len(yyv3745) { if r.TryDecodeAsNil() { - yyv3726[yyj3726] = EndpointPort{} + yyv3745[yyj3745] = EndpointPort{} } else { - yyv3729 := &yyv3726[yyj3726] - yyv3729.CodecDecodeSelf(d) + yyv3748 := &yyv3745[yyj3745] + yyv3748.CodecDecodeSelf(d) } } else { @@ -47166,17 +47439,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3726 < len(yyv3726) { - yyv3726 = yyv3726[:yyj3726] - yyc3726 = true - } else if yyj3726 == 0 && yyv3726 == nil { - yyv3726 = []EndpointPort{} - yyc3726 = true + if yyj3745 < len(yyv3745) { + yyv3745 = yyv3745[:yyj3745] + yyc3745 = true + } else if yyj3745 == 0 && yyv3745 == nil { + yyv3745 = []EndpointPort{} + yyc3745 = true } } - yyh3726.End() - if yyc3726 { - *v = yyv3726 + yyh3745.End() + if yyc3745 { + *v = yyv3745 } } @@ -47185,10 +47458,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3730 := range v { + for _, yyv3749 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3731 := &yyv3730 - yy3731.CodecEncodeSelf(e) + yy3750 := &yyv3749 + yy3750.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47198,83 +47471,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3732 := *v - yyh3732, yyl3732 := z.DecSliceHelperStart() - var yyc3732 bool - if yyl3732 == 0 { - if yyv3732 == nil { - yyv3732 = []Endpoints{} - yyc3732 = true - } else if len(yyv3732) != 0 { - yyv3732 = yyv3732[:0] - yyc3732 = true + yyv3751 := *v + yyh3751, yyl3751 := z.DecSliceHelperStart() + var yyc3751 bool + if yyl3751 == 0 { + if yyv3751 == nil { + yyv3751 = []Endpoints{} + yyc3751 = true + } else if len(yyv3751) != 0 { + yyv3751 = yyv3751[:0] + yyc3751 = true } - } else if yyl3732 > 0 { - var yyrr3732, yyrl3732 int - var yyrt3732 bool - if yyl3732 > cap(yyv3732) { + } else if yyl3751 > 0 { + var yyrr3751, yyrl3751 int + var yyrt3751 bool + if yyl3751 > cap(yyv3751) { - yyrg3732 := len(yyv3732) > 0 - yyv23732 := yyv3732 - yyrl3732, yyrt3732 = z.DecInferLen(yyl3732, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3732 { - if yyrl3732 <= cap(yyv3732) { - yyv3732 = yyv3732[:yyrl3732] + yyrg3751 := len(yyv3751) > 0 + yyv23751 := yyv3751 + yyrl3751, yyrt3751 = z.DecInferLen(yyl3751, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3751 { + if yyrl3751 <= cap(yyv3751) { + yyv3751 = yyv3751[:yyrl3751] } else { - yyv3732 = make([]Endpoints, yyrl3732) + yyv3751 = make([]Endpoints, yyrl3751) } } else { - yyv3732 = make([]Endpoints, yyrl3732) + yyv3751 = make([]Endpoints, yyrl3751) } - yyc3732 = true - yyrr3732 = len(yyv3732) - if yyrg3732 { - copy(yyv3732, yyv23732) + yyc3751 = true + yyrr3751 = len(yyv3751) + if yyrg3751 { + copy(yyv3751, yyv23751) } - } else if yyl3732 != len(yyv3732) { - yyv3732 = yyv3732[:yyl3732] - yyc3732 = true + } else if yyl3751 != len(yyv3751) { + yyv3751 = yyv3751[:yyl3751] + yyc3751 = true } - yyj3732 := 0 - for ; yyj3732 < yyrr3732; yyj3732++ { - yyh3732.ElemContainerState(yyj3732) + yyj3751 := 0 + for ; yyj3751 < yyrr3751; yyj3751++ { + yyh3751.ElemContainerState(yyj3751) if r.TryDecodeAsNil() { - yyv3732[yyj3732] = Endpoints{} + yyv3751[yyj3751] = Endpoints{} } else { - yyv3733 := &yyv3732[yyj3732] - yyv3733.CodecDecodeSelf(d) + yyv3752 := &yyv3751[yyj3751] + yyv3752.CodecDecodeSelf(d) } } - if yyrt3732 { - for ; yyj3732 < yyl3732; yyj3732++ { - yyv3732 = append(yyv3732, Endpoints{}) - yyh3732.ElemContainerState(yyj3732) + if yyrt3751 { + for ; yyj3751 < yyl3751; yyj3751++ { + yyv3751 = append(yyv3751, Endpoints{}) + yyh3751.ElemContainerState(yyj3751) if r.TryDecodeAsNil() { - yyv3732[yyj3732] = Endpoints{} + yyv3751[yyj3751] = Endpoints{} } else { - yyv3734 := &yyv3732[yyj3732] - yyv3734.CodecDecodeSelf(d) + yyv3753 := &yyv3751[yyj3751] + yyv3753.CodecDecodeSelf(d) } } } } else { - yyj3732 := 0 - for ; !r.CheckBreak(); yyj3732++ { + yyj3751 := 0 + for ; !r.CheckBreak(); yyj3751++ { - if yyj3732 >= len(yyv3732) { - yyv3732 = append(yyv3732, Endpoints{}) // var yyz3732 Endpoints - yyc3732 = true + if yyj3751 >= len(yyv3751) { + yyv3751 = append(yyv3751, Endpoints{}) // var yyz3751 Endpoints + yyc3751 = true } - yyh3732.ElemContainerState(yyj3732) - if yyj3732 < len(yyv3732) { + yyh3751.ElemContainerState(yyj3751) + if yyj3751 < len(yyv3751) { if r.TryDecodeAsNil() { - yyv3732[yyj3732] = Endpoints{} + yyv3751[yyj3751] = Endpoints{} } else { - yyv3735 := &yyv3732[yyj3732] - yyv3735.CodecDecodeSelf(d) + yyv3754 := &yyv3751[yyj3751] + yyv3754.CodecDecodeSelf(d) } } else { @@ -47282,17 +47555,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3732 < len(yyv3732) { - yyv3732 = yyv3732[:yyj3732] - yyc3732 = true - } else if yyj3732 == 0 && yyv3732 == nil { - yyv3732 = []Endpoints{} - yyc3732 = true + if yyj3751 < len(yyv3751) { + yyv3751 = yyv3751[:yyj3751] + yyc3751 = true + } else if yyj3751 == 0 && yyv3751 == nil { + yyv3751 = []Endpoints{} + yyc3751 = true } } - yyh3732.End() - if yyc3732 { - *v = yyv3732 + yyh3751.End() + if yyc3751 { + *v = yyv3751 } } @@ -47301,10 +47574,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3736 := range v { + for _, yyv3755 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3737 := &yyv3736 - yy3737.CodecEncodeSelf(e) + yy3756 := &yyv3755 + yy3756.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47314,83 +47587,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3738 := *v - yyh3738, yyl3738 := z.DecSliceHelperStart() - var yyc3738 bool - if yyl3738 == 0 { - if yyv3738 == nil { - yyv3738 = []NodeCondition{} - yyc3738 = true - } else if len(yyv3738) != 0 { - yyv3738 = yyv3738[:0] - yyc3738 = true + yyv3757 := *v + yyh3757, yyl3757 := z.DecSliceHelperStart() + var yyc3757 bool + if yyl3757 == 0 { + if yyv3757 == nil { + yyv3757 = []NodeCondition{} + yyc3757 = true + } else if len(yyv3757) != 0 { + yyv3757 = yyv3757[:0] + yyc3757 = true } - } else if yyl3738 > 0 { - var yyrr3738, yyrl3738 int - var yyrt3738 bool - if yyl3738 > cap(yyv3738) { + } else if yyl3757 > 0 { + var yyrr3757, yyrl3757 int + var yyrt3757 bool + if yyl3757 > cap(yyv3757) { - yyrg3738 := len(yyv3738) > 0 - yyv23738 := yyv3738 - yyrl3738, yyrt3738 = z.DecInferLen(yyl3738, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3738 { - if yyrl3738 <= cap(yyv3738) { - yyv3738 = yyv3738[:yyrl3738] + yyrg3757 := len(yyv3757) > 0 + yyv23757 := yyv3757 + yyrl3757, yyrt3757 = z.DecInferLen(yyl3757, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3757 { + if yyrl3757 <= cap(yyv3757) { + yyv3757 = yyv3757[:yyrl3757] } else { - yyv3738 = make([]NodeCondition, yyrl3738) + yyv3757 = make([]NodeCondition, yyrl3757) } } else { - yyv3738 = make([]NodeCondition, yyrl3738) + yyv3757 = make([]NodeCondition, yyrl3757) } - yyc3738 = true - yyrr3738 = len(yyv3738) - if yyrg3738 { - copy(yyv3738, yyv23738) + yyc3757 = true + yyrr3757 = len(yyv3757) + if yyrg3757 { + copy(yyv3757, yyv23757) } - } else if yyl3738 != len(yyv3738) { - yyv3738 = yyv3738[:yyl3738] - yyc3738 = true + } else if yyl3757 != len(yyv3757) { + yyv3757 = yyv3757[:yyl3757] + yyc3757 = true } - yyj3738 := 0 - for ; yyj3738 < yyrr3738; yyj3738++ { - yyh3738.ElemContainerState(yyj3738) + yyj3757 := 0 + for ; yyj3757 < yyrr3757; yyj3757++ { + yyh3757.ElemContainerState(yyj3757) if r.TryDecodeAsNil() { - yyv3738[yyj3738] = NodeCondition{} + yyv3757[yyj3757] = NodeCondition{} } else { - yyv3739 := &yyv3738[yyj3738] - yyv3739.CodecDecodeSelf(d) + yyv3758 := &yyv3757[yyj3757] + yyv3758.CodecDecodeSelf(d) } } - if yyrt3738 { - for ; yyj3738 < yyl3738; yyj3738++ { - yyv3738 = append(yyv3738, NodeCondition{}) - yyh3738.ElemContainerState(yyj3738) + if yyrt3757 { + for ; yyj3757 < yyl3757; yyj3757++ { + yyv3757 = append(yyv3757, NodeCondition{}) + yyh3757.ElemContainerState(yyj3757) if r.TryDecodeAsNil() { - yyv3738[yyj3738] = NodeCondition{} + yyv3757[yyj3757] = NodeCondition{} } else { - yyv3740 := &yyv3738[yyj3738] - yyv3740.CodecDecodeSelf(d) + yyv3759 := &yyv3757[yyj3757] + yyv3759.CodecDecodeSelf(d) } } } } else { - yyj3738 := 0 - for ; !r.CheckBreak(); yyj3738++ { + yyj3757 := 0 + for ; !r.CheckBreak(); yyj3757++ { - if yyj3738 >= len(yyv3738) { - yyv3738 = append(yyv3738, NodeCondition{}) // var yyz3738 NodeCondition - yyc3738 = true + if yyj3757 >= len(yyv3757) { + yyv3757 = append(yyv3757, NodeCondition{}) // var yyz3757 NodeCondition + yyc3757 = true } - yyh3738.ElemContainerState(yyj3738) - if yyj3738 < len(yyv3738) { + yyh3757.ElemContainerState(yyj3757) + if yyj3757 < len(yyv3757) { if r.TryDecodeAsNil() { - yyv3738[yyj3738] = NodeCondition{} + yyv3757[yyj3757] = NodeCondition{} } else { - yyv3741 := &yyv3738[yyj3738] - yyv3741.CodecDecodeSelf(d) + yyv3760 := &yyv3757[yyj3757] + yyv3760.CodecDecodeSelf(d) } } else { @@ -47398,17 +47671,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3738 < len(yyv3738) { - yyv3738 = yyv3738[:yyj3738] - yyc3738 = true - } else if yyj3738 == 0 && yyv3738 == nil { - yyv3738 = []NodeCondition{} - yyc3738 = true + if yyj3757 < len(yyv3757) { + yyv3757 = yyv3757[:yyj3757] + yyc3757 = true + } else if yyj3757 == 0 && yyv3757 == nil { + yyv3757 = []NodeCondition{} + yyc3757 = true } } - yyh3738.End() - if yyc3738 { - *v = yyv3738 + yyh3757.End() + if yyc3757 { + *v = yyv3757 } } @@ -47417,10 +47690,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3742 := range v { + for _, yyv3761 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3743 := &yyv3742 - yy3743.CodecEncodeSelf(e) + yy3762 := &yyv3761 + yy3762.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47430,83 +47703,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3744 := *v - yyh3744, yyl3744 := z.DecSliceHelperStart() - var yyc3744 bool - if yyl3744 == 0 { - if yyv3744 == nil { - yyv3744 = []NodeAddress{} - yyc3744 = true - } else if len(yyv3744) != 0 { - yyv3744 = yyv3744[:0] - yyc3744 = true + yyv3763 := *v + yyh3763, yyl3763 := z.DecSliceHelperStart() + var yyc3763 bool + if yyl3763 == 0 { + if yyv3763 == nil { + yyv3763 = []NodeAddress{} + yyc3763 = true + } else if len(yyv3763) != 0 { + yyv3763 = yyv3763[:0] + yyc3763 = true } - } else if yyl3744 > 0 { - var yyrr3744, yyrl3744 int - var yyrt3744 bool - if yyl3744 > cap(yyv3744) { + } else if yyl3763 > 0 { + var yyrr3763, yyrl3763 int + var yyrt3763 bool + if yyl3763 > cap(yyv3763) { - yyrg3744 := len(yyv3744) > 0 - yyv23744 := yyv3744 - yyrl3744, yyrt3744 = z.DecInferLen(yyl3744, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3744 { - if yyrl3744 <= cap(yyv3744) { - yyv3744 = yyv3744[:yyrl3744] + yyrg3763 := len(yyv3763) > 0 + yyv23763 := yyv3763 + yyrl3763, yyrt3763 = z.DecInferLen(yyl3763, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3763 { + if yyrl3763 <= cap(yyv3763) { + yyv3763 = yyv3763[:yyrl3763] } else { - yyv3744 = make([]NodeAddress, yyrl3744) + yyv3763 = make([]NodeAddress, yyrl3763) } } else { - yyv3744 = make([]NodeAddress, yyrl3744) + yyv3763 = make([]NodeAddress, yyrl3763) } - yyc3744 = true - yyrr3744 = len(yyv3744) - if yyrg3744 { - copy(yyv3744, yyv23744) + yyc3763 = true + yyrr3763 = len(yyv3763) + if yyrg3763 { + copy(yyv3763, yyv23763) } - } else if yyl3744 != len(yyv3744) { - yyv3744 = yyv3744[:yyl3744] - yyc3744 = true + } else if yyl3763 != len(yyv3763) { + yyv3763 = yyv3763[:yyl3763] + yyc3763 = true } - yyj3744 := 0 - for ; yyj3744 < yyrr3744; yyj3744++ { - yyh3744.ElemContainerState(yyj3744) + yyj3763 := 0 + for ; yyj3763 < yyrr3763; yyj3763++ { + yyh3763.ElemContainerState(yyj3763) if r.TryDecodeAsNil() { - yyv3744[yyj3744] = NodeAddress{} + yyv3763[yyj3763] = NodeAddress{} } else { - yyv3745 := &yyv3744[yyj3744] - yyv3745.CodecDecodeSelf(d) + yyv3764 := &yyv3763[yyj3763] + yyv3764.CodecDecodeSelf(d) } } - if yyrt3744 { - for ; yyj3744 < yyl3744; yyj3744++ { - yyv3744 = append(yyv3744, NodeAddress{}) - yyh3744.ElemContainerState(yyj3744) + if yyrt3763 { + for ; yyj3763 < yyl3763; yyj3763++ { + yyv3763 = append(yyv3763, NodeAddress{}) + yyh3763.ElemContainerState(yyj3763) if r.TryDecodeAsNil() { - yyv3744[yyj3744] = NodeAddress{} + yyv3763[yyj3763] = NodeAddress{} } else { - yyv3746 := &yyv3744[yyj3744] - yyv3746.CodecDecodeSelf(d) + yyv3765 := &yyv3763[yyj3763] + yyv3765.CodecDecodeSelf(d) } } } } else { - yyj3744 := 0 - for ; !r.CheckBreak(); yyj3744++ { + yyj3763 := 0 + for ; !r.CheckBreak(); yyj3763++ { - if yyj3744 >= len(yyv3744) { - yyv3744 = append(yyv3744, NodeAddress{}) // var yyz3744 NodeAddress - yyc3744 = true + if yyj3763 >= len(yyv3763) { + yyv3763 = append(yyv3763, NodeAddress{}) // var yyz3763 NodeAddress + yyc3763 = true } - yyh3744.ElemContainerState(yyj3744) - if yyj3744 < len(yyv3744) { + yyh3763.ElemContainerState(yyj3763) + if yyj3763 < len(yyv3763) { if r.TryDecodeAsNil() { - yyv3744[yyj3744] = NodeAddress{} + yyv3763[yyj3763] = NodeAddress{} } else { - yyv3747 := &yyv3744[yyj3744] - yyv3747.CodecDecodeSelf(d) + yyv3766 := &yyv3763[yyj3763] + yyv3766.CodecDecodeSelf(d) } } else { @@ -47514,17 +47787,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3744 < len(yyv3744) { - yyv3744 = yyv3744[:yyj3744] - yyc3744 = true - } else if yyj3744 == 0 && yyv3744 == nil { - yyv3744 = []NodeAddress{} - yyc3744 = true + if yyj3763 < len(yyv3763) { + yyv3763 = yyv3763[:yyj3763] + yyc3763 = true + } else if yyj3763 == 0 && yyv3763 == nil { + yyv3763 = []NodeAddress{} + yyc3763 = true } } - yyh3744.End() - if yyc3744 { - *v = yyv3744 + yyh3763.End() + if yyc3763 { + *v = yyv3763 } } @@ -47533,10 +47806,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3748 := range v { + for _, yyv3767 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3749 := &yyv3748 - yy3749.CodecEncodeSelf(e) + yy3768 := &yyv3767 + yy3768.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47546,83 +47819,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3750 := *v - yyh3750, yyl3750 := z.DecSliceHelperStart() - var yyc3750 bool - if yyl3750 == 0 { - if yyv3750 == nil { - yyv3750 = []ContainerImage{} - yyc3750 = true - } else if len(yyv3750) != 0 { - yyv3750 = yyv3750[:0] - yyc3750 = true + yyv3769 := *v + yyh3769, yyl3769 := z.DecSliceHelperStart() + var yyc3769 bool + if yyl3769 == 0 { + if yyv3769 == nil { + yyv3769 = []ContainerImage{} + yyc3769 = true + } else if len(yyv3769) != 0 { + yyv3769 = yyv3769[:0] + yyc3769 = true } - } else if yyl3750 > 0 { - var yyrr3750, yyrl3750 int - var yyrt3750 bool - if yyl3750 > cap(yyv3750) { + } else if yyl3769 > 0 { + var yyrr3769, yyrl3769 int + var yyrt3769 bool + if yyl3769 > cap(yyv3769) { - yyrg3750 := len(yyv3750) > 0 - yyv23750 := yyv3750 - yyrl3750, yyrt3750 = z.DecInferLen(yyl3750, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3750 { - if yyrl3750 <= cap(yyv3750) { - yyv3750 = yyv3750[:yyrl3750] + yyrg3769 := len(yyv3769) > 0 + yyv23769 := yyv3769 + yyrl3769, yyrt3769 = z.DecInferLen(yyl3769, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3769 { + if yyrl3769 <= cap(yyv3769) { + yyv3769 = yyv3769[:yyrl3769] } else { - yyv3750 = make([]ContainerImage, yyrl3750) + yyv3769 = make([]ContainerImage, yyrl3769) } } else { - yyv3750 = make([]ContainerImage, yyrl3750) + yyv3769 = make([]ContainerImage, yyrl3769) } - yyc3750 = true - yyrr3750 = len(yyv3750) - if yyrg3750 { - copy(yyv3750, yyv23750) + yyc3769 = true + yyrr3769 = len(yyv3769) + if yyrg3769 { + copy(yyv3769, yyv23769) } - } else if yyl3750 != len(yyv3750) { - yyv3750 = yyv3750[:yyl3750] - yyc3750 = true + } else if yyl3769 != len(yyv3769) { + yyv3769 = yyv3769[:yyl3769] + yyc3769 = true } - yyj3750 := 0 - for ; yyj3750 < yyrr3750; yyj3750++ { - yyh3750.ElemContainerState(yyj3750) + yyj3769 := 0 + for ; yyj3769 < yyrr3769; yyj3769++ { + yyh3769.ElemContainerState(yyj3769) if r.TryDecodeAsNil() { - yyv3750[yyj3750] = ContainerImage{} + yyv3769[yyj3769] = ContainerImage{} } else { - yyv3751 := &yyv3750[yyj3750] - yyv3751.CodecDecodeSelf(d) + yyv3770 := &yyv3769[yyj3769] + yyv3770.CodecDecodeSelf(d) } } - if yyrt3750 { - for ; yyj3750 < yyl3750; yyj3750++ { - yyv3750 = append(yyv3750, ContainerImage{}) - yyh3750.ElemContainerState(yyj3750) + if yyrt3769 { + for ; yyj3769 < yyl3769; yyj3769++ { + yyv3769 = append(yyv3769, ContainerImage{}) + yyh3769.ElemContainerState(yyj3769) if r.TryDecodeAsNil() { - yyv3750[yyj3750] = ContainerImage{} + yyv3769[yyj3769] = ContainerImage{} } else { - yyv3752 := &yyv3750[yyj3750] - yyv3752.CodecDecodeSelf(d) + yyv3771 := &yyv3769[yyj3769] + yyv3771.CodecDecodeSelf(d) } } } } else { - yyj3750 := 0 - for ; !r.CheckBreak(); yyj3750++ { + yyj3769 := 0 + for ; !r.CheckBreak(); yyj3769++ { - if yyj3750 >= len(yyv3750) { - yyv3750 = append(yyv3750, ContainerImage{}) // var yyz3750 ContainerImage - yyc3750 = true + if yyj3769 >= len(yyv3769) { + yyv3769 = append(yyv3769, ContainerImage{}) // var yyz3769 ContainerImage + yyc3769 = true } - yyh3750.ElemContainerState(yyj3750) - if yyj3750 < len(yyv3750) { + yyh3769.ElemContainerState(yyj3769) + if yyj3769 < len(yyv3769) { if r.TryDecodeAsNil() { - yyv3750[yyj3750] = ContainerImage{} + yyv3769[yyj3769] = ContainerImage{} } else { - yyv3753 := &yyv3750[yyj3750] - yyv3753.CodecDecodeSelf(d) + yyv3772 := &yyv3769[yyj3769] + yyv3772.CodecDecodeSelf(d) } } else { @@ -47630,17 +47903,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj3750 < len(yyv3750) { - yyv3750 = yyv3750[:yyj3750] - yyc3750 = true - } else if yyj3750 == 0 && yyv3750 == nil { - yyv3750 = []ContainerImage{} - yyc3750 = true + if yyj3769 < len(yyv3769) { + yyv3769 = yyv3769[:yyj3769] + yyc3769 = true + } else if yyj3769 == 0 && yyv3769 == nil { + yyv3769 = []ContainerImage{} + yyc3769 = true } } - yyh3750.End() - if yyc3750 { - *v = yyv3750 + yyh3769.End() + if yyc3769 { + *v = yyv3769 } } @@ -47649,19 +47922,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3754, yyv3754 := range v { + for yyk3773, yyv3773 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3754.CodecEncodeSelf(e) + yyk3773.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3755 := &yyv3754 - yym3756 := z.EncBinary() - _ = yym3756 + yy3774 := &yyv3773 + yym3775 := z.EncBinary() + _ = yym3775 if false { - } else if z.HasExtensions() && z.EncExt(yy3755) { - } else if !yym3756 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3755) + } else if z.HasExtensions() && z.EncExt(yy3774) { + } else if !yym3775 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3774) } else { - z.EncFallback(yy3755) + z.EncFallback(yy3774) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47672,86 +47945,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3757 := *v - yyl3757 := r.ReadMapStart() - yybh3757 := z.DecBasicHandle() - if yyv3757 == nil { - yyrl3757, _ := z.DecInferLen(yyl3757, yybh3757.MaxInitLen, 40) - yyv3757 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3757) - *v = yyv3757 + yyv3776 := *v + yyl3776 := r.ReadMapStart() + yybh3776 := z.DecBasicHandle() + if yyv3776 == nil { + yyrl3776, _ := z.DecInferLen(yyl3776, yybh3776.MaxInitLen, 40) + yyv3776 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3776) + *v = yyv3776 } - var yymk3757 ResourceName - var yymv3757 pkg3_resource.Quantity - var yymg3757 bool - if yybh3757.MapValueReset { - yymg3757 = true + var yymk3776 ResourceName + var yymv3776 pkg3_resource.Quantity + var yymg3776 bool + if yybh3776.MapValueReset { + yymg3776 = true } - if yyl3757 > 0 { - for yyj3757 := 0; yyj3757 < yyl3757; yyj3757++ { + if yyl3776 > 0 { + for yyj3776 := 0; yyj3776 < yyl3776; yyj3776++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3757 = "" + yymk3776 = "" } else { - yymk3757 = ResourceName(r.DecodeString()) + yymk3776 = ResourceName(r.DecodeString()) } - if yymg3757 { - yymv3757 = yyv3757[yymk3757] + if yymg3776 { + yymv3776 = yyv3776[yymk3776] } else { - yymv3757 = pkg3_resource.Quantity{} + yymv3776 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3757 = pkg3_resource.Quantity{} + yymv3776 = pkg3_resource.Quantity{} } else { - yyv3759 := &yymv3757 - yym3760 := z.DecBinary() - _ = yym3760 + yyv3778 := &yymv3776 + yym3779 := z.DecBinary() + _ = yym3779 if false { - } else if z.HasExtensions() && z.DecExt(yyv3759) { - } else if !yym3760 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3759) + } else if z.HasExtensions() && z.DecExt(yyv3778) { + } else if !yym3779 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3778) } else { - z.DecFallback(yyv3759, false) + z.DecFallback(yyv3778, false) } } - if yyv3757 != nil { - yyv3757[yymk3757] = yymv3757 + if yyv3776 != nil { + yyv3776[yymk3776] = yymv3776 } } - } else if yyl3757 < 0 { - for yyj3757 := 0; !r.CheckBreak(); yyj3757++ { + } else if yyl3776 < 0 { + for yyj3776 := 0; !r.CheckBreak(); yyj3776++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3757 = "" + yymk3776 = "" } else { - yymk3757 = ResourceName(r.DecodeString()) + yymk3776 = ResourceName(r.DecodeString()) } - if yymg3757 { - yymv3757 = yyv3757[yymk3757] + if yymg3776 { + yymv3776 = yyv3776[yymk3776] } else { - yymv3757 = pkg3_resource.Quantity{} + yymv3776 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3757 = pkg3_resource.Quantity{} + yymv3776 = pkg3_resource.Quantity{} } else { - yyv3762 := &yymv3757 - yym3763 := z.DecBinary() - _ = yym3763 + yyv3781 := &yymv3776 + yym3782 := z.DecBinary() + _ = yym3782 if false { - } else if z.HasExtensions() && z.DecExt(yyv3762) { - } else if !yym3763 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3762) + } else if z.HasExtensions() && z.DecExt(yyv3781) { + } else if !yym3782 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3781) } else { - z.DecFallback(yyv3762, false) + z.DecFallback(yyv3781, false) } } - if yyv3757 != nil { - yyv3757[yymk3757] = yymv3757 + if yyv3776 != nil { + yyv3776[yymk3776] = yymv3776 } } } // else len==0: TODO: Should we clear map entries? @@ -47763,10 +48036,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3764 := range v { + for _, yyv3783 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3765 := &yyv3764 - yy3765.CodecEncodeSelf(e) + yy3784 := &yyv3783 + yy3784.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47776,83 +48049,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3766 := *v - yyh3766, yyl3766 := z.DecSliceHelperStart() - var yyc3766 bool - if yyl3766 == 0 { - if yyv3766 == nil { - yyv3766 = []Node{} - yyc3766 = true - } else if len(yyv3766) != 0 { - yyv3766 = yyv3766[:0] - yyc3766 = true + yyv3785 := *v + yyh3785, yyl3785 := z.DecSliceHelperStart() + var yyc3785 bool + if yyl3785 == 0 { + if yyv3785 == nil { + yyv3785 = []Node{} + yyc3785 = true + } else if len(yyv3785) != 0 { + yyv3785 = yyv3785[:0] + yyc3785 = true } - } else if yyl3766 > 0 { - var yyrr3766, yyrl3766 int - var yyrt3766 bool - if yyl3766 > cap(yyv3766) { + } else if yyl3785 > 0 { + var yyrr3785, yyrl3785 int + var yyrt3785 bool + if yyl3785 > cap(yyv3785) { - yyrg3766 := len(yyv3766) > 0 - yyv23766 := yyv3766 - yyrl3766, yyrt3766 = z.DecInferLen(yyl3766, z.DecBasicHandle().MaxInitLen, 488) - if yyrt3766 { - if yyrl3766 <= cap(yyv3766) { - yyv3766 = yyv3766[:yyrl3766] + yyrg3785 := len(yyv3785) > 0 + yyv23785 := yyv3785 + yyrl3785, yyrt3785 = z.DecInferLen(yyl3785, z.DecBasicHandle().MaxInitLen, 488) + if yyrt3785 { + if yyrl3785 <= cap(yyv3785) { + yyv3785 = yyv3785[:yyrl3785] } else { - yyv3766 = make([]Node, yyrl3766) + yyv3785 = make([]Node, yyrl3785) } } else { - yyv3766 = make([]Node, yyrl3766) + yyv3785 = make([]Node, yyrl3785) } - yyc3766 = true - yyrr3766 = len(yyv3766) - if yyrg3766 { - copy(yyv3766, yyv23766) + yyc3785 = true + yyrr3785 = len(yyv3785) + if yyrg3785 { + copy(yyv3785, yyv23785) } - } else if yyl3766 != len(yyv3766) { - yyv3766 = yyv3766[:yyl3766] - yyc3766 = true + } else if yyl3785 != len(yyv3785) { + yyv3785 = yyv3785[:yyl3785] + yyc3785 = true } - yyj3766 := 0 - for ; yyj3766 < yyrr3766; yyj3766++ { - yyh3766.ElemContainerState(yyj3766) + yyj3785 := 0 + for ; yyj3785 < yyrr3785; yyj3785++ { + yyh3785.ElemContainerState(yyj3785) if r.TryDecodeAsNil() { - yyv3766[yyj3766] = Node{} + yyv3785[yyj3785] = Node{} } else { - yyv3767 := &yyv3766[yyj3766] - yyv3767.CodecDecodeSelf(d) + yyv3786 := &yyv3785[yyj3785] + yyv3786.CodecDecodeSelf(d) } } - if yyrt3766 { - for ; yyj3766 < yyl3766; yyj3766++ { - yyv3766 = append(yyv3766, Node{}) - yyh3766.ElemContainerState(yyj3766) + if yyrt3785 { + for ; yyj3785 < yyl3785; yyj3785++ { + yyv3785 = append(yyv3785, Node{}) + yyh3785.ElemContainerState(yyj3785) if r.TryDecodeAsNil() { - yyv3766[yyj3766] = Node{} + yyv3785[yyj3785] = Node{} } else { - yyv3768 := &yyv3766[yyj3766] - yyv3768.CodecDecodeSelf(d) + yyv3787 := &yyv3785[yyj3785] + yyv3787.CodecDecodeSelf(d) } } } } else { - yyj3766 := 0 - for ; !r.CheckBreak(); yyj3766++ { + yyj3785 := 0 + for ; !r.CheckBreak(); yyj3785++ { - if yyj3766 >= len(yyv3766) { - yyv3766 = append(yyv3766, Node{}) // var yyz3766 Node - yyc3766 = true + if yyj3785 >= len(yyv3785) { + yyv3785 = append(yyv3785, Node{}) // var yyz3785 Node + yyc3785 = true } - yyh3766.ElemContainerState(yyj3766) - if yyj3766 < len(yyv3766) { + yyh3785.ElemContainerState(yyj3785) + if yyj3785 < len(yyv3785) { if r.TryDecodeAsNil() { - yyv3766[yyj3766] = Node{} + yyv3785[yyj3785] = Node{} } else { - yyv3769 := &yyv3766[yyj3766] - yyv3769.CodecDecodeSelf(d) + yyv3788 := &yyv3785[yyj3785] + yyv3788.CodecDecodeSelf(d) } } else { @@ -47860,17 +48133,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj3766 < len(yyv3766) { - yyv3766 = yyv3766[:yyj3766] - yyc3766 = true - } else if yyj3766 == 0 && yyv3766 == nil { - yyv3766 = []Node{} - yyc3766 = true + if yyj3785 < len(yyv3785) { + yyv3785 = yyv3785[:yyj3785] + yyc3785 = true + } else if yyj3785 == 0 && yyv3785 == nil { + yyv3785 = []Node{} + yyc3785 = true } } - yyh3766.End() - if yyc3766 { - *v = yyv3766 + yyh3785.End() + if yyc3785 { + *v = yyv3785 } } @@ -47879,9 +48152,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3770 := range v { + for _, yyv3789 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3770.CodecEncodeSelf(e) + yyv3789.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47891,360 +48164,12 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3771 := *v - yyh3771, yyl3771 := z.DecSliceHelperStart() - var yyc3771 bool - if yyl3771 == 0 { - if yyv3771 == nil { - yyv3771 = []FinalizerName{} - yyc3771 = true - } else if len(yyv3771) != 0 { - yyv3771 = yyv3771[:0] - yyc3771 = true - } - } else if yyl3771 > 0 { - var yyrr3771, yyrl3771 int - var yyrt3771 bool - if yyl3771 > cap(yyv3771) { - - yyrl3771, yyrt3771 = z.DecInferLen(yyl3771, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3771 { - if yyrl3771 <= cap(yyv3771) { - yyv3771 = yyv3771[:yyrl3771] - } else { - yyv3771 = make([]FinalizerName, yyrl3771) - } - } else { - yyv3771 = make([]FinalizerName, yyrl3771) - } - yyc3771 = true - yyrr3771 = len(yyv3771) - } else if yyl3771 != len(yyv3771) { - yyv3771 = yyv3771[:yyl3771] - yyc3771 = true - } - yyj3771 := 0 - for ; yyj3771 < yyrr3771; yyj3771++ { - yyh3771.ElemContainerState(yyj3771) - if r.TryDecodeAsNil() { - yyv3771[yyj3771] = "" - } else { - yyv3771[yyj3771] = FinalizerName(r.DecodeString()) - } - - } - if yyrt3771 { - for ; yyj3771 < yyl3771; yyj3771++ { - yyv3771 = append(yyv3771, "") - yyh3771.ElemContainerState(yyj3771) - if r.TryDecodeAsNil() { - yyv3771[yyj3771] = "" - } else { - yyv3771[yyj3771] = FinalizerName(r.DecodeString()) - } - - } - } - - } else { - yyj3771 := 0 - for ; !r.CheckBreak(); yyj3771++ { - - if yyj3771 >= len(yyv3771) { - yyv3771 = append(yyv3771, "") // var yyz3771 FinalizerName - yyc3771 = true - } - yyh3771.ElemContainerState(yyj3771) - if yyj3771 < len(yyv3771) { - if r.TryDecodeAsNil() { - yyv3771[yyj3771] = "" - } else { - yyv3771[yyj3771] = FinalizerName(r.DecodeString()) - } - - } else { - z.DecSwallow() - } - - } - if yyj3771 < len(yyv3771) { - yyv3771 = yyv3771[:yyj3771] - yyc3771 = true - } else if yyj3771 == 0 && yyv3771 == nil { - yyv3771 = []FinalizerName{} - yyc3771 = true - } - } - yyh3771.End() - if yyc3771 { - *v = yyv3771 - } -} - -func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv3775 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3776 := &yyv3775 - yy3776.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3777 := *v - yyh3777, yyl3777 := z.DecSliceHelperStart() - var yyc3777 bool - if yyl3777 == 0 { - if yyv3777 == nil { - yyv3777 = []Namespace{} - yyc3777 = true - } else if len(yyv3777) != 0 { - yyv3777 = yyv3777[:0] - yyc3777 = true - } - } else if yyl3777 > 0 { - var yyrr3777, yyrl3777 int - var yyrt3777 bool - if yyl3777 > cap(yyv3777) { - - yyrg3777 := len(yyv3777) > 0 - yyv23777 := yyv3777 - yyrl3777, yyrt3777 = z.DecInferLen(yyl3777, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3777 { - if yyrl3777 <= cap(yyv3777) { - yyv3777 = yyv3777[:yyrl3777] - } else { - yyv3777 = make([]Namespace, yyrl3777) - } - } else { - yyv3777 = make([]Namespace, yyrl3777) - } - yyc3777 = true - yyrr3777 = len(yyv3777) - if yyrg3777 { - copy(yyv3777, yyv23777) - } - } else if yyl3777 != len(yyv3777) { - yyv3777 = yyv3777[:yyl3777] - yyc3777 = true - } - yyj3777 := 0 - for ; yyj3777 < yyrr3777; yyj3777++ { - yyh3777.ElemContainerState(yyj3777) - if r.TryDecodeAsNil() { - yyv3777[yyj3777] = Namespace{} - } else { - yyv3778 := &yyv3777[yyj3777] - yyv3778.CodecDecodeSelf(d) - } - - } - if yyrt3777 { - for ; yyj3777 < yyl3777; yyj3777++ { - yyv3777 = append(yyv3777, Namespace{}) - yyh3777.ElemContainerState(yyj3777) - if r.TryDecodeAsNil() { - yyv3777[yyj3777] = Namespace{} - } else { - yyv3779 := &yyv3777[yyj3777] - yyv3779.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3777 := 0 - for ; !r.CheckBreak(); yyj3777++ { - - if yyj3777 >= len(yyv3777) { - yyv3777 = append(yyv3777, Namespace{}) // var yyz3777 Namespace - yyc3777 = true - } - yyh3777.ElemContainerState(yyj3777) - if yyj3777 < len(yyv3777) { - if r.TryDecodeAsNil() { - yyv3777[yyj3777] = Namespace{} - } else { - yyv3780 := &yyv3777[yyj3777] - yyv3780.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3777 < len(yyv3777) { - yyv3777 = yyv3777[:yyj3777] - yyc3777 = true - } else if yyj3777 == 0 && yyv3777 == nil { - yyv3777 = []Namespace{} - yyc3777 = true - } - } - yyh3777.End() - if yyc3777 { - *v = yyv3777 - } -} - -func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv3781 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3782 := &yyv3781 - yy3782.CodecEncodeSelf(e) - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - - yyv3783 := *v - yyh3783, yyl3783 := z.DecSliceHelperStart() - var yyc3783 bool - if yyl3783 == 0 { - if yyv3783 == nil { - yyv3783 = []Event{} - yyc3783 = true - } else if len(yyv3783) != 0 { - yyv3783 = yyv3783[:0] - yyc3783 = true - } - } else if yyl3783 > 0 { - var yyrr3783, yyrl3783 int - var yyrt3783 bool - if yyl3783 > cap(yyv3783) { - - yyrg3783 := len(yyv3783) > 0 - yyv23783 := yyv3783 - yyrl3783, yyrt3783 = z.DecInferLen(yyl3783, z.DecBasicHandle().MaxInitLen, 440) - if yyrt3783 { - if yyrl3783 <= cap(yyv3783) { - yyv3783 = yyv3783[:yyrl3783] - } else { - yyv3783 = make([]Event, yyrl3783) - } - } else { - yyv3783 = make([]Event, yyrl3783) - } - yyc3783 = true - yyrr3783 = len(yyv3783) - if yyrg3783 { - copy(yyv3783, yyv23783) - } - } else if yyl3783 != len(yyv3783) { - yyv3783 = yyv3783[:yyl3783] - yyc3783 = true - } - yyj3783 := 0 - for ; yyj3783 < yyrr3783; yyj3783++ { - yyh3783.ElemContainerState(yyj3783) - if r.TryDecodeAsNil() { - yyv3783[yyj3783] = Event{} - } else { - yyv3784 := &yyv3783[yyj3783] - yyv3784.CodecDecodeSelf(d) - } - - } - if yyrt3783 { - for ; yyj3783 < yyl3783; yyj3783++ { - yyv3783 = append(yyv3783, Event{}) - yyh3783.ElemContainerState(yyj3783) - if r.TryDecodeAsNil() { - yyv3783[yyj3783] = Event{} - } else { - yyv3785 := &yyv3783[yyj3783] - yyv3785.CodecDecodeSelf(d) - } - - } - } - - } else { - yyj3783 := 0 - for ; !r.CheckBreak(); yyj3783++ { - - if yyj3783 >= len(yyv3783) { - yyv3783 = append(yyv3783, Event{}) // var yyz3783 Event - yyc3783 = true - } - yyh3783.ElemContainerState(yyj3783) - if yyj3783 < len(yyv3783) { - if r.TryDecodeAsNil() { - yyv3783[yyj3783] = Event{} - } else { - yyv3786 := &yyv3783[yyj3783] - yyv3786.CodecDecodeSelf(d) - } - - } else { - z.DecSwallow() - } - - } - if yyj3783 < len(yyv3783) { - yyv3783 = yyv3783[:yyj3783] - yyc3783 = true - } else if yyj3783 == 0 && yyv3783 == nil { - yyv3783 = []Event{} - yyc3783 = true - } - } - yyh3783.End() - if yyc3783 { - *v = yyv3783 - } -} - -func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg6_runtime.RawExtension, e *codec1978.Encoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperEncoder(e) - _, _, _ = h, z, r - r.EncodeArrayStart(len(v)) - for _, yyv3787 := range v { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3788 := &yyv3787 - yym3789 := z.EncBinary() - _ = yym3789 - if false { - } else if z.HasExtensions() && z.EncExt(yy3788) { - } else if !yym3789 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3788) - } else { - z.EncFallback(yy3788) - } - } - z.EncSendContainerState(codecSelfer_containerArrayEnd1234) -} - -func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExtension, d *codec1978.Decoder) { - var h codecSelfer1234 - z, r := codec1978.GenHelperDecoder(d) - _, _, _ = h, z, r - yyv3790 := *v yyh3790, yyl3790 := z.DecSliceHelperStart() var yyc3790 bool if yyl3790 == 0 { if yyv3790 == nil { - yyv3790 = []pkg6_runtime.RawExtension{} + yyv3790 = []FinalizerName{} yyc3790 = true } else if len(yyv3790) != 0 { yyv3790 = yyv3790[:0] @@ -48255,23 +48180,18 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten var yyrt3790 bool if yyl3790 > cap(yyv3790) { - yyrg3790 := len(yyv3790) > 0 - yyv23790 := yyv3790 - yyrl3790, yyrt3790 = z.DecInferLen(yyl3790, z.DecBasicHandle().MaxInitLen, 24) + yyrl3790, yyrt3790 = z.DecInferLen(yyl3790, z.DecBasicHandle().MaxInitLen, 16) if yyrt3790 { if yyrl3790 <= cap(yyv3790) { yyv3790 = yyv3790[:yyrl3790] } else { - yyv3790 = make([]pkg6_runtime.RawExtension, yyrl3790) + yyv3790 = make([]FinalizerName, yyrl3790) } } else { - yyv3790 = make([]pkg6_runtime.RawExtension, yyrl3790) + yyv3790 = make([]FinalizerName, yyrl3790) } yyc3790 = true yyrr3790 = len(yyv3790) - if yyrg3790 { - copy(yyv3790, yyv23790) - } } else if yyl3790 != len(yyv3790) { yyv3790 = yyv3790[:yyl3790] yyc3790 = true @@ -48280,38 +48200,20 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten for ; yyj3790 < yyrr3790; yyj3790++ { yyh3790.ElemContainerState(yyj3790) if r.TryDecodeAsNil() { - yyv3790[yyj3790] = pkg6_runtime.RawExtension{} + yyv3790[yyj3790] = "" } else { - yyv3791 := &yyv3790[yyj3790] - yym3792 := z.DecBinary() - _ = yym3792 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3791) { - } else if !yym3792 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3791) - } else { - z.DecFallback(yyv3791, false) - } + yyv3790[yyj3790] = FinalizerName(r.DecodeString()) } } if yyrt3790 { for ; yyj3790 < yyl3790; yyj3790++ { - yyv3790 = append(yyv3790, pkg6_runtime.RawExtension{}) + yyv3790 = append(yyv3790, "") yyh3790.ElemContainerState(yyj3790) if r.TryDecodeAsNil() { - yyv3790[yyj3790] = pkg6_runtime.RawExtension{} + yyv3790[yyj3790] = "" } else { - yyv3793 := &yyv3790[yyj3790] - yym3794 := z.DecBinary() - _ = yym3794 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3793) { - } else if !yym3794 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3793) - } else { - z.DecFallback(yyv3793, false) - } + yyv3790[yyj3790] = FinalizerName(r.DecodeString()) } } @@ -48322,24 +48224,15 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten for ; !r.CheckBreak(); yyj3790++ { if yyj3790 >= len(yyv3790) { - yyv3790 = append(yyv3790, pkg6_runtime.RawExtension{}) // var yyz3790 pkg6_runtime.RawExtension + yyv3790 = append(yyv3790, "") // var yyz3790 FinalizerName yyc3790 = true } yyh3790.ElemContainerState(yyj3790) if yyj3790 < len(yyv3790) { if r.TryDecodeAsNil() { - yyv3790[yyj3790] = pkg6_runtime.RawExtension{} + yyv3790[yyj3790] = "" } else { - yyv3795 := &yyv3790[yyj3790] - yym3796 := z.DecBinary() - _ = yym3796 - if false { - } else if z.HasExtensions() && z.DecExt(yyv3795) { - } else if !yym3796 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3795) - } else { - z.DecFallback(yyv3795, false) - } + yyv3790[yyj3790] = FinalizerName(r.DecodeString()) } } else { @@ -48351,7 +48244,7 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten yyv3790 = yyv3790[:yyj3790] yyc3790 = true } else if yyj3790 == 0 && yyv3790 == nil { - yyv3790 = []pkg6_runtime.RawExtension{} + yyv3790 = []FinalizerName{} yyc3790 = true } } @@ -48361,15 +48254,395 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } +func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3794 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3795 := &yyv3794 + yy3795.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3796 := *v + yyh3796, yyl3796 := z.DecSliceHelperStart() + var yyc3796 bool + if yyl3796 == 0 { + if yyv3796 == nil { + yyv3796 = []Namespace{} + yyc3796 = true + } else if len(yyv3796) != 0 { + yyv3796 = yyv3796[:0] + yyc3796 = true + } + } else if yyl3796 > 0 { + var yyrr3796, yyrl3796 int + var yyrt3796 bool + if yyl3796 > cap(yyv3796) { + + yyrg3796 := len(yyv3796) > 0 + yyv23796 := yyv3796 + yyrl3796, yyrt3796 = z.DecInferLen(yyl3796, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3796 { + if yyrl3796 <= cap(yyv3796) { + yyv3796 = yyv3796[:yyrl3796] + } else { + yyv3796 = make([]Namespace, yyrl3796) + } + } else { + yyv3796 = make([]Namespace, yyrl3796) + } + yyc3796 = true + yyrr3796 = len(yyv3796) + if yyrg3796 { + copy(yyv3796, yyv23796) + } + } else if yyl3796 != len(yyv3796) { + yyv3796 = yyv3796[:yyl3796] + yyc3796 = true + } + yyj3796 := 0 + for ; yyj3796 < yyrr3796; yyj3796++ { + yyh3796.ElemContainerState(yyj3796) + if r.TryDecodeAsNil() { + yyv3796[yyj3796] = Namespace{} + } else { + yyv3797 := &yyv3796[yyj3796] + yyv3797.CodecDecodeSelf(d) + } + + } + if yyrt3796 { + for ; yyj3796 < yyl3796; yyj3796++ { + yyv3796 = append(yyv3796, Namespace{}) + yyh3796.ElemContainerState(yyj3796) + if r.TryDecodeAsNil() { + yyv3796[yyj3796] = Namespace{} + } else { + yyv3798 := &yyv3796[yyj3796] + yyv3798.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3796 := 0 + for ; !r.CheckBreak(); yyj3796++ { + + if yyj3796 >= len(yyv3796) { + yyv3796 = append(yyv3796, Namespace{}) // var yyz3796 Namespace + yyc3796 = true + } + yyh3796.ElemContainerState(yyj3796) + if yyj3796 < len(yyv3796) { + if r.TryDecodeAsNil() { + yyv3796[yyj3796] = Namespace{} + } else { + yyv3799 := &yyv3796[yyj3796] + yyv3799.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3796 < len(yyv3796) { + yyv3796 = yyv3796[:yyj3796] + yyc3796 = true + } else if yyj3796 == 0 && yyv3796 == nil { + yyv3796 = []Namespace{} + yyc3796 = true + } + } + yyh3796.End() + if yyc3796 { + *v = yyv3796 + } +} + +func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3800 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3801 := &yyv3800 + yy3801.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3802 := *v + yyh3802, yyl3802 := z.DecSliceHelperStart() + var yyc3802 bool + if yyl3802 == 0 { + if yyv3802 == nil { + yyv3802 = []Event{} + yyc3802 = true + } else if len(yyv3802) != 0 { + yyv3802 = yyv3802[:0] + yyc3802 = true + } + } else if yyl3802 > 0 { + var yyrr3802, yyrl3802 int + var yyrt3802 bool + if yyl3802 > cap(yyv3802) { + + yyrg3802 := len(yyv3802) > 0 + yyv23802 := yyv3802 + yyrl3802, yyrt3802 = z.DecInferLen(yyl3802, z.DecBasicHandle().MaxInitLen, 440) + if yyrt3802 { + if yyrl3802 <= cap(yyv3802) { + yyv3802 = yyv3802[:yyrl3802] + } else { + yyv3802 = make([]Event, yyrl3802) + } + } else { + yyv3802 = make([]Event, yyrl3802) + } + yyc3802 = true + yyrr3802 = len(yyv3802) + if yyrg3802 { + copy(yyv3802, yyv23802) + } + } else if yyl3802 != len(yyv3802) { + yyv3802 = yyv3802[:yyl3802] + yyc3802 = true + } + yyj3802 := 0 + for ; yyj3802 < yyrr3802; yyj3802++ { + yyh3802.ElemContainerState(yyj3802) + if r.TryDecodeAsNil() { + yyv3802[yyj3802] = Event{} + } else { + yyv3803 := &yyv3802[yyj3802] + yyv3803.CodecDecodeSelf(d) + } + + } + if yyrt3802 { + for ; yyj3802 < yyl3802; yyj3802++ { + yyv3802 = append(yyv3802, Event{}) + yyh3802.ElemContainerState(yyj3802) + if r.TryDecodeAsNil() { + yyv3802[yyj3802] = Event{} + } else { + yyv3804 := &yyv3802[yyj3802] + yyv3804.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj3802 := 0 + for ; !r.CheckBreak(); yyj3802++ { + + if yyj3802 >= len(yyv3802) { + yyv3802 = append(yyv3802, Event{}) // var yyz3802 Event + yyc3802 = true + } + yyh3802.ElemContainerState(yyj3802) + if yyj3802 < len(yyv3802) { + if r.TryDecodeAsNil() { + yyv3802[yyj3802] = Event{} + } else { + yyv3805 := &yyv3802[yyj3802] + yyv3805.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj3802 < len(yyv3802) { + yyv3802 = yyv3802[:yyj3802] + yyc3802 = true + } else if yyj3802 == 0 && yyv3802 == nil { + yyv3802 = []Event{} + yyc3802 = true + } + } + yyh3802.End() + if yyc3802 { + *v = yyv3802 + } +} + +func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg6_runtime.RawExtension, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv3806 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy3807 := &yyv3806 + yym3808 := z.EncBinary() + _ = yym3808 + if false { + } else if z.HasExtensions() && z.EncExt(yy3807) { + } else if !yym3808 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3807) + } else { + z.EncFallback(yy3807) + } + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExtension, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv3809 := *v + yyh3809, yyl3809 := z.DecSliceHelperStart() + var yyc3809 bool + if yyl3809 == 0 { + if yyv3809 == nil { + yyv3809 = []pkg6_runtime.RawExtension{} + yyc3809 = true + } else if len(yyv3809) != 0 { + yyv3809 = yyv3809[:0] + yyc3809 = true + } + } else if yyl3809 > 0 { + var yyrr3809, yyrl3809 int + var yyrt3809 bool + if yyl3809 > cap(yyv3809) { + + yyrg3809 := len(yyv3809) > 0 + yyv23809 := yyv3809 + yyrl3809, yyrt3809 = z.DecInferLen(yyl3809, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3809 { + if yyrl3809 <= cap(yyv3809) { + yyv3809 = yyv3809[:yyrl3809] + } else { + yyv3809 = make([]pkg6_runtime.RawExtension, yyrl3809) + } + } else { + yyv3809 = make([]pkg6_runtime.RawExtension, yyrl3809) + } + yyc3809 = true + yyrr3809 = len(yyv3809) + if yyrg3809 { + copy(yyv3809, yyv23809) + } + } else if yyl3809 != len(yyv3809) { + yyv3809 = yyv3809[:yyl3809] + yyc3809 = true + } + yyj3809 := 0 + for ; yyj3809 < yyrr3809; yyj3809++ { + yyh3809.ElemContainerState(yyj3809) + if r.TryDecodeAsNil() { + yyv3809[yyj3809] = pkg6_runtime.RawExtension{} + } else { + yyv3810 := &yyv3809[yyj3809] + yym3811 := z.DecBinary() + _ = yym3811 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3810) { + } else if !yym3811 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3810) + } else { + z.DecFallback(yyv3810, false) + } + } + + } + if yyrt3809 { + for ; yyj3809 < yyl3809; yyj3809++ { + yyv3809 = append(yyv3809, pkg6_runtime.RawExtension{}) + yyh3809.ElemContainerState(yyj3809) + if r.TryDecodeAsNil() { + yyv3809[yyj3809] = pkg6_runtime.RawExtension{} + } else { + yyv3812 := &yyv3809[yyj3809] + yym3813 := z.DecBinary() + _ = yym3813 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3812) { + } else if !yym3813 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3812) + } else { + z.DecFallback(yyv3812, false) + } + } + + } + } + + } else { + yyj3809 := 0 + for ; !r.CheckBreak(); yyj3809++ { + + if yyj3809 >= len(yyv3809) { + yyv3809 = append(yyv3809, pkg6_runtime.RawExtension{}) // var yyz3809 pkg6_runtime.RawExtension + yyc3809 = true + } + yyh3809.ElemContainerState(yyj3809) + if yyj3809 < len(yyv3809) { + if r.TryDecodeAsNil() { + yyv3809[yyj3809] = pkg6_runtime.RawExtension{} + } else { + yyv3814 := &yyv3809[yyj3809] + yym3815 := z.DecBinary() + _ = yym3815 + if false { + } else if z.HasExtensions() && z.DecExt(yyv3814) { + } else if !yym3815 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3814) + } else { + z.DecFallback(yyv3814, false) + } + } + + } else { + z.DecSwallow() + } + + } + if yyj3809 < len(yyv3809) { + yyv3809 = yyv3809[:yyj3809] + yyc3809 = true + } else if yyj3809 == 0 && yyv3809 == nil { + yyv3809 = []pkg6_runtime.RawExtension{} + yyc3809 = true + } + } + yyh3809.End() + if yyc3809 { + *v = yyv3809 + } +} + func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3797 := range v { + for _, yyv3816 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3798 := &yyv3797 - yy3798.CodecEncodeSelf(e) + yy3817 := &yyv3816 + yy3817.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48379,83 +48652,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3799 := *v - yyh3799, yyl3799 := z.DecSliceHelperStart() - var yyc3799 bool - if yyl3799 == 0 { - if yyv3799 == nil { - yyv3799 = []LimitRangeItem{} - yyc3799 = true - } else if len(yyv3799) != 0 { - yyv3799 = yyv3799[:0] - yyc3799 = true + yyv3818 := *v + yyh3818, yyl3818 := z.DecSliceHelperStart() + var yyc3818 bool + if yyl3818 == 0 { + if yyv3818 == nil { + yyv3818 = []LimitRangeItem{} + yyc3818 = true + } else if len(yyv3818) != 0 { + yyv3818 = yyv3818[:0] + yyc3818 = true } - } else if yyl3799 > 0 { - var yyrr3799, yyrl3799 int - var yyrt3799 bool - if yyl3799 > cap(yyv3799) { + } else if yyl3818 > 0 { + var yyrr3818, yyrl3818 int + var yyrt3818 bool + if yyl3818 > cap(yyv3818) { - yyrg3799 := len(yyv3799) > 0 - yyv23799 := yyv3799 - yyrl3799, yyrt3799 = z.DecInferLen(yyl3799, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3799 { - if yyrl3799 <= cap(yyv3799) { - yyv3799 = yyv3799[:yyrl3799] + yyrg3818 := len(yyv3818) > 0 + yyv23818 := yyv3818 + yyrl3818, yyrt3818 = z.DecInferLen(yyl3818, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3818 { + if yyrl3818 <= cap(yyv3818) { + yyv3818 = yyv3818[:yyrl3818] } else { - yyv3799 = make([]LimitRangeItem, yyrl3799) + yyv3818 = make([]LimitRangeItem, yyrl3818) } } else { - yyv3799 = make([]LimitRangeItem, yyrl3799) + yyv3818 = make([]LimitRangeItem, yyrl3818) } - yyc3799 = true - yyrr3799 = len(yyv3799) - if yyrg3799 { - copy(yyv3799, yyv23799) + yyc3818 = true + yyrr3818 = len(yyv3818) + if yyrg3818 { + copy(yyv3818, yyv23818) } - } else if yyl3799 != len(yyv3799) { - yyv3799 = yyv3799[:yyl3799] - yyc3799 = true + } else if yyl3818 != len(yyv3818) { + yyv3818 = yyv3818[:yyl3818] + yyc3818 = true } - yyj3799 := 0 - for ; yyj3799 < yyrr3799; yyj3799++ { - yyh3799.ElemContainerState(yyj3799) + yyj3818 := 0 + for ; yyj3818 < yyrr3818; yyj3818++ { + yyh3818.ElemContainerState(yyj3818) if r.TryDecodeAsNil() { - yyv3799[yyj3799] = LimitRangeItem{} + yyv3818[yyj3818] = LimitRangeItem{} } else { - yyv3800 := &yyv3799[yyj3799] - yyv3800.CodecDecodeSelf(d) + yyv3819 := &yyv3818[yyj3818] + yyv3819.CodecDecodeSelf(d) } } - if yyrt3799 { - for ; yyj3799 < yyl3799; yyj3799++ { - yyv3799 = append(yyv3799, LimitRangeItem{}) - yyh3799.ElemContainerState(yyj3799) + if yyrt3818 { + for ; yyj3818 < yyl3818; yyj3818++ { + yyv3818 = append(yyv3818, LimitRangeItem{}) + yyh3818.ElemContainerState(yyj3818) if r.TryDecodeAsNil() { - yyv3799[yyj3799] = LimitRangeItem{} + yyv3818[yyj3818] = LimitRangeItem{} } else { - yyv3801 := &yyv3799[yyj3799] - yyv3801.CodecDecodeSelf(d) + yyv3820 := &yyv3818[yyj3818] + yyv3820.CodecDecodeSelf(d) } } } } else { - yyj3799 := 0 - for ; !r.CheckBreak(); yyj3799++ { + yyj3818 := 0 + for ; !r.CheckBreak(); yyj3818++ { - if yyj3799 >= len(yyv3799) { - yyv3799 = append(yyv3799, LimitRangeItem{}) // var yyz3799 LimitRangeItem - yyc3799 = true + if yyj3818 >= len(yyv3818) { + yyv3818 = append(yyv3818, LimitRangeItem{}) // var yyz3818 LimitRangeItem + yyc3818 = true } - yyh3799.ElemContainerState(yyj3799) - if yyj3799 < len(yyv3799) { + yyh3818.ElemContainerState(yyj3818) + if yyj3818 < len(yyv3818) { if r.TryDecodeAsNil() { - yyv3799[yyj3799] = LimitRangeItem{} + yyv3818[yyj3818] = LimitRangeItem{} } else { - yyv3802 := &yyv3799[yyj3799] - yyv3802.CodecDecodeSelf(d) + yyv3821 := &yyv3818[yyj3818] + yyv3821.CodecDecodeSelf(d) } } else { @@ -48463,17 +48736,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj3799 < len(yyv3799) { - yyv3799 = yyv3799[:yyj3799] - yyc3799 = true - } else if yyj3799 == 0 && yyv3799 == nil { - yyv3799 = []LimitRangeItem{} - yyc3799 = true + if yyj3818 < len(yyv3818) { + yyv3818 = yyv3818[:yyj3818] + yyc3818 = true + } else if yyj3818 == 0 && yyv3818 == nil { + yyv3818 = []LimitRangeItem{} + yyc3818 = true } } - yyh3799.End() - if yyc3799 { - *v = yyv3799 + yyh3818.End() + if yyc3818 { + *v = yyv3818 } } @@ -48482,10 +48755,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3803 := range v { + for _, yyv3822 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3804 := &yyv3803 - yy3804.CodecEncodeSelf(e) + yy3823 := &yyv3822 + yy3823.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48495,83 +48768,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3805 := *v - yyh3805, yyl3805 := z.DecSliceHelperStart() - var yyc3805 bool - if yyl3805 == 0 { - if yyv3805 == nil { - yyv3805 = []LimitRange{} - yyc3805 = true - } else if len(yyv3805) != 0 { - yyv3805 = yyv3805[:0] - yyc3805 = true + yyv3824 := *v + yyh3824, yyl3824 := z.DecSliceHelperStart() + var yyc3824 bool + if yyl3824 == 0 { + if yyv3824 == nil { + yyv3824 = []LimitRange{} + yyc3824 = true + } else if len(yyv3824) != 0 { + yyv3824 = yyv3824[:0] + yyc3824 = true } - } else if yyl3805 > 0 { - var yyrr3805, yyrl3805 int - var yyrt3805 bool - if yyl3805 > cap(yyv3805) { + } else if yyl3824 > 0 { + var yyrr3824, yyrl3824 int + var yyrt3824 bool + if yyl3824 > cap(yyv3824) { - yyrg3805 := len(yyv3805) > 0 - yyv23805 := yyv3805 - yyrl3805, yyrt3805 = z.DecInferLen(yyl3805, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3805 { - if yyrl3805 <= cap(yyv3805) { - yyv3805 = yyv3805[:yyrl3805] + yyrg3824 := len(yyv3824) > 0 + yyv23824 := yyv3824 + yyrl3824, yyrt3824 = z.DecInferLen(yyl3824, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3824 { + if yyrl3824 <= cap(yyv3824) { + yyv3824 = yyv3824[:yyrl3824] } else { - yyv3805 = make([]LimitRange, yyrl3805) + yyv3824 = make([]LimitRange, yyrl3824) } } else { - yyv3805 = make([]LimitRange, yyrl3805) + yyv3824 = make([]LimitRange, yyrl3824) } - yyc3805 = true - yyrr3805 = len(yyv3805) - if yyrg3805 { - copy(yyv3805, yyv23805) + yyc3824 = true + yyrr3824 = len(yyv3824) + if yyrg3824 { + copy(yyv3824, yyv23824) } - } else if yyl3805 != len(yyv3805) { - yyv3805 = yyv3805[:yyl3805] - yyc3805 = true + } else if yyl3824 != len(yyv3824) { + yyv3824 = yyv3824[:yyl3824] + yyc3824 = true } - yyj3805 := 0 - for ; yyj3805 < yyrr3805; yyj3805++ { - yyh3805.ElemContainerState(yyj3805) + yyj3824 := 0 + for ; yyj3824 < yyrr3824; yyj3824++ { + yyh3824.ElemContainerState(yyj3824) if r.TryDecodeAsNil() { - yyv3805[yyj3805] = LimitRange{} + yyv3824[yyj3824] = LimitRange{} } else { - yyv3806 := &yyv3805[yyj3805] - yyv3806.CodecDecodeSelf(d) + yyv3825 := &yyv3824[yyj3824] + yyv3825.CodecDecodeSelf(d) } } - if yyrt3805 { - for ; yyj3805 < yyl3805; yyj3805++ { - yyv3805 = append(yyv3805, LimitRange{}) - yyh3805.ElemContainerState(yyj3805) + if yyrt3824 { + for ; yyj3824 < yyl3824; yyj3824++ { + yyv3824 = append(yyv3824, LimitRange{}) + yyh3824.ElemContainerState(yyj3824) if r.TryDecodeAsNil() { - yyv3805[yyj3805] = LimitRange{} + yyv3824[yyj3824] = LimitRange{} } else { - yyv3807 := &yyv3805[yyj3805] - yyv3807.CodecDecodeSelf(d) + yyv3826 := &yyv3824[yyj3824] + yyv3826.CodecDecodeSelf(d) } } } } else { - yyj3805 := 0 - for ; !r.CheckBreak(); yyj3805++ { + yyj3824 := 0 + for ; !r.CheckBreak(); yyj3824++ { - if yyj3805 >= len(yyv3805) { - yyv3805 = append(yyv3805, LimitRange{}) // var yyz3805 LimitRange - yyc3805 = true + if yyj3824 >= len(yyv3824) { + yyv3824 = append(yyv3824, LimitRange{}) // var yyz3824 LimitRange + yyc3824 = true } - yyh3805.ElemContainerState(yyj3805) - if yyj3805 < len(yyv3805) { + yyh3824.ElemContainerState(yyj3824) + if yyj3824 < len(yyv3824) { if r.TryDecodeAsNil() { - yyv3805[yyj3805] = LimitRange{} + yyv3824[yyj3824] = LimitRange{} } else { - yyv3808 := &yyv3805[yyj3805] - yyv3808.CodecDecodeSelf(d) + yyv3827 := &yyv3824[yyj3824] + yyv3827.CodecDecodeSelf(d) } } else { @@ -48579,17 +48852,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj3805 < len(yyv3805) { - yyv3805 = yyv3805[:yyj3805] - yyc3805 = true - } else if yyj3805 == 0 && yyv3805 == nil { - yyv3805 = []LimitRange{} - yyc3805 = true + if yyj3824 < len(yyv3824) { + yyv3824 = yyv3824[:yyj3824] + yyc3824 = true + } else if yyj3824 == 0 && yyv3824 == nil { + yyv3824 = []LimitRange{} + yyc3824 = true } } - yyh3805.End() - if yyc3805 { - *v = yyv3805 + yyh3824.End() + if yyc3824 { + *v = yyv3824 } } @@ -48598,10 +48871,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3809 := range v { + for _, yyv3828 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3810 := &yyv3809 - yy3810.CodecEncodeSelf(e) + yy3829 := &yyv3828 + yy3829.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48611,83 +48884,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3811 := *v - yyh3811, yyl3811 := z.DecSliceHelperStart() - var yyc3811 bool - if yyl3811 == 0 { - if yyv3811 == nil { - yyv3811 = []ResourceQuota{} - yyc3811 = true - } else if len(yyv3811) != 0 { - yyv3811 = yyv3811[:0] - yyc3811 = true + yyv3830 := *v + yyh3830, yyl3830 := z.DecSliceHelperStart() + var yyc3830 bool + if yyl3830 == 0 { + if yyv3830 == nil { + yyv3830 = []ResourceQuota{} + yyc3830 = true + } else if len(yyv3830) != 0 { + yyv3830 = yyv3830[:0] + yyc3830 = true } - } else if yyl3811 > 0 { - var yyrr3811, yyrl3811 int - var yyrt3811 bool - if yyl3811 > cap(yyv3811) { + } else if yyl3830 > 0 { + var yyrr3830, yyrl3830 int + var yyrt3830 bool + if yyl3830 > cap(yyv3830) { - yyrg3811 := len(yyv3811) > 0 - yyv23811 := yyv3811 - yyrl3811, yyrt3811 = z.DecInferLen(yyl3811, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3811 { - if yyrl3811 <= cap(yyv3811) { - yyv3811 = yyv3811[:yyrl3811] + yyrg3830 := len(yyv3830) > 0 + yyv23830 := yyv3830 + yyrl3830, yyrt3830 = z.DecInferLen(yyl3830, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3830 { + if yyrl3830 <= cap(yyv3830) { + yyv3830 = yyv3830[:yyrl3830] } else { - yyv3811 = make([]ResourceQuota, yyrl3811) + yyv3830 = make([]ResourceQuota, yyrl3830) } } else { - yyv3811 = make([]ResourceQuota, yyrl3811) + yyv3830 = make([]ResourceQuota, yyrl3830) } - yyc3811 = true - yyrr3811 = len(yyv3811) - if yyrg3811 { - copy(yyv3811, yyv23811) + yyc3830 = true + yyrr3830 = len(yyv3830) + if yyrg3830 { + copy(yyv3830, yyv23830) } - } else if yyl3811 != len(yyv3811) { - yyv3811 = yyv3811[:yyl3811] - yyc3811 = true + } else if yyl3830 != len(yyv3830) { + yyv3830 = yyv3830[:yyl3830] + yyc3830 = true } - yyj3811 := 0 - for ; yyj3811 < yyrr3811; yyj3811++ { - yyh3811.ElemContainerState(yyj3811) + yyj3830 := 0 + for ; yyj3830 < yyrr3830; yyj3830++ { + yyh3830.ElemContainerState(yyj3830) if r.TryDecodeAsNil() { - yyv3811[yyj3811] = ResourceQuota{} + yyv3830[yyj3830] = ResourceQuota{} } else { - yyv3812 := &yyv3811[yyj3811] - yyv3812.CodecDecodeSelf(d) + yyv3831 := &yyv3830[yyj3830] + yyv3831.CodecDecodeSelf(d) } } - if yyrt3811 { - for ; yyj3811 < yyl3811; yyj3811++ { - yyv3811 = append(yyv3811, ResourceQuota{}) - yyh3811.ElemContainerState(yyj3811) + if yyrt3830 { + for ; yyj3830 < yyl3830; yyj3830++ { + yyv3830 = append(yyv3830, ResourceQuota{}) + yyh3830.ElemContainerState(yyj3830) if r.TryDecodeAsNil() { - yyv3811[yyj3811] = ResourceQuota{} + yyv3830[yyj3830] = ResourceQuota{} } else { - yyv3813 := &yyv3811[yyj3811] - yyv3813.CodecDecodeSelf(d) + yyv3832 := &yyv3830[yyj3830] + yyv3832.CodecDecodeSelf(d) } } } } else { - yyj3811 := 0 - for ; !r.CheckBreak(); yyj3811++ { + yyj3830 := 0 + for ; !r.CheckBreak(); yyj3830++ { - if yyj3811 >= len(yyv3811) { - yyv3811 = append(yyv3811, ResourceQuota{}) // var yyz3811 ResourceQuota - yyc3811 = true + if yyj3830 >= len(yyv3830) { + yyv3830 = append(yyv3830, ResourceQuota{}) // var yyz3830 ResourceQuota + yyc3830 = true } - yyh3811.ElemContainerState(yyj3811) - if yyj3811 < len(yyv3811) { + yyh3830.ElemContainerState(yyj3830) + if yyj3830 < len(yyv3830) { if r.TryDecodeAsNil() { - yyv3811[yyj3811] = ResourceQuota{} + yyv3830[yyj3830] = ResourceQuota{} } else { - yyv3814 := &yyv3811[yyj3811] - yyv3814.CodecDecodeSelf(d) + yyv3833 := &yyv3830[yyj3830] + yyv3833.CodecDecodeSelf(d) } } else { @@ -48695,17 +48968,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj3811 < len(yyv3811) { - yyv3811 = yyv3811[:yyj3811] - yyc3811 = true - } else if yyj3811 == 0 && yyv3811 == nil { - yyv3811 = []ResourceQuota{} - yyc3811 = true + if yyj3830 < len(yyv3830) { + yyv3830 = yyv3830[:yyj3830] + yyc3830 = true + } else if yyj3830 == 0 && yyv3830 == nil { + yyv3830 = []ResourceQuota{} + yyc3830 = true } } - yyh3811.End() - if yyc3811 { - *v = yyv3811 + yyh3830.End() + if yyc3830 { + *v = yyv3830 } } @@ -48714,23 +48987,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3815, yyv3815 := range v { + for yyk3834, yyv3834 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym3816 := z.EncBinary() - _ = yym3816 + yym3835 := z.EncBinary() + _ = yym3835 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk3815)) + r.EncodeString(codecSelferC_UTF81234, string(yyk3834)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv3815 == nil { + if yyv3834 == nil { r.EncodeNil() } else { - yym3817 := z.EncBinary() - _ = yym3817 + yym3836 := z.EncBinary() + _ = yym3836 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3815)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3834)) } } } @@ -48742,80 +49015,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3818 := *v - yyl3818 := r.ReadMapStart() - yybh3818 := z.DecBasicHandle() - if yyv3818 == nil { - yyrl3818, _ := z.DecInferLen(yyl3818, yybh3818.MaxInitLen, 40) - yyv3818 = make(map[string][]uint8, yyrl3818) - *v = yyv3818 + yyv3837 := *v + yyl3837 := r.ReadMapStart() + yybh3837 := z.DecBasicHandle() + if yyv3837 == nil { + yyrl3837, _ := z.DecInferLen(yyl3837, yybh3837.MaxInitLen, 40) + yyv3837 = make(map[string][]uint8, yyrl3837) + *v = yyv3837 } - var yymk3818 string - var yymv3818 []uint8 - var yymg3818 bool - if yybh3818.MapValueReset { - yymg3818 = true + var yymk3837 string + var yymv3837 []uint8 + var yymg3837 bool + if yybh3837.MapValueReset { + yymg3837 = true } - if yyl3818 > 0 { - for yyj3818 := 0; yyj3818 < yyl3818; yyj3818++ { + if yyl3837 > 0 { + for yyj3837 := 0; yyj3837 < yyl3837; yyj3837++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3818 = "" + yymk3837 = "" } else { - yymk3818 = string(r.DecodeString()) + yymk3837 = string(r.DecodeString()) } - if yymg3818 { - yymv3818 = yyv3818[yymk3818] + if yymg3837 { + yymv3837 = yyv3837[yymk3837] } else { - yymv3818 = nil + yymv3837 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3818 = nil + yymv3837 = nil } else { - yyv3820 := &yymv3818 - yym3821 := z.DecBinary() - _ = yym3821 + yyv3839 := &yymv3837 + yym3840 := z.DecBinary() + _ = yym3840 if false { } else { - *yyv3820 = r.DecodeBytes(*(*[]byte)(yyv3820), false, false) + *yyv3839 = r.DecodeBytes(*(*[]byte)(yyv3839), false, false) } } - if yyv3818 != nil { - yyv3818[yymk3818] = yymv3818 + if yyv3837 != nil { + yyv3837[yymk3837] = yymv3837 } } - } else if yyl3818 < 0 { - for yyj3818 := 0; !r.CheckBreak(); yyj3818++ { + } else if yyl3837 < 0 { + for yyj3837 := 0; !r.CheckBreak(); yyj3837++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3818 = "" + yymk3837 = "" } else { - yymk3818 = string(r.DecodeString()) + yymk3837 = string(r.DecodeString()) } - if yymg3818 { - yymv3818 = yyv3818[yymk3818] + if yymg3837 { + yymv3837 = yyv3837[yymk3837] } else { - yymv3818 = nil + yymv3837 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3818 = nil + yymv3837 = nil } else { - yyv3823 := &yymv3818 - yym3824 := z.DecBinary() - _ = yym3824 + yyv3842 := &yymv3837 + yym3843 := z.DecBinary() + _ = yym3843 if false { } else { - *yyv3823 = r.DecodeBytes(*(*[]byte)(yyv3823), false, false) + *yyv3842 = r.DecodeBytes(*(*[]byte)(yyv3842), false, false) } } - if yyv3818 != nil { - yyv3818[yymk3818] = yymv3818 + if yyv3837 != nil { + yyv3837[yymk3837] = yymv3837 } } } // else len==0: TODO: Should we clear map entries? @@ -48827,10 +49100,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3825 := range v { + for _, yyv3844 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3826 := &yyv3825 - yy3826.CodecEncodeSelf(e) + yy3845 := &yyv3844 + yy3845.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48840,83 +49113,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3827 := *v - yyh3827, yyl3827 := z.DecSliceHelperStart() - var yyc3827 bool - if yyl3827 == 0 { - if yyv3827 == nil { - yyv3827 = []Secret{} - yyc3827 = true - } else if len(yyv3827) != 0 { - yyv3827 = yyv3827[:0] - yyc3827 = true + yyv3846 := *v + yyh3846, yyl3846 := z.DecSliceHelperStart() + var yyc3846 bool + if yyl3846 == 0 { + if yyv3846 == nil { + yyv3846 = []Secret{} + yyc3846 = true + } else if len(yyv3846) != 0 { + yyv3846 = yyv3846[:0] + yyc3846 = true } - } else if yyl3827 > 0 { - var yyrr3827, yyrl3827 int - var yyrt3827 bool - if yyl3827 > cap(yyv3827) { + } else if yyl3846 > 0 { + var yyrr3846, yyrl3846 int + var yyrt3846 bool + if yyl3846 > cap(yyv3846) { - yyrg3827 := len(yyv3827) > 0 - yyv23827 := yyv3827 - yyrl3827, yyrt3827 = z.DecInferLen(yyl3827, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3827 { - if yyrl3827 <= cap(yyv3827) { - yyv3827 = yyv3827[:yyrl3827] + yyrg3846 := len(yyv3846) > 0 + yyv23846 := yyv3846 + yyrl3846, yyrt3846 = z.DecInferLen(yyl3846, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3846 { + if yyrl3846 <= cap(yyv3846) { + yyv3846 = yyv3846[:yyrl3846] } else { - yyv3827 = make([]Secret, yyrl3827) + yyv3846 = make([]Secret, yyrl3846) } } else { - yyv3827 = make([]Secret, yyrl3827) + yyv3846 = make([]Secret, yyrl3846) } - yyc3827 = true - yyrr3827 = len(yyv3827) - if yyrg3827 { - copy(yyv3827, yyv23827) + yyc3846 = true + yyrr3846 = len(yyv3846) + if yyrg3846 { + copy(yyv3846, yyv23846) } - } else if yyl3827 != len(yyv3827) { - yyv3827 = yyv3827[:yyl3827] - yyc3827 = true + } else if yyl3846 != len(yyv3846) { + yyv3846 = yyv3846[:yyl3846] + yyc3846 = true } - yyj3827 := 0 - for ; yyj3827 < yyrr3827; yyj3827++ { - yyh3827.ElemContainerState(yyj3827) + yyj3846 := 0 + for ; yyj3846 < yyrr3846; yyj3846++ { + yyh3846.ElemContainerState(yyj3846) if r.TryDecodeAsNil() { - yyv3827[yyj3827] = Secret{} + yyv3846[yyj3846] = Secret{} } else { - yyv3828 := &yyv3827[yyj3827] - yyv3828.CodecDecodeSelf(d) + yyv3847 := &yyv3846[yyj3846] + yyv3847.CodecDecodeSelf(d) } } - if yyrt3827 { - for ; yyj3827 < yyl3827; yyj3827++ { - yyv3827 = append(yyv3827, Secret{}) - yyh3827.ElemContainerState(yyj3827) + if yyrt3846 { + for ; yyj3846 < yyl3846; yyj3846++ { + yyv3846 = append(yyv3846, Secret{}) + yyh3846.ElemContainerState(yyj3846) if r.TryDecodeAsNil() { - yyv3827[yyj3827] = Secret{} + yyv3846[yyj3846] = Secret{} } else { - yyv3829 := &yyv3827[yyj3827] - yyv3829.CodecDecodeSelf(d) + yyv3848 := &yyv3846[yyj3846] + yyv3848.CodecDecodeSelf(d) } } } } else { - yyj3827 := 0 - for ; !r.CheckBreak(); yyj3827++ { + yyj3846 := 0 + for ; !r.CheckBreak(); yyj3846++ { - if yyj3827 >= len(yyv3827) { - yyv3827 = append(yyv3827, Secret{}) // var yyz3827 Secret - yyc3827 = true + if yyj3846 >= len(yyv3846) { + yyv3846 = append(yyv3846, Secret{}) // var yyz3846 Secret + yyc3846 = true } - yyh3827.ElemContainerState(yyj3827) - if yyj3827 < len(yyv3827) { + yyh3846.ElemContainerState(yyj3846) + if yyj3846 < len(yyv3846) { if r.TryDecodeAsNil() { - yyv3827[yyj3827] = Secret{} + yyv3846[yyj3846] = Secret{} } else { - yyv3830 := &yyv3827[yyj3827] - yyv3830.CodecDecodeSelf(d) + yyv3849 := &yyv3846[yyj3846] + yyv3849.CodecDecodeSelf(d) } } else { @@ -48924,17 +49197,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj3827 < len(yyv3827) { - yyv3827 = yyv3827[:yyj3827] - yyc3827 = true - } else if yyj3827 == 0 && yyv3827 == nil { - yyv3827 = []Secret{} - yyc3827 = true + if yyj3846 < len(yyv3846) { + yyv3846 = yyv3846[:yyj3846] + yyc3846 = true + } else if yyj3846 == 0 && yyv3846 == nil { + yyv3846 = []Secret{} + yyc3846 = true } } - yyh3827.End() - if yyc3827 { - *v = yyv3827 + yyh3846.End() + if yyc3846 { + *v = yyv3846 } } @@ -48943,10 +49216,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3831 := range v { + for _, yyv3850 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3832 := &yyv3831 - yy3832.CodecEncodeSelf(e) + yy3851 := &yyv3850 + yy3851.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48956,83 +49229,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3833 := *v - yyh3833, yyl3833 := z.DecSliceHelperStart() - var yyc3833 bool - if yyl3833 == 0 { - if yyv3833 == nil { - yyv3833 = []ComponentCondition{} - yyc3833 = true - } else if len(yyv3833) != 0 { - yyv3833 = yyv3833[:0] - yyc3833 = true + yyv3852 := *v + yyh3852, yyl3852 := z.DecSliceHelperStart() + var yyc3852 bool + if yyl3852 == 0 { + if yyv3852 == nil { + yyv3852 = []ComponentCondition{} + yyc3852 = true + } else if len(yyv3852) != 0 { + yyv3852 = yyv3852[:0] + yyc3852 = true } - } else if yyl3833 > 0 { - var yyrr3833, yyrl3833 int - var yyrt3833 bool - if yyl3833 > cap(yyv3833) { + } else if yyl3852 > 0 { + var yyrr3852, yyrl3852 int + var yyrt3852 bool + if yyl3852 > cap(yyv3852) { - yyrg3833 := len(yyv3833) > 0 - yyv23833 := yyv3833 - yyrl3833, yyrt3833 = z.DecInferLen(yyl3833, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3833 { - if yyrl3833 <= cap(yyv3833) { - yyv3833 = yyv3833[:yyrl3833] + yyrg3852 := len(yyv3852) > 0 + yyv23852 := yyv3852 + yyrl3852, yyrt3852 = z.DecInferLen(yyl3852, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3852 { + if yyrl3852 <= cap(yyv3852) { + yyv3852 = yyv3852[:yyrl3852] } else { - yyv3833 = make([]ComponentCondition, yyrl3833) + yyv3852 = make([]ComponentCondition, yyrl3852) } } else { - yyv3833 = make([]ComponentCondition, yyrl3833) + yyv3852 = make([]ComponentCondition, yyrl3852) } - yyc3833 = true - yyrr3833 = len(yyv3833) - if yyrg3833 { - copy(yyv3833, yyv23833) + yyc3852 = true + yyrr3852 = len(yyv3852) + if yyrg3852 { + copy(yyv3852, yyv23852) } - } else if yyl3833 != len(yyv3833) { - yyv3833 = yyv3833[:yyl3833] - yyc3833 = true + } else if yyl3852 != len(yyv3852) { + yyv3852 = yyv3852[:yyl3852] + yyc3852 = true } - yyj3833 := 0 - for ; yyj3833 < yyrr3833; yyj3833++ { - yyh3833.ElemContainerState(yyj3833) + yyj3852 := 0 + for ; yyj3852 < yyrr3852; yyj3852++ { + yyh3852.ElemContainerState(yyj3852) if r.TryDecodeAsNil() { - yyv3833[yyj3833] = ComponentCondition{} + yyv3852[yyj3852] = ComponentCondition{} } else { - yyv3834 := &yyv3833[yyj3833] - yyv3834.CodecDecodeSelf(d) + yyv3853 := &yyv3852[yyj3852] + yyv3853.CodecDecodeSelf(d) } } - if yyrt3833 { - for ; yyj3833 < yyl3833; yyj3833++ { - yyv3833 = append(yyv3833, ComponentCondition{}) - yyh3833.ElemContainerState(yyj3833) + if yyrt3852 { + for ; yyj3852 < yyl3852; yyj3852++ { + yyv3852 = append(yyv3852, ComponentCondition{}) + yyh3852.ElemContainerState(yyj3852) if r.TryDecodeAsNil() { - yyv3833[yyj3833] = ComponentCondition{} + yyv3852[yyj3852] = ComponentCondition{} } else { - yyv3835 := &yyv3833[yyj3833] - yyv3835.CodecDecodeSelf(d) + yyv3854 := &yyv3852[yyj3852] + yyv3854.CodecDecodeSelf(d) } } } } else { - yyj3833 := 0 - for ; !r.CheckBreak(); yyj3833++ { + yyj3852 := 0 + for ; !r.CheckBreak(); yyj3852++ { - if yyj3833 >= len(yyv3833) { - yyv3833 = append(yyv3833, ComponentCondition{}) // var yyz3833 ComponentCondition - yyc3833 = true + if yyj3852 >= len(yyv3852) { + yyv3852 = append(yyv3852, ComponentCondition{}) // var yyz3852 ComponentCondition + yyc3852 = true } - yyh3833.ElemContainerState(yyj3833) - if yyj3833 < len(yyv3833) { + yyh3852.ElemContainerState(yyj3852) + if yyj3852 < len(yyv3852) { if r.TryDecodeAsNil() { - yyv3833[yyj3833] = ComponentCondition{} + yyv3852[yyj3852] = ComponentCondition{} } else { - yyv3836 := &yyv3833[yyj3833] - yyv3836.CodecDecodeSelf(d) + yyv3855 := &yyv3852[yyj3852] + yyv3855.CodecDecodeSelf(d) } } else { @@ -49040,17 +49313,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj3833 < len(yyv3833) { - yyv3833 = yyv3833[:yyj3833] - yyc3833 = true - } else if yyj3833 == 0 && yyv3833 == nil { - yyv3833 = []ComponentCondition{} - yyc3833 = true + if yyj3852 < len(yyv3852) { + yyv3852 = yyv3852[:yyj3852] + yyc3852 = true + } else if yyj3852 == 0 && yyv3852 == nil { + yyv3852 = []ComponentCondition{} + yyc3852 = true } } - yyh3833.End() - if yyc3833 { - *v = yyv3833 + yyh3852.End() + if yyc3852 { + *v = yyv3852 } } @@ -49059,10 +49332,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3837 := range v { + for _, yyv3856 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3838 := &yyv3837 - yy3838.CodecEncodeSelf(e) + yy3857 := &yyv3856 + yy3857.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49072,83 +49345,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3839 := *v - yyh3839, yyl3839 := z.DecSliceHelperStart() - var yyc3839 bool - if yyl3839 == 0 { - if yyv3839 == nil { - yyv3839 = []ComponentStatus{} - yyc3839 = true - } else if len(yyv3839) != 0 { - yyv3839 = yyv3839[:0] - yyc3839 = true + yyv3858 := *v + yyh3858, yyl3858 := z.DecSliceHelperStart() + var yyc3858 bool + if yyl3858 == 0 { + if yyv3858 == nil { + yyv3858 = []ComponentStatus{} + yyc3858 = true + } else if len(yyv3858) != 0 { + yyv3858 = yyv3858[:0] + yyc3858 = true } - } else if yyl3839 > 0 { - var yyrr3839, yyrl3839 int - var yyrt3839 bool - if yyl3839 > cap(yyv3839) { + } else if yyl3858 > 0 { + var yyrr3858, yyrl3858 int + var yyrt3858 bool + if yyl3858 > cap(yyv3858) { - yyrg3839 := len(yyv3839) > 0 - yyv23839 := yyv3839 - yyrl3839, yyrt3839 = z.DecInferLen(yyl3839, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3839 { - if yyrl3839 <= cap(yyv3839) { - yyv3839 = yyv3839[:yyrl3839] + yyrg3858 := len(yyv3858) > 0 + yyv23858 := yyv3858 + yyrl3858, yyrt3858 = z.DecInferLen(yyl3858, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3858 { + if yyrl3858 <= cap(yyv3858) { + yyv3858 = yyv3858[:yyrl3858] } else { - yyv3839 = make([]ComponentStatus, yyrl3839) + yyv3858 = make([]ComponentStatus, yyrl3858) } } else { - yyv3839 = make([]ComponentStatus, yyrl3839) + yyv3858 = make([]ComponentStatus, yyrl3858) } - yyc3839 = true - yyrr3839 = len(yyv3839) - if yyrg3839 { - copy(yyv3839, yyv23839) + yyc3858 = true + yyrr3858 = len(yyv3858) + if yyrg3858 { + copy(yyv3858, yyv23858) } - } else if yyl3839 != len(yyv3839) { - yyv3839 = yyv3839[:yyl3839] - yyc3839 = true + } else if yyl3858 != len(yyv3858) { + yyv3858 = yyv3858[:yyl3858] + yyc3858 = true } - yyj3839 := 0 - for ; yyj3839 < yyrr3839; yyj3839++ { - yyh3839.ElemContainerState(yyj3839) + yyj3858 := 0 + for ; yyj3858 < yyrr3858; yyj3858++ { + yyh3858.ElemContainerState(yyj3858) if r.TryDecodeAsNil() { - yyv3839[yyj3839] = ComponentStatus{} + yyv3858[yyj3858] = ComponentStatus{} } else { - yyv3840 := &yyv3839[yyj3839] - yyv3840.CodecDecodeSelf(d) + yyv3859 := &yyv3858[yyj3858] + yyv3859.CodecDecodeSelf(d) } } - if yyrt3839 { - for ; yyj3839 < yyl3839; yyj3839++ { - yyv3839 = append(yyv3839, ComponentStatus{}) - yyh3839.ElemContainerState(yyj3839) + if yyrt3858 { + for ; yyj3858 < yyl3858; yyj3858++ { + yyv3858 = append(yyv3858, ComponentStatus{}) + yyh3858.ElemContainerState(yyj3858) if r.TryDecodeAsNil() { - yyv3839[yyj3839] = ComponentStatus{} + yyv3858[yyj3858] = ComponentStatus{} } else { - yyv3841 := &yyv3839[yyj3839] - yyv3841.CodecDecodeSelf(d) + yyv3860 := &yyv3858[yyj3858] + yyv3860.CodecDecodeSelf(d) } } } } else { - yyj3839 := 0 - for ; !r.CheckBreak(); yyj3839++ { + yyj3858 := 0 + for ; !r.CheckBreak(); yyj3858++ { - if yyj3839 >= len(yyv3839) { - yyv3839 = append(yyv3839, ComponentStatus{}) // var yyz3839 ComponentStatus - yyc3839 = true + if yyj3858 >= len(yyv3858) { + yyv3858 = append(yyv3858, ComponentStatus{}) // var yyz3858 ComponentStatus + yyc3858 = true } - yyh3839.ElemContainerState(yyj3839) - if yyj3839 < len(yyv3839) { + yyh3858.ElemContainerState(yyj3858) + if yyj3858 < len(yyv3858) { if r.TryDecodeAsNil() { - yyv3839[yyj3839] = ComponentStatus{} + yyv3858[yyj3858] = ComponentStatus{} } else { - yyv3842 := &yyv3839[yyj3839] - yyv3842.CodecDecodeSelf(d) + yyv3861 := &yyv3858[yyj3858] + yyv3861.CodecDecodeSelf(d) } } else { @@ -49156,17 +49429,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj3839 < len(yyv3839) { - yyv3839 = yyv3839[:yyj3839] - yyc3839 = true - } else if yyj3839 == 0 && yyv3839 == nil { - yyv3839 = []ComponentStatus{} - yyc3839 = true + if yyj3858 < len(yyv3858) { + yyv3858 = yyv3858[:yyj3858] + yyc3858 = true + } else if yyj3858 == 0 && yyv3858 == nil { + yyv3858 = []ComponentStatus{} + yyc3858 = true } } - yyh3839.End() - if yyc3839 { - *v = yyv3839 + yyh3858.End() + if yyc3858 { + *v = yyv3858 } } @@ -49175,10 +49448,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3843 := range v { + for _, yyv3862 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3844 := &yyv3843 - yy3844.CodecEncodeSelf(e) + yy3863 := &yyv3862 + yy3863.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49188,83 +49461,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3845 := *v - yyh3845, yyl3845 := z.DecSliceHelperStart() - var yyc3845 bool - if yyl3845 == 0 { - if yyv3845 == nil { - yyv3845 = []DownwardAPIVolumeFile{} - yyc3845 = true - } else if len(yyv3845) != 0 { - yyv3845 = yyv3845[:0] - yyc3845 = true + yyv3864 := *v + yyh3864, yyl3864 := z.DecSliceHelperStart() + var yyc3864 bool + if yyl3864 == 0 { + if yyv3864 == nil { + yyv3864 = []DownwardAPIVolumeFile{} + yyc3864 = true + } else if len(yyv3864) != 0 { + yyv3864 = yyv3864[:0] + yyc3864 = true } - } else if yyl3845 > 0 { - var yyrr3845, yyrl3845 int - var yyrt3845 bool - if yyl3845 > cap(yyv3845) { + } else if yyl3864 > 0 { + var yyrr3864, yyrl3864 int + var yyrt3864 bool + if yyl3864 > cap(yyv3864) { - yyrg3845 := len(yyv3845) > 0 - yyv23845 := yyv3845 - yyrl3845, yyrt3845 = z.DecInferLen(yyl3845, z.DecBasicHandle().MaxInitLen, 48) - if yyrt3845 { - if yyrl3845 <= cap(yyv3845) { - yyv3845 = yyv3845[:yyrl3845] + yyrg3864 := len(yyv3864) > 0 + yyv23864 := yyv3864 + yyrl3864, yyrt3864 = z.DecInferLen(yyl3864, z.DecBasicHandle().MaxInitLen, 48) + if yyrt3864 { + if yyrl3864 <= cap(yyv3864) { + yyv3864 = yyv3864[:yyrl3864] } else { - yyv3845 = make([]DownwardAPIVolumeFile, yyrl3845) + yyv3864 = make([]DownwardAPIVolumeFile, yyrl3864) } } else { - yyv3845 = make([]DownwardAPIVolumeFile, yyrl3845) + yyv3864 = make([]DownwardAPIVolumeFile, yyrl3864) } - yyc3845 = true - yyrr3845 = len(yyv3845) - if yyrg3845 { - copy(yyv3845, yyv23845) + yyc3864 = true + yyrr3864 = len(yyv3864) + if yyrg3864 { + copy(yyv3864, yyv23864) } - } else if yyl3845 != len(yyv3845) { - yyv3845 = yyv3845[:yyl3845] - yyc3845 = true + } else if yyl3864 != len(yyv3864) { + yyv3864 = yyv3864[:yyl3864] + yyc3864 = true } - yyj3845 := 0 - for ; yyj3845 < yyrr3845; yyj3845++ { - yyh3845.ElemContainerState(yyj3845) + yyj3864 := 0 + for ; yyj3864 < yyrr3864; yyj3864++ { + yyh3864.ElemContainerState(yyj3864) if r.TryDecodeAsNil() { - yyv3845[yyj3845] = DownwardAPIVolumeFile{} + yyv3864[yyj3864] = DownwardAPIVolumeFile{} } else { - yyv3846 := &yyv3845[yyj3845] - yyv3846.CodecDecodeSelf(d) + yyv3865 := &yyv3864[yyj3864] + yyv3865.CodecDecodeSelf(d) } } - if yyrt3845 { - for ; yyj3845 < yyl3845; yyj3845++ { - yyv3845 = append(yyv3845, DownwardAPIVolumeFile{}) - yyh3845.ElemContainerState(yyj3845) + if yyrt3864 { + for ; yyj3864 < yyl3864; yyj3864++ { + yyv3864 = append(yyv3864, DownwardAPIVolumeFile{}) + yyh3864.ElemContainerState(yyj3864) if r.TryDecodeAsNil() { - yyv3845[yyj3845] = DownwardAPIVolumeFile{} + yyv3864[yyj3864] = DownwardAPIVolumeFile{} } else { - yyv3847 := &yyv3845[yyj3845] - yyv3847.CodecDecodeSelf(d) + yyv3866 := &yyv3864[yyj3864] + yyv3866.CodecDecodeSelf(d) } } } } else { - yyj3845 := 0 - for ; !r.CheckBreak(); yyj3845++ { + yyj3864 := 0 + for ; !r.CheckBreak(); yyj3864++ { - if yyj3845 >= len(yyv3845) { - yyv3845 = append(yyv3845, DownwardAPIVolumeFile{}) // var yyz3845 DownwardAPIVolumeFile - yyc3845 = true + if yyj3864 >= len(yyv3864) { + yyv3864 = append(yyv3864, DownwardAPIVolumeFile{}) // var yyz3864 DownwardAPIVolumeFile + yyc3864 = true } - yyh3845.ElemContainerState(yyj3845) - if yyj3845 < len(yyv3845) { + yyh3864.ElemContainerState(yyj3864) + if yyj3864 < len(yyv3864) { if r.TryDecodeAsNil() { - yyv3845[yyj3845] = DownwardAPIVolumeFile{} + yyv3864[yyj3864] = DownwardAPIVolumeFile{} } else { - yyv3848 := &yyv3845[yyj3845] - yyv3848.CodecDecodeSelf(d) + yyv3867 := &yyv3864[yyj3864] + yyv3867.CodecDecodeSelf(d) } } else { @@ -49272,16 +49545,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj3845 < len(yyv3845) { - yyv3845 = yyv3845[:yyj3845] - yyc3845 = true - } else if yyj3845 == 0 && yyv3845 == nil { - yyv3845 = []DownwardAPIVolumeFile{} - yyc3845 = true + if yyj3864 < len(yyv3864) { + yyv3864 = yyv3864[:yyj3864] + yyc3864 = true + } else if yyj3864 == 0 && yyv3864 == nil { + yyv3864 = []DownwardAPIVolumeFile{} + yyc3864 = true } } - yyh3845.End() - if yyc3845 { - *v = yyv3845 + yyh3864.End() + if yyc3864 { + *v = yyv3864 } } diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index c5153363fbb..351a05adfae 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -115,6 +115,15 @@ func (ComponentStatusList) SwaggerDoc() map[string]string { return map_ComponentStatusList } +var map_ConfigMapKeySelector = map[string]string{ + "": "Selects a key from a ConfigMap.", + "key": "The key to select.", +} + +func (ConfigMapKeySelector) SwaggerDoc() map[string]string { + return map_ConfigMapKeySelector +} + var map_Container = map[string]string{ "": "A single application container that you want to run within a pod.", "name": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", @@ -335,8 +344,9 @@ func (EnvVar) SwaggerDoc() map[string]string { } var map_EnvVarSource = map[string]string{ - "": "EnvVarSource represents a source for the value of an EnvVar.", - "fieldRef": "Selects a field of the pod. Only name and namespace are supported.", + "": "EnvVarSource represents a source for the value of an EnvVar.", + "fieldRef": "Selects a field of the pod; only name and namespace are supported.", + "configMapKeyRef": "Selects a key of a ConfigMap.", } func (EnvVarSource) SwaggerDoc() map[string]string { diff --git a/pkg/apis/extensions/deep_copy_generated.go b/pkg/apis/extensions/deep_copy_generated.go index 691e7cdfb58..e4fc5078294 100644 --- a/pkg/apis/extensions/deep_copy_generated.go +++ b/pkg/apis/extensions/deep_copy_generated.go @@ -87,6 +87,14 @@ func deepCopy_api_CinderVolumeSource(in api.CinderVolumeSource, out *api.CinderV return nil } +func deepCopy_api_ConfigMapKeySelector(in api.ConfigMapKeySelector, out *api.ConfigMapKeySelector, c *conversion.Cloner) error { + if err := deepCopy_api_LocalObjectReference(in.LocalObjectReference, &out.LocalObjectReference, c); err != nil { + return err + } + out.Key = in.Key + return nil +} + func deepCopy_api_Container(in api.Container, out *api.Container, c *conversion.Cloner) error { out.Name = in.Name out.Image = in.Image @@ -239,6 +247,14 @@ func deepCopy_api_EnvVarSource(in api.EnvVarSource, out *api.EnvVarSource, c *co } else { out.FieldRef = nil } + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(api.ConfigMapKeySelector) + if err := deepCopy_api_ConfigMapKeySelector(*in.ConfigMapKeyRef, out.ConfigMapKeyRef, c); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -1661,6 +1677,7 @@ func init() { deepCopy_api_Capabilities, deepCopy_api_CephFSVolumeSource, deepCopy_api_CinderVolumeSource, + deepCopy_api_ConfigMapKeySelector, deepCopy_api_Container, deepCopy_api_ContainerPort, deepCopy_api_DownwardAPIVolumeFile, diff --git a/pkg/apis/extensions/v1beta1/conversion_generated.go b/pkg/apis/extensions/v1beta1/conversion_generated.go index 847fa535d18..e5101bcbff2 100644 --- a/pkg/apis/extensions/v1beta1/conversion_generated.go +++ b/pkg/apis/extensions/v1beta1/conversion_generated.go @@ -116,6 +116,21 @@ func Convert_api_CinderVolumeSource_To_v1_CinderVolumeSource(in *api.CinderVolum return autoConvert_api_CinderVolumeSource_To_v1_CinderVolumeSource(in, out, s) } +func autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in *api.ConfigMapKeySelector, out *v1.ConfigMapKeySelector, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*api.ConfigMapKeySelector))(in) + } + if err := Convert_api_LocalObjectReference_To_v1_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + out.Key = in.Key + return nil +} + +func Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in *api.ConfigMapKeySelector, out *v1.ConfigMapKeySelector, s conversion.Scope) error { + return autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in, out, s) +} + func autoConvert_api_Container_To_v1_Container(in *api.Container, out *v1.Container, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*api.Container))(in) @@ -319,6 +334,15 @@ func autoConvert_api_EnvVarSource_To_v1_EnvVarSource(in *api.EnvVarSource, out * } else { out.FieldRef = nil } + // unable to generate simple pointer conversion for api.ConfigMapKeySelector -> v1.ConfigMapKeySelector + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(v1.ConfigMapKeySelector) + if err := Convert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector(in.ConfigMapKeyRef, out.ConfigMapKeyRef, s); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -1279,6 +1303,21 @@ func Convert_v1_CinderVolumeSource_To_api_CinderVolumeSource(in *v1.CinderVolume return autoConvert_v1_CinderVolumeSource_To_api_CinderVolumeSource(in, out, s) } +func autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *v1.ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error { + if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { + defaulting.(func(*v1.ConfigMapKeySelector))(in) + } + if err := Convert_v1_LocalObjectReference_To_api_LocalObjectReference(&in.LocalObjectReference, &out.LocalObjectReference, s); err != nil { + return err + } + out.Key = in.Key + return nil +} + +func Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in *v1.ConfigMapKeySelector, out *api.ConfigMapKeySelector, s conversion.Scope) error { + return autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in, out, s) +} + func autoConvert_v1_Container_To_api_Container(in *v1.Container, out *api.Container, s conversion.Scope) error { if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found { defaulting.(func(*v1.Container))(in) @@ -1482,6 +1521,15 @@ func autoConvert_v1_EnvVarSource_To_api_EnvVarSource(in *v1.EnvVarSource, out *a } else { out.FieldRef = nil } + // unable to generate simple pointer conversion for v1.ConfigMapKeySelector -> api.ConfigMapKeySelector + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(api.ConfigMapKeySelector) + if err := Convert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector(in.ConfigMapKeyRef, out.ConfigMapKeyRef, s); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -4456,6 +4504,7 @@ func init() { autoConvert_api_Capabilities_To_v1_Capabilities, autoConvert_api_CephFSVolumeSource_To_v1_CephFSVolumeSource, autoConvert_api_CinderVolumeSource_To_v1_CinderVolumeSource, + autoConvert_api_ConfigMapKeySelector_To_v1_ConfigMapKeySelector, autoConvert_api_ContainerPort_To_v1_ContainerPort, autoConvert_api_Container_To_v1_Container, autoConvert_api_DownwardAPIVolumeFile_To_v1_DownwardAPIVolumeFile, @@ -4546,6 +4595,7 @@ func init() { autoConvert_v1_Capabilities_To_api_Capabilities, autoConvert_v1_CephFSVolumeSource_To_api_CephFSVolumeSource, autoConvert_v1_CinderVolumeSource_To_api_CinderVolumeSource, + autoConvert_v1_ConfigMapKeySelector_To_api_ConfigMapKeySelector, autoConvert_v1_ContainerPort_To_api_ContainerPort, autoConvert_v1_Container_To_api_Container, autoConvert_v1_DownwardAPIVolumeFile_To_api_DownwardAPIVolumeFile, diff --git a/pkg/apis/extensions/v1beta1/deep_copy_generated.go b/pkg/apis/extensions/v1beta1/deep_copy_generated.go index 61706d4e505..fbe3359284c 100644 --- a/pkg/apis/extensions/v1beta1/deep_copy_generated.go +++ b/pkg/apis/extensions/v1beta1/deep_copy_generated.go @@ -123,6 +123,14 @@ func deepCopy_v1_CinderVolumeSource(in v1.CinderVolumeSource, out *v1.CinderVolu return nil } +func deepCopy_v1_ConfigMapKeySelector(in v1.ConfigMapKeySelector, out *v1.ConfigMapKeySelector, c *conversion.Cloner) error { + if err := deepCopy_v1_LocalObjectReference(in.LocalObjectReference, &out.LocalObjectReference, c); err != nil { + return err + } + out.Key = in.Key + return nil +} + func deepCopy_v1_Container(in v1.Container, out *v1.Container, c *conversion.Cloner) error { out.Name = in.Name out.Image = in.Image @@ -275,6 +283,14 @@ func deepCopy_v1_EnvVarSource(in v1.EnvVarSource, out *v1.EnvVarSource, c *conve } else { out.FieldRef = nil } + if in.ConfigMapKeyRef != nil { + out.ConfigMapKeyRef = new(v1.ConfigMapKeySelector) + if err := deepCopy_v1_ConfigMapKeySelector(*in.ConfigMapKeyRef, out.ConfigMapKeyRef, c); err != nil { + return err + } + } else { + out.ConfigMapKeyRef = nil + } return nil } @@ -1704,6 +1720,7 @@ func init() { deepCopy_v1_Capabilities, deepCopy_v1_CephFSVolumeSource, deepCopy_v1_CinderVolumeSource, + deepCopy_v1_ConfigMapKeySelector, deepCopy_v1_Container, deepCopy_v1_ContainerPort, deepCopy_v1_DownwardAPIVolumeFile,

reason

(brief) reason the container is not yet running.

name

Name of the referent. More info: http://releases.k8s.io/HEAD/docs/user-guide/identifiers.md#names

false

string

message

Message regarding why the container is not yet running.

false

key

The key to select.

true

string