diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 339b5befa2f39..2f029b5537af4 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -12901,6 +12901,10 @@ "format": "int32", "description": "iSCSI target lun number." }, + "iscsiInterface": { + "type": "string", + "description": "Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport." + }, "fsType": { "type": "string", "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi" diff --git a/api/swagger-spec/v1beta1.json b/api/swagger-spec/v1beta1.json index c4e9902c129ed..f533df2847fd3 100644 --- a/api/swagger-spec/v1beta1.json +++ b/api/swagger-spec/v1beta1.json @@ -3319,6 +3319,10 @@ "format": "int32", "description": "iSCSI target lun number." }, + "iscsiInterface": { + "type": "string", + "description": "Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport." + }, "fsType": { "type": "string", "description": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi" diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 5de61b22407a2..6c3f08302e1fe 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -2163,6 +2163,13 @@

v1.ISCSIVolumeSource

+

iscsiInterface

+

Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

+

false

+

string

+ + +

fsType

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi

true

@@ -4268,7 +4275,7 @@

any

diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index 7db938529dcce..e3b754047f50d 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -1814,6 +1814,13 @@

v1.ISCSIVolumeSource

+

iscsiInterface

+

Optional: Defaults to default (tcp). iSCSI interface name that uses an iSCSI transport.

+

false

+

string

+ + +

fsType

Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi

true

@@ -6901,7 +6908,7 @@

any

diff --git a/examples/iscsi/README.md b/examples/iscsi/README.md index c86ff0e0e1661..c33328e39d556 100644 --- a/examples/iscsi/README.md +++ b/examples/iscsi/README.md @@ -51,6 +51,8 @@ GCE does not provide preconfigured Fedora 21 image, so I set up the iSCSI target Once you have installed iSCSI initiator and new Kubernetes, you can create a pod based on the example *iscsi.json*. In the pod JSON, you need to provide *targetPortal* (the iSCSI target's **IP** address and *port* if not the default port 3260), target's *iqn*, *lun*, and the type of the filesystem that has been created on the lun, and *readOnly* boolean. No initiator information is required. +If you want to use an iSCSI offload card or other open-iscsi transports besides tcp, setup an iSCSI interface and provide *iscsiInterface* in the pod JSON. The default name for an iscsi iface (open-iscsi parameter iface.iscsi\_ifacename) is in the format transport\_name.hwaddress when generated by iscsiadm. See [open-iscsi](http://www.open-iscsi.org/docs/README) or [openstack](http://docs.openstack.org/kilo/config-reference/content/iscsi-iface-config.html) for detailed configuration information. + **Note:** If you have followed the instructions in the links above you may have partitioned the device, the iSCSI volume plugin does not currently support partitions so format the device as one partition. diff --git a/pkg/api/deep_copy_generated.go b/pkg/api/deep_copy_generated.go index 8bc040d2bf97a..31cb597a3a9d1 100644 --- a/pkg/api/deep_copy_generated.go +++ b/pkg/api/deep_copy_generated.go @@ -645,6 +645,7 @@ func deepCopy_api_ISCSIVolumeSource(in ISCSIVolumeSource, out *ISCSIVolumeSource out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = in.Lun + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/api/testing/fuzzer.go b/pkg/api/testing/fuzzer.go index c2620551f2edf..914dd6978c269 100644 --- a/pkg/api/testing/fuzzer.go +++ b/pkg/api/testing/fuzzer.go @@ -266,6 +266,12 @@ func FuzzerFor(t *testing.T, version string, src rand.Source) *fuzz.Fuzzer { c.Fuzz(t.Interface()) } }, + func(i *api.ISCSIVolumeSource, c fuzz.Continue) { + i.ISCSIInterface = c.RandString() + if i.ISCSIInterface == "" { + i.ISCSIInterface = "default" + } + }, func(d *api.DNSPolicy, c fuzz.Continue) { policies := []api.DNSPolicy{api.DNSClusterFirst, api.DNSDefault} *d = policies[c.Rand.Intn(len(policies))] diff --git a/pkg/api/types.generated.go b/pkg/api/types.generated.go index 50e70dbfb7772..4d2b50c577658 100644 --- a/pkg/api/types.generated.go +++ b/pkg/api/types.generated.go @@ -8403,17 +8403,18 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep550 := !z.EncBinary() yy2arr550 := z.EncBasicHandle().StructToArray - var yyq550 [5]bool + var yyq550 [6]bool _, _, _ = yysep550, yyq550, yy2arr550 const yyr550 bool = false yyq550[0] = x.TargetPortal != "" yyq550[1] = x.IQN != "" yyq550[2] = x.Lun != 0 - yyq550[3] = x.FSType != "" - yyq550[4] = x.ReadOnly != false + yyq550[3] = x.ISCSIInterface != "" + yyq550[4] = x.FSType != "" + yyq550[5] = x.ReadOnly != false var yynn550 int if yyr550 || yy2arr550 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn550 = 0 for _, b := range yyq550 { @@ -8506,7 +8507,7 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym561 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) + r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } else { r.EncodeString(codecSelferC_UTF81234, "") @@ -8514,13 +8515,13 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq550[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fsType")) + r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym562 := z.EncBinary() _ = yym562 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) + r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) } } } @@ -8531,19 +8532,44 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { _ = yym564 if false { } else { - r.EncodeBool(bool(x.ReadOnly)) + r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } else { - r.EncodeBool(false) + r.EncodeString(codecSelferC_UTF81234, "") } } else { if yyq550[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym565 := z.EncBinary() _ = yym565 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) + } + } + } + if yyr550 || yy2arr550 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq550[5] { + yym567 := z.EncBinary() + _ = yym567 + if false { + } else { + r.EncodeBool(bool(x.ReadOnly)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq550[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("readOnly")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym568 := z.EncBinary() + _ = yym568 + if false { } else { r.EncodeBool(bool(x.ReadOnly)) } @@ -8562,25 +8588,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym566 := z.DecBinary() - _ = yym566 + yym569 := z.DecBinary() + _ = yym569 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct567 := r.ContainerType() - if yyct567 == codecSelferValueTypeMap1234 { - yyl567 := r.ReadMapStart() - if yyl567 == 0 { + yyct570 := r.ContainerType() + if yyct570 == codecSelferValueTypeMap1234 { + yyl570 := r.ReadMapStart() + if yyl570 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl567, d) + x.codecDecodeSelfFromMap(yyl570, d) } - } else if yyct567 == codecSelferValueTypeArray1234 { - yyl567 := r.ReadArrayStart() - if yyl567 == 0 { + } else if yyct570 == codecSelferValueTypeArray1234 { + yyl570 := r.ReadArrayStart() + if yyl570 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl567, d) + x.codecDecodeSelfFromArray(yyl570, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8592,12 +8618,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys568Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys568Slc - var yyhl568 bool = l >= 0 - for yyj568 := 0; ; yyj568++ { - if yyhl568 { - if yyj568 >= l { + var yys571Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys571Slc + var yyhl571 bool = l >= 0 + for yyj571 := 0; ; yyj571++ { + if yyhl571 { + if yyj571 >= l { break } } else { @@ -8606,10 +8632,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys568Slc = r.DecodeBytes(yys568Slc, true, true) - yys568 := string(yys568Slc) + yys571Slc = r.DecodeBytes(yys571Slc, true, true) + yys571 := string(yys571Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys568 { + switch yys571 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -8628,6 +8654,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } else { x.Lun = int(r.DecodeInt(codecSelferBitsize1234)) } + case "iscsiInterface": + if r.TryDecodeAsNil() { + x.ISCSIInterface = "" + } else { + x.ISCSIInterface = string(r.DecodeString()) + } case "fsType": if r.TryDecodeAsNil() { x.FSType = "" @@ -8641,9 +8673,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys568) - } // end switch yys568 - } // end for yyj568 + z.DecStructFieldNotFound(-1, yys571) + } // end switch yys571 + } // end for yyj571 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8651,16 +8683,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj574 int - var yyb574 bool - var yyhl574 bool = l >= 0 - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + var yyj578 int + var yyb578 bool + var yyhl578 bool = l >= 0 + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8670,13 +8702,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8686,13 +8718,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8702,13 +8734,29 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l + } else { + yyb578 = r.CheckBreak() + } + if yyb578 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ISCSIInterface = "" + } else { + x.ISCSIInterface = string(r.DecodeString()) + } + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8718,13 +8766,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -8735,17 +8783,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj574++ - if yyhl574 { - yyb574 = yyj574 > l + yyj578++ + if yyhl578 { + yyb578 = yyj578 > l } else { - yyb574 = r.CheckBreak() + yyb578 = r.CheckBreak() } - if yyb574 { + if yyb578 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj574-1, "") + z.DecStructFieldNotFound(yyj578-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -8757,37 +8805,37 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym580 := z.EncBinary() - _ = yym580 + yym585 := z.EncBinary() + _ = yym585 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep581 := !z.EncBinary() - yy2arr581 := z.EncBasicHandle().StructToArray - var yyq581 [4]bool - _, _, _ = yysep581, yyq581, yy2arr581 - const yyr581 bool = false - yyq581[3] = x.ReadOnly != false - var yynn581 int - if yyr581 || yy2arr581 { + yysep586 := !z.EncBinary() + yy2arr586 := z.EncBasicHandle().StructToArray + var yyq586 [4]bool + _, _, _ = yysep586, yyq586, yy2arr586 + const yyr586 bool = false + yyq586[3] = x.ReadOnly != false + var yynn586 int + if yyr586 || yy2arr586 { r.EncodeArrayStart(4) } else { - yynn581 = 3 - for _, b := range yyq581 { + yynn586 = 3 + for _, b := range yyq586 { if b { - yynn581++ + yynn586++ } } - r.EncodeMapStart(yynn581) - yynn581 = 0 + r.EncodeMapStart(yynn586) + yynn586 = 0 } - if yyr581 || yy2arr581 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym583 := z.EncBinary() - _ = yym583 + yym588 := z.EncBinary() + _ = yym588 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -8800,25 +8848,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym584 := z.EncBinary() - _ = yym584 + yym589 := z.EncBinary() + _ = yym589 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr581 || yy2arr581 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy586 := *x.Lun - yym587 := z.EncBinary() - _ = yym587 + yy591 := *x.Lun + yym592 := z.EncBinary() + _ = yym592 if false { } else { - r.EncodeInt(int64(yy586)) + r.EncodeInt(int64(yy591)) } } } else { @@ -8828,19 +8876,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy588 := *x.Lun - yym589 := z.EncBinary() - _ = yym589 + yy593 := *x.Lun + yym594 := z.EncBinary() + _ = yym594 if false { } else { - r.EncodeInt(int64(yy588)) + r.EncodeInt(int64(yy593)) } } } - if yyr581 || yy2arr581 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym591 := z.EncBinary() - _ = yym591 + yym596 := z.EncBinary() + _ = yym596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -8849,18 +8897,18 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym592 := z.EncBinary() - _ = yym592 + yym597 := z.EncBinary() + _ = yym597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } - if yyr581 || yy2arr581 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq581[3] { - yym594 := z.EncBinary() - _ = yym594 + if yyq586[3] { + yym599 := z.EncBinary() + _ = yym599 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -8869,19 +8917,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq581[3] { + if yyq586[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym595 := z.EncBinary() - _ = yym595 + yym600 := z.EncBinary() + _ = yym600 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr581 || yy2arr581 { + if yyr586 || yy2arr586 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -8894,25 +8942,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym596 := z.DecBinary() - _ = yym596 + yym601 := z.DecBinary() + _ = yym601 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct597 := r.ContainerType() - if yyct597 == codecSelferValueTypeMap1234 { - yyl597 := r.ReadMapStart() - if yyl597 == 0 { + yyct602 := r.ContainerType() + if yyct602 == codecSelferValueTypeMap1234 { + yyl602 := r.ReadMapStart() + if yyl602 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl597, d) + x.codecDecodeSelfFromMap(yyl602, d) } - } else if yyct597 == codecSelferValueTypeArray1234 { - yyl597 := r.ReadArrayStart() - if yyl597 == 0 { + } else if yyct602 == codecSelferValueTypeArray1234 { + yyl602 := r.ReadArrayStart() + if yyl602 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl597, d) + x.codecDecodeSelfFromArray(yyl602, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -8924,12 +8972,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys598Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys598Slc - var yyhl598 bool = l >= 0 - for yyj598 := 0; ; yyj598++ { - if yyhl598 { - if yyj598 >= l { + var yys603Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys603Slc + var yyhl603 bool = l >= 0 + for yyj603 := 0; ; yyj603++ { + if yyhl603 { + if yyj603 >= l { break } } else { @@ -8938,20 +8986,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys598Slc = r.DecodeBytes(yys598Slc, true, true) - yys598 := string(yys598Slc) + yys603Slc = r.DecodeBytes(yys603Slc, true, true) + yys603 := string(yys603Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys598 { + switch yys603 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv599 := &x.TargetWWNs - yym600 := z.DecBinary() - _ = yym600 + yyv604 := &x.TargetWWNs + yym605 := z.DecBinary() + _ = yym605 if false { } else { - z.F.DecSliceStringX(yyv599, false, d) + z.F.DecSliceStringX(yyv604, false, d) } } case "lun": @@ -8963,8 +9011,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int) } - yym602 := z.DecBinary() - _ = yym602 + yym607 := z.DecBinary() + _ = yym607 if false { } else { *((*int)(x.Lun)) = int(r.DecodeInt(codecSelferBitsize1234)) @@ -8983,9 +9031,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys598) - } // end switch yys598 - } // end for yyj598 + z.DecStructFieldNotFound(-1, yys603) + } // end switch yys603 + } // end for yyj603 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -8993,16 +9041,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj605 int - var yyb605 bool - var yyhl605 bool = l >= 0 - yyj605++ - if yyhl605 { - yyb605 = yyj605 > l + var yyj610 int + var yyb610 bool + var yyhl610 bool = l >= 0 + yyj610++ + if yyhl610 { + yyb610 = yyj610 > l } else { - yyb605 = r.CheckBreak() + yyb610 = r.CheckBreak() } - if yyb605 { + if yyb610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9010,21 +9058,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv606 := &x.TargetWWNs - yym607 := z.DecBinary() - _ = yym607 + yyv611 := &x.TargetWWNs + yym612 := z.DecBinary() + _ = yym612 if false { } else { - z.F.DecSliceStringX(yyv606, false, d) + z.F.DecSliceStringX(yyv611, false, d) } } - yyj605++ - if yyhl605 { - yyb605 = yyj605 > l + yyj610++ + if yyhl610 { + yyb610 = yyj610 > l } else { - yyb605 = r.CheckBreak() + yyb610 = r.CheckBreak() } - if yyb605 { + if yyb610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9037,20 +9085,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int) } - yym609 := z.DecBinary() - _ = yym609 + yym614 := z.DecBinary() + _ = yym614 if false { } else { *((*int)(x.Lun)) = int(r.DecodeInt(codecSelferBitsize1234)) } } - yyj605++ - if yyhl605 { - yyb605 = yyj605 > l + yyj610++ + if yyhl610 { + yyb610 = yyj610 > l } else { - yyb605 = r.CheckBreak() + yyb610 = r.CheckBreak() } - if yyb605 { + if yyb610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9060,13 +9108,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj605++ - if yyhl605 { - yyb605 = yyj605 > l + yyj610++ + if yyhl610 { + yyb610 = yyj610 > l } else { - yyb605 = r.CheckBreak() + yyb610 = r.CheckBreak() } - if yyb605 { + if yyb610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9077,17 +9125,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj605++ - if yyhl605 { - yyb605 = yyj605 > l + yyj610++ + if yyhl610 { + yyb610 = yyj610 > l } else { - yyb605 = r.CheckBreak() + yyb610 = r.CheckBreak() } - if yyb605 { + if yyb610 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj605-1, "") + z.DecStructFieldNotFound(yyj610-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9099,36 +9147,36 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) if x == nil { r.EncodeNil() } else { - yym612 := z.EncBinary() - _ = yym612 + yym617 := z.EncBinary() + _ = yym617 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep613 := !z.EncBinary() - yy2arr613 := z.EncBasicHandle().StructToArray - var yyq613 [4]bool - _, _, _ = yysep613, yyq613, yy2arr613 - const yyr613 bool = false - yyq613[1] = x.FSType != "" - yyq613[2] = x.Partition != 0 - yyq613[3] = x.ReadOnly != false - var yynn613 int - if yyr613 || yy2arr613 { + yysep618 := !z.EncBinary() + yy2arr618 := z.EncBasicHandle().StructToArray + var yyq618 [4]bool + _, _, _ = yysep618, yyq618, yy2arr618 + const yyr618 bool = false + yyq618[1] = x.FSType != "" + yyq618[2] = x.Partition != 0 + yyq618[3] = x.ReadOnly != false + var yynn618 int + if yyr618 || yy2arr618 { r.EncodeArrayStart(4) } else { - yynn613 = 1 - for _, b := range yyq613 { + yynn618 = 1 + for _, b := range yyq618 { if b { - yynn613++ + yynn618++ } } - r.EncodeMapStart(yynn613) - yynn613 = 0 + r.EncodeMapStart(yynn618) + yynn618 = 0 } - if yyr613 || yy2arr613 { + if yyr618 || yy2arr618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym615 := z.EncBinary() - _ = yym615 + yym620 := z.EncBinary() + _ = yym620 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -9137,18 +9185,18 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym616 := z.EncBinary() - _ = yym616 + yym621 := z.EncBinary() + _ = yym621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr613 || yy2arr613 { + if yyr618 || yy2arr618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[1] { - yym618 := z.EncBinary() - _ = yym618 + if yyq618[1] { + yym623 := z.EncBinary() + _ = yym623 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -9157,23 +9205,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq613[1] { + if yyq618[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym619 := z.EncBinary() - _ = yym619 + yym624 := z.EncBinary() + _ = yym624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr613 || yy2arr613 { + if yyr618 || yy2arr618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[2] { - yym621 := z.EncBinary() - _ = yym621 + if yyq618[2] { + yym626 := z.EncBinary() + _ = yym626 if false { } else { r.EncodeInt(int64(x.Partition)) @@ -9182,23 +9230,23 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeInt(0) } } else { - if yyq613[2] { + if yyq618[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("partition")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym622 := z.EncBinary() - _ = yym622 + yym627 := z.EncBinary() + _ = yym627 if false { } else { r.EncodeInt(int64(x.Partition)) } } } - if yyr613 || yy2arr613 { + if yyr618 || yy2arr618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq613[3] { - yym624 := z.EncBinary() - _ = yym624 + if yyq618[3] { + yym629 := z.EncBinary() + _ = yym629 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9207,19 +9255,19 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) r.EncodeBool(false) } } else { - if yyq613[3] { + if yyq618[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym625 := z.EncBinary() - _ = yym625 + yym630 := z.EncBinary() + _ = yym630 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr613 || yy2arr613 { + if yyr618 || yy2arr618 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9232,25 +9280,25 @@ func (x *AWSElasticBlockStoreVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym626 := z.DecBinary() - _ = yym626 + yym631 := z.DecBinary() + _ = yym631 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct627 := r.ContainerType() - if yyct627 == codecSelferValueTypeMap1234 { - yyl627 := r.ReadMapStart() - if yyl627 == 0 { + yyct632 := r.ContainerType() + if yyct632 == codecSelferValueTypeMap1234 { + yyl632 := r.ReadMapStart() + if yyl632 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl627, d) + x.codecDecodeSelfFromMap(yyl632, d) } - } else if yyct627 == codecSelferValueTypeArray1234 { - yyl627 := r.ReadArrayStart() - if yyl627 == 0 { + } else if yyct632 == codecSelferValueTypeArray1234 { + yyl632 := r.ReadArrayStart() + if yyl632 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl627, d) + x.codecDecodeSelfFromArray(yyl632, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9262,12 +9310,12 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys628Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys628Slc - var yyhl628 bool = l >= 0 - for yyj628 := 0; ; yyj628++ { - if yyhl628 { - if yyj628 >= l { + var yys633Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys633Slc + var yyhl633 bool = l >= 0 + for yyj633 := 0; ; yyj633++ { + if yyhl633 { + if yyj633 >= l { break } } else { @@ -9276,10 +9324,10 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys628Slc = r.DecodeBytes(yys628Slc, true, true) - yys628 := string(yys628Slc) + yys633Slc = r.DecodeBytes(yys633Slc, true, true) + yys633 := string(yys633Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys628 { + switch yys633 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -9305,9 +9353,9 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromMap(l int, d *code x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys628) - } // end switch yys628 - } // end for yyj628 + z.DecStructFieldNotFound(-1, yys633) + } // end switch yys633 + } // end for yyj633 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9315,16 +9363,16 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj633 int - var yyb633 bool - var yyhl633 bool = l >= 0 - yyj633++ - if yyhl633 { - yyb633 = yyj633 > l + var yyj638 int + var yyb638 bool + var yyhl638 bool = l >= 0 + yyj638++ + if yyhl638 { + yyb638 = yyj638 > l } else { - yyb633 = r.CheckBreak() + yyb638 = r.CheckBreak() } - if yyb633 { + if yyb638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9334,13 +9382,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.VolumeID = string(r.DecodeString()) } - yyj633++ - if yyhl633 { - yyb633 = yyj633 > l + yyj638++ + if yyhl638 { + yyb638 = yyj638 > l } else { - yyb633 = r.CheckBreak() + yyb638 = r.CheckBreak() } - if yyb633 { + if yyb638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9350,13 +9398,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.FSType = string(r.DecodeString()) } - yyj633++ - if yyhl633 { - yyb633 = yyj633 > l + yyj638++ + if yyhl638 { + yyb638 = yyj638 > l } else { - yyb633 = r.CheckBreak() + yyb638 = r.CheckBreak() } - if yyb633 { + if yyb638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9366,13 +9414,13 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co } else { x.Partition = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj633++ - if yyhl633 { - yyb633 = yyj633 > l + yyj638++ + if yyhl638 { + yyb638 = yyj638 > l } else { - yyb633 = r.CheckBreak() + yyb638 = r.CheckBreak() } - if yyb633 { + if yyb638 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9383,17 +9431,17 @@ func (x *AWSElasticBlockStoreVolumeSource) codecDecodeSelfFromArray(l int, d *co x.ReadOnly = bool(r.DecodeBool()) } for { - yyj633++ - if yyhl633 { - yyb633 = yyj633 > l + yyj638++ + if yyhl638 { + yyb638 = yyj638 > l } else { - yyb633 = r.CheckBreak() + yyb638 = r.CheckBreak() } - if yyb633 { + if yyb638 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj633-1, "") + z.DecStructFieldNotFound(yyj638-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9405,35 +9453,35 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym638 := z.EncBinary() - _ = yym638 + yym643 := z.EncBinary() + _ = yym643 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep639 := !z.EncBinary() - yy2arr639 := z.EncBasicHandle().StructToArray - var yyq639 [3]bool - _, _, _ = yysep639, yyq639, yy2arr639 - const yyr639 bool = false - yyq639[1] = x.Revision != "" - yyq639[2] = x.Directory != "" - var yynn639 int - if yyr639 || yy2arr639 { + yysep644 := !z.EncBinary() + yy2arr644 := z.EncBasicHandle().StructToArray + var yyq644 [3]bool + _, _, _ = yysep644, yyq644, yy2arr644 + const yyr644 bool = false + yyq644[1] = x.Revision != "" + yyq644[2] = x.Directory != "" + var yynn644 int + if yyr644 || yy2arr644 { r.EncodeArrayStart(3) } else { - yynn639 = 1 - for _, b := range yyq639 { + yynn644 = 1 + for _, b := range yyq644 { if b { - yynn639++ + yynn644++ } } - r.EncodeMapStart(yynn639) - yynn639 = 0 + r.EncodeMapStart(yynn644) + yynn644 = 0 } - if yyr639 || yy2arr639 { + if yyr644 || yy2arr644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym641 := z.EncBinary() - _ = yym641 + yym646 := z.EncBinary() + _ = yym646 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) @@ -9442,18 +9490,18 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("repository")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym642 := z.EncBinary() - _ = yym642 + yym647 := z.EncBinary() + _ = yym647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Repository)) } } - if yyr639 || yy2arr639 { + if yyr644 || yy2arr644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq639[1] { - yym644 := z.EncBinary() - _ = yym644 + if yyq644[1] { + yym649 := z.EncBinary() + _ = yym649 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) @@ -9462,23 +9510,23 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq639[1] { + if yyq644[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("revision")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym645 := z.EncBinary() - _ = yym645 + yym650 := z.EncBinary() + _ = yym650 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Revision)) } } } - if yyr639 || yy2arr639 { + if yyr644 || yy2arr644 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq639[2] { - yym647 := z.EncBinary() - _ = yym647 + if yyq644[2] { + yym652 := z.EncBinary() + _ = yym652 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) @@ -9487,19 +9535,19 @@ func (x *GitRepoVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq639[2] { + if yyq644[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("directory")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym648 := z.EncBinary() - _ = yym648 + yym653 := z.EncBinary() + _ = yym653 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Directory)) } } } - if yyr639 || yy2arr639 { + if yyr644 || yy2arr644 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9512,25 +9560,25 @@ func (x *GitRepoVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym649 := z.DecBinary() - _ = yym649 + yym654 := z.DecBinary() + _ = yym654 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct650 := r.ContainerType() - if yyct650 == codecSelferValueTypeMap1234 { - yyl650 := r.ReadMapStart() - if yyl650 == 0 { + yyct655 := r.ContainerType() + if yyct655 == codecSelferValueTypeMap1234 { + yyl655 := r.ReadMapStart() + if yyl655 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl650, d) + x.codecDecodeSelfFromMap(yyl655, d) } - } else if yyct650 == codecSelferValueTypeArray1234 { - yyl650 := r.ReadArrayStart() - if yyl650 == 0 { + } else if yyct655 == codecSelferValueTypeArray1234 { + yyl655 := r.ReadArrayStart() + if yyl655 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl650, d) + x.codecDecodeSelfFromArray(yyl655, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9542,12 +9590,12 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys651Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys651Slc - var yyhl651 bool = l >= 0 - for yyj651 := 0; ; yyj651++ { - if yyhl651 { - if yyj651 >= l { + var yys656Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys656Slc + var yyhl656 bool = l >= 0 + for yyj656 := 0; ; yyj656++ { + if yyhl656 { + if yyj656 >= l { break } } else { @@ -9556,10 +9604,10 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys651Slc = r.DecodeBytes(yys651Slc, true, true) - yys651 := string(yys651Slc) + yys656Slc = r.DecodeBytes(yys656Slc, true, true) + yys656 := string(yys656Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys651 { + switch yys656 { case "repository": if r.TryDecodeAsNil() { x.Repository = "" @@ -9579,9 +9627,9 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Directory = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys651) - } // end switch yys651 - } // end for yyj651 + z.DecStructFieldNotFound(-1, yys656) + } // end switch yys656 + } // end for yyj656 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9589,16 +9637,16 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj655 int - var yyb655 bool - var yyhl655 bool = l >= 0 - yyj655++ - if yyhl655 { - yyb655 = yyj655 > l + var yyj660 int + var yyb660 bool + var yyhl660 bool = l >= 0 + yyj660++ + if yyhl660 { + yyb660 = yyj660 > l } else { - yyb655 = r.CheckBreak() + yyb660 = r.CheckBreak() } - if yyb655 { + if yyb660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9608,13 +9656,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Repository = string(r.DecodeString()) } - yyj655++ - if yyhl655 { - yyb655 = yyj655 > l + yyj660++ + if yyhl660 { + yyb660 = yyj660 > l } else { - yyb655 = r.CheckBreak() + yyb660 = r.CheckBreak() } - if yyb655 { + if yyb660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9624,13 +9672,13 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Revision = string(r.DecodeString()) } - yyj655++ - if yyhl655 { - yyb655 = yyj655 > l + yyj660++ + if yyhl660 { + yyb660 = yyj660 > l } else { - yyb655 = r.CheckBreak() + yyb660 = r.CheckBreak() } - if yyb655 { + if yyb660 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9641,17 +9689,17 @@ func (x *GitRepoVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Directory = string(r.DecodeString()) } for { - yyj655++ - if yyhl655 { - yyb655 = yyj655 > l + yyj660++ + if yyhl660 { + yyb660 = yyj660 > l } else { - yyb655 = r.CheckBreak() + yyb660 = r.CheckBreak() } - if yyb655 { + if yyb660 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj655-1, "") + z.DecStructFieldNotFound(yyj660-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9663,33 +9711,33 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym659 := z.EncBinary() - _ = yym659 + yym664 := z.EncBinary() + _ = yym664 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep660 := !z.EncBinary() - yy2arr660 := z.EncBasicHandle().StructToArray - var yyq660 [1]bool - _, _, _ = yysep660, yyq660, yy2arr660 - const yyr660 bool = false - var yynn660 int - if yyr660 || yy2arr660 { + yysep665 := !z.EncBinary() + yy2arr665 := z.EncBasicHandle().StructToArray + var yyq665 [1]bool + _, _, _ = yysep665, yyq665, yy2arr665 + const yyr665 bool = false + var yynn665 int + if yyr665 || yy2arr665 { r.EncodeArrayStart(1) } else { - yynn660 = 1 - for _, b := range yyq660 { + yynn665 = 1 + for _, b := range yyq665 { if b { - yynn660++ + yynn665++ } } - r.EncodeMapStart(yynn660) - yynn660 = 0 + r.EncodeMapStart(yynn665) + yynn665 = 0 } - if yyr660 || yy2arr660 { + if yyr665 || yy2arr665 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym662 := z.EncBinary() - _ = yym662 + yym667 := z.EncBinary() + _ = yym667 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) @@ -9698,14 +9746,14 @@ func (x *SecretVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym663 := z.EncBinary() - _ = yym663 + yym668 := z.EncBinary() + _ = yym668 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretName)) } } - if yyr660 || yy2arr660 { + if yyr665 || yy2arr665 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9718,25 +9766,25 @@ func (x *SecretVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym664 := z.DecBinary() - _ = yym664 + yym669 := z.DecBinary() + _ = yym669 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct665 := r.ContainerType() - if yyct665 == codecSelferValueTypeMap1234 { - yyl665 := r.ReadMapStart() - if yyl665 == 0 { + yyct670 := r.ContainerType() + if yyct670 == codecSelferValueTypeMap1234 { + yyl670 := r.ReadMapStart() + if yyl670 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl665, d) + x.codecDecodeSelfFromMap(yyl670, d) } - } else if yyct665 == codecSelferValueTypeArray1234 { - yyl665 := r.ReadArrayStart() - if yyl665 == 0 { + } else if yyct670 == codecSelferValueTypeArray1234 { + yyl670 := r.ReadArrayStart() + if yyl670 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl665, d) + x.codecDecodeSelfFromArray(yyl670, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9748,12 +9796,12 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys666Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys666Slc - var yyhl666 bool = l >= 0 - for yyj666 := 0; ; yyj666++ { - if yyhl666 { - if yyj666 >= l { + var yys671Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys671Slc + var yyhl671 bool = l >= 0 + for yyj671 := 0; ; yyj671++ { + if yyhl671 { + if yyj671 >= l { break } } else { @@ -9762,10 +9810,10 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys666Slc = r.DecodeBytes(yys666Slc, true, true) - yys666 := string(yys666Slc) + yys671Slc = r.DecodeBytes(yys671Slc, true, true) + yys671 := string(yys671Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys666 { + switch yys671 { case "secretName": if r.TryDecodeAsNil() { x.SecretName = "" @@ -9773,9 +9821,9 @@ func (x *SecretVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.SecretName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys666) - } // end switch yys666 - } // end for yyj666 + z.DecStructFieldNotFound(-1, yys671) + } // end switch yys671 + } // end for yyj671 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -9783,16 +9831,16 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj668 int - var yyb668 bool - var yyhl668 bool = l >= 0 - yyj668++ - if yyhl668 { - yyb668 = yyj668 > l + var yyj673 int + var yyb673 bool + var yyhl673 bool = l >= 0 + yyj673++ + if yyhl673 { + yyb673 = yyj673 > l } else { - yyb668 = r.CheckBreak() + yyb673 = r.CheckBreak() } - if yyb668 { + if yyb673 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -9803,17 +9851,17 @@ func (x *SecretVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.SecretName = string(r.DecodeString()) } for { - yyj668++ - if yyhl668 { - yyb668 = yyj668 > l + yyj673++ + if yyhl673 { + yyb673 = yyj673 > l } else { - yyb668 = r.CheckBreak() + yyb673 = r.CheckBreak() } - if yyb668 { + if yyb673 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj668-1, "") + z.DecStructFieldNotFound(yyj673-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -9825,34 +9873,34 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym670 := z.EncBinary() - _ = yym670 + yym675 := z.EncBinary() + _ = yym675 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep671 := !z.EncBinary() - yy2arr671 := z.EncBasicHandle().StructToArray - var yyq671 [3]bool - _, _, _ = yysep671, yyq671, yy2arr671 - const yyr671 bool = false - yyq671[2] = x.ReadOnly != false - var yynn671 int - if yyr671 || yy2arr671 { + yysep676 := !z.EncBinary() + yy2arr676 := z.EncBasicHandle().StructToArray + var yyq676 [3]bool + _, _, _ = yysep676, yyq676, yy2arr676 + const yyr676 bool = false + yyq676[2] = x.ReadOnly != false + var yynn676 int + if yyr676 || yy2arr676 { r.EncodeArrayStart(3) } else { - yynn671 = 2 - for _, b := range yyq671 { + yynn676 = 2 + for _, b := range yyq676 { if b { - yynn671++ + yynn676++ } } - r.EncodeMapStart(yynn671) - yynn671 = 0 + r.EncodeMapStart(yynn676) + yynn676 = 0 } - if yyr671 || yy2arr671 { + if yyr676 || yy2arr676 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym673 := z.EncBinary() - _ = yym673 + yym678 := z.EncBinary() + _ = yym678 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) @@ -9861,17 +9909,17 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("server")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym674 := z.EncBinary() - _ = yym674 + yym679 := z.EncBinary() + _ = yym679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Server)) } } - if yyr671 || yy2arr671 { + if yyr676 || yy2arr676 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym676 := z.EncBinary() - _ = yym676 + yym681 := z.EncBinary() + _ = yym681 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -9880,18 +9928,18 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym677 := z.EncBinary() - _ = yym677 + yym682 := z.EncBinary() + _ = yym682 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr671 || yy2arr671 { + if yyr676 || yy2arr676 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq671[2] { - yym679 := z.EncBinary() - _ = yym679 + if yyq676[2] { + yym684 := z.EncBinary() + _ = yym684 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -9900,19 +9948,19 @@ func (x *NFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq671[2] { + if yyq676[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym680 := z.EncBinary() - _ = yym680 + yym685 := z.EncBinary() + _ = yym685 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr671 || yy2arr671 { + if yyr676 || yy2arr676 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -9925,25 +9973,25 @@ func (x *NFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym681 := z.DecBinary() - _ = yym681 + yym686 := z.DecBinary() + _ = yym686 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct682 := r.ContainerType() - if yyct682 == codecSelferValueTypeMap1234 { - yyl682 := r.ReadMapStart() - if yyl682 == 0 { + yyct687 := r.ContainerType() + if yyct687 == codecSelferValueTypeMap1234 { + yyl687 := r.ReadMapStart() + if yyl687 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl682, d) + x.codecDecodeSelfFromMap(yyl687, d) } - } else if yyct682 == codecSelferValueTypeArray1234 { - yyl682 := r.ReadArrayStart() - if yyl682 == 0 { + } else if yyct687 == codecSelferValueTypeArray1234 { + yyl687 := r.ReadArrayStart() + if yyl687 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl682, d) + x.codecDecodeSelfFromArray(yyl687, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -9955,12 +10003,12 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys683Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys683Slc - var yyhl683 bool = l >= 0 - for yyj683 := 0; ; yyj683++ { - if yyhl683 { - if yyj683 >= l { + var yys688Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys688Slc + var yyhl688 bool = l >= 0 + for yyj688 := 0; ; yyj688++ { + if yyhl688 { + if yyj688 >= l { break } } else { @@ -9969,10 +10017,10 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys683Slc = r.DecodeBytes(yys683Slc, true, true) - yys683 := string(yys683Slc) + yys688Slc = r.DecodeBytes(yys688Slc, true, true) + yys688 := string(yys688Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys683 { + switch yys688 { case "server": if r.TryDecodeAsNil() { x.Server = "" @@ -9992,9 +10040,9 @@ func (x *NFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys683) - } // end switch yys683 - } // end for yyj683 + z.DecStructFieldNotFound(-1, yys688) + } // end switch yys688 + } // end for yyj688 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10002,16 +10050,16 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj687 int - var yyb687 bool - var yyhl687 bool = l >= 0 - yyj687++ - if yyhl687 { - yyb687 = yyj687 > l + var yyj692 int + var yyb692 bool + var yyhl692 bool = l >= 0 + yyj692++ + if yyhl692 { + yyb692 = yyj692 > l } else { - yyb687 = r.CheckBreak() + yyb692 = r.CheckBreak() } - if yyb687 { + if yyb692 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10021,13 +10069,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Server = string(r.DecodeString()) } - yyj687++ - if yyhl687 { - yyb687 = yyj687 > l + yyj692++ + if yyhl692 { + yyb692 = yyj692 > l } else { - yyb687 = r.CheckBreak() + yyb692 = r.CheckBreak() } - if yyb687 { + if yyb692 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10037,13 +10085,13 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Path = string(r.DecodeString()) } - yyj687++ - if yyhl687 { - yyb687 = yyj687 > l + yyj692++ + if yyhl692 { + yyb692 = yyj692 > l } else { - yyb687 = r.CheckBreak() + yyb692 = r.CheckBreak() } - if yyb687 { + if yyb692 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10054,17 +10102,17 @@ func (x *NFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj687++ - if yyhl687 { - yyb687 = yyj687 > l + yyj692++ + if yyhl692 { + yyb692 = yyj692 > l } else { - yyb687 = r.CheckBreak() + yyb692 = r.CheckBreak() } - if yyb687 { + if yyb692 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj687-1, "") + z.DecStructFieldNotFound(yyj692-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10076,34 +10124,34 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym691 := z.EncBinary() - _ = yym691 + yym696 := z.EncBinary() + _ = yym696 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep692 := !z.EncBinary() - yy2arr692 := z.EncBasicHandle().StructToArray - var yyq692 [3]bool - _, _, _ = yysep692, yyq692, yy2arr692 - const yyr692 bool = false - yyq692[2] = x.ReadOnly != false - var yynn692 int - if yyr692 || yy2arr692 { + yysep697 := !z.EncBinary() + yy2arr697 := z.EncBasicHandle().StructToArray + var yyq697 [3]bool + _, _, _ = yysep697, yyq697, yy2arr697 + const yyr697 bool = false + yyq697[2] = x.ReadOnly != false + var yynn697 int + if yyr697 || yy2arr697 { r.EncodeArrayStart(3) } else { - yynn692 = 2 - for _, b := range yyq692 { + yynn697 = 2 + for _, b := range yyq697 { if b { - yynn692++ + yynn697++ } } - r.EncodeMapStart(yynn692) - yynn692 = 0 + r.EncodeMapStart(yynn697) + yynn697 = 0 } - if yyr692 || yy2arr692 { + if yyr697 || yy2arr697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym694 := z.EncBinary() - _ = yym694 + yym699 := z.EncBinary() + _ = yym699 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) @@ -10112,17 +10160,17 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("endpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym695 := z.EncBinary() - _ = yym695 + yym700 := z.EncBinary() + _ = yym700 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.EndpointsName)) } } - if yyr692 || yy2arr692 { + if yyr697 || yy2arr697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym697 := z.EncBinary() - _ = yym697 + yym702 := z.EncBinary() + _ = yym702 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -10131,18 +10179,18 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym698 := z.EncBinary() - _ = yym698 + yym703 := z.EncBinary() + _ = yym703 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr692 || yy2arr692 { + if yyr697 || yy2arr697 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq692[2] { - yym700 := z.EncBinary() - _ = yym700 + if yyq697[2] { + yym705 := z.EncBinary() + _ = yym705 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10151,19 +10199,19 @@ func (x *GlusterfsVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq692[2] { + if yyq697[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym701 := z.EncBinary() - _ = yym701 + yym706 := z.EncBinary() + _ = yym706 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr692 || yy2arr692 { + if yyr697 || yy2arr697 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10176,25 +10224,25 @@ func (x *GlusterfsVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym702 := z.DecBinary() - _ = yym702 + yym707 := z.DecBinary() + _ = yym707 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct703 := r.ContainerType() - if yyct703 == codecSelferValueTypeMap1234 { - yyl703 := r.ReadMapStart() - if yyl703 == 0 { + yyct708 := r.ContainerType() + if yyct708 == codecSelferValueTypeMap1234 { + yyl708 := r.ReadMapStart() + if yyl708 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl703, d) + x.codecDecodeSelfFromMap(yyl708, d) } - } else if yyct703 == codecSelferValueTypeArray1234 { - yyl703 := r.ReadArrayStart() - if yyl703 == 0 { + } else if yyct708 == codecSelferValueTypeArray1234 { + yyl708 := r.ReadArrayStart() + if yyl708 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl703, d) + x.codecDecodeSelfFromArray(yyl708, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10206,12 +10254,12 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys704Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys704Slc - var yyhl704 bool = l >= 0 - for yyj704 := 0; ; yyj704++ { - if yyhl704 { - if yyj704 >= l { + var yys709Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys709Slc + var yyhl709 bool = l >= 0 + for yyj709 := 0; ; yyj709++ { + if yyhl709 { + if yyj709 >= l { break } } else { @@ -10220,10 +10268,10 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys704Slc = r.DecodeBytes(yys704Slc, true, true) - yys704 := string(yys704Slc) + yys709Slc = r.DecodeBytes(yys709Slc, true, true) + yys709 := string(yys709Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys704 { + switch yys709 { case "endpoints": if r.TryDecodeAsNil() { x.EndpointsName = "" @@ -10243,9 +10291,9 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys704) - } // end switch yys704 - } // end for yyj704 + z.DecStructFieldNotFound(-1, yys709) + } // end switch yys709 + } // end for yyj709 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10253,16 +10301,16 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj708 int - var yyb708 bool - var yyhl708 bool = l >= 0 - yyj708++ - if yyhl708 { - yyb708 = yyj708 > l + var yyj713 int + var yyb713 bool + var yyhl713 bool = l >= 0 + yyj713++ + if yyhl713 { + yyb713 = yyj713 > l } else { - yyb708 = r.CheckBreak() + yyb713 = r.CheckBreak() } - if yyb708 { + if yyb713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10272,13 +10320,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.EndpointsName = string(r.DecodeString()) } - yyj708++ - if yyhl708 { - yyb708 = yyj708 > l + yyj713++ + if yyhl713 { + yyb713 = yyj713 > l } else { - yyb708 = r.CheckBreak() + yyb713 = r.CheckBreak() } - if yyb708 { + if yyb713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10288,13 +10336,13 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj708++ - if yyhl708 { - yyb708 = yyj708 > l + yyj713++ + if yyhl713 { + yyb713 = yyj713 > l } else { - yyb708 = r.CheckBreak() + yyb713 = r.CheckBreak() } - if yyb708 { + if yyb713 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10305,17 +10353,17 @@ func (x *GlusterfsVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.ReadOnly = bool(r.DecodeBool()) } for { - yyj708++ - if yyhl708 { - yyb708 = yyj708 > l + yyj713++ + if yyhl713 { + yyb713 = yyj713 > l } else { - yyb708 = r.CheckBreak() + yyb713 = r.CheckBreak() } - if yyb708 { + if yyb713 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj708-1, "") + z.DecStructFieldNotFound(yyj713-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10327,38 +10375,38 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym712 := z.EncBinary() - _ = yym712 + yym717 := z.EncBinary() + _ = yym717 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep713 := !z.EncBinary() - yy2arr713 := z.EncBasicHandle().StructToArray - var yyq713 [8]bool - _, _, _ = yysep713, yyq713, yy2arr713 - const yyr713 bool = false - yyq713[2] = x.FSType != "" - yyq713[7] = x.ReadOnly != false - var yynn713 int - if yyr713 || yy2arr713 { + yysep718 := !z.EncBinary() + yy2arr718 := z.EncBasicHandle().StructToArray + var yyq718 [8]bool + _, _, _ = yysep718, yyq718, yy2arr718 + const yyr718 bool = false + yyq718[2] = x.FSType != "" + yyq718[7] = x.ReadOnly != false + var yynn718 int + if yyr718 || yy2arr718 { r.EncodeArrayStart(8) } else { - yynn713 = 6 - for _, b := range yyq713 { + yynn718 = 6 + for _, b := range yyq718 { if b { - yynn713++ + yynn718++ } } - r.EncodeMapStart(yynn713) - yynn713 = 0 + r.EncodeMapStart(yynn718) + yynn718 = 0 } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.CephMonitors == nil { r.EncodeNil() } else { - yym715 := z.EncBinary() - _ = yym715 + yym720 := z.EncBinary() + _ = yym720 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) @@ -10371,18 +10419,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.CephMonitors == nil { r.EncodeNil() } else { - yym716 := z.EncBinary() - _ = yym716 + yym721 := z.EncBinary() + _ = yym721 if false { } else { z.F.EncSliceStringV(x.CephMonitors, false, e) } } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym718 := z.EncBinary() - _ = yym718 + yym723 := z.EncBinary() + _ = yym723 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) @@ -10391,18 +10439,18 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym719 := z.EncBinary() - _ = yym719 + yym724 := z.EncBinary() + _ = yym724 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDImage)) } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq713[2] { - yym721 := z.EncBinary() - _ = yym721 + if yyq718[2] { + yym726 := z.EncBinary() + _ = yym726 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10411,22 +10459,22 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq713[2] { + if yyq718[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym722 := z.EncBinary() - _ = yym722 + yym727 := z.EncBinary() + _ = yym727 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym724 := z.EncBinary() - _ = yym724 + yym729 := z.EncBinary() + _ = yym729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) @@ -10435,17 +10483,17 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("pool")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym725 := z.EncBinary() - _ = yym725 + yym730 := z.EncBinary() + _ = yym730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RBDPool)) } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym727 := z.EncBinary() - _ = yym727 + yym732 := z.EncBinary() + _ = yym732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) @@ -10454,17 +10502,17 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym728 := z.EncBinary() - _ = yym728 + yym733 := z.EncBinary() + _ = yym733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.RadosUser)) } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym730 := z.EncBinary() - _ = yym730 + yym735 := z.EncBinary() + _ = yym735 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) @@ -10473,14 +10521,14 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("keyring")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym731 := z.EncBinary() - _ = yym731 + yym736 := z.EncBinary() + _ = yym736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Keyring)) } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SecretRef == nil { r.EncodeNil() @@ -10497,11 +10545,11 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { x.SecretRef.CodecEncodeSelf(e) } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq713[7] { - yym734 := z.EncBinary() - _ = yym734 + if yyq718[7] { + yym739 := z.EncBinary() + _ = yym739 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10510,19 +10558,19 @@ func (x *RBDVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq713[7] { + if yyq718[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym735 := z.EncBinary() - _ = yym735 + yym740 := z.EncBinary() + _ = yym740 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr713 || yy2arr713 { + if yyr718 || yy2arr718 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10535,25 +10583,25 @@ func (x *RBDVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym736 := z.DecBinary() - _ = yym736 + yym741 := z.DecBinary() + _ = yym741 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct737 := r.ContainerType() - if yyct737 == codecSelferValueTypeMap1234 { - yyl737 := r.ReadMapStart() - if yyl737 == 0 { + yyct742 := r.ContainerType() + if yyct742 == codecSelferValueTypeMap1234 { + yyl742 := r.ReadMapStart() + if yyl742 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl737, d) + x.codecDecodeSelfFromMap(yyl742, d) } - } else if yyct737 == codecSelferValueTypeArray1234 { - yyl737 := r.ReadArrayStart() - if yyl737 == 0 { + } else if yyct742 == codecSelferValueTypeArray1234 { + yyl742 := r.ReadArrayStart() + if yyl742 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl737, d) + x.codecDecodeSelfFromArray(yyl742, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10565,12 +10613,12 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys738Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys738Slc - var yyhl738 bool = l >= 0 - for yyj738 := 0; ; yyj738++ { - if yyhl738 { - if yyj738 >= l { + var yys743Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys743Slc + var yyhl743 bool = l >= 0 + for yyj743 := 0; ; yyj743++ { + if yyhl743 { + if yyj743 >= l { break } } else { @@ -10579,20 +10627,20 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys738Slc = r.DecodeBytes(yys738Slc, true, true) - yys738 := string(yys738Slc) + yys743Slc = r.DecodeBytes(yys743Slc, true, true) + yys743 := string(yys743Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys738 { + switch yys743 { case "monitors": if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv739 := &x.CephMonitors - yym740 := z.DecBinary() - _ = yym740 + yyv744 := &x.CephMonitors + yym745 := z.DecBinary() + _ = yym745 if false { } else { - z.F.DecSliceStringX(yyv739, false, d) + z.F.DecSliceStringX(yyv744, false, d) } } case "image": @@ -10643,9 +10691,9 @@ func (x *RBDVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys738) - } // end switch yys738 - } // end for yyj738 + z.DecStructFieldNotFound(-1, yys743) + } // end switch yys743 + } // end for yyj743 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -10653,16 +10701,16 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj748 int - var yyb748 bool - var yyhl748 bool = l >= 0 - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + var yyj753 int + var yyb753 bool + var yyhl753 bool = l >= 0 + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10670,21 +10718,21 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.CephMonitors = nil } else { - yyv749 := &x.CephMonitors - yym750 := z.DecBinary() - _ = yym750 + yyv754 := &x.CephMonitors + yym755 := z.DecBinary() + _ = yym755 if false { } else { - z.F.DecSliceStringX(yyv749, false, d) + z.F.DecSliceStringX(yyv754, false, d) } } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10694,13 +10742,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDImage = string(r.DecodeString()) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10710,13 +10758,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.FSType = string(r.DecodeString()) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10726,13 +10774,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RBDPool = string(r.DecodeString()) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10742,13 +10790,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RadosUser = string(r.DecodeString()) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10758,13 +10806,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Keyring = string(r.DecodeString()) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10779,13 +10827,13 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SecretRef.CodecDecodeSelf(d) } - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -10796,17 +10844,17 @@ func (x *RBDVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } for { - yyj748++ - if yyhl748 { - yyb748 = yyj748 > l + yyj753++ + if yyhl753 { + yyb753 = yyj753 > l } else { - yyb748 = r.CheckBreak() + yyb753 = r.CheckBreak() } - if yyb748 { + if yyb753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj748-1, "") + z.DecStructFieldNotFound(yyj753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -10818,35 +10866,35 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym758 := z.EncBinary() - _ = yym758 + yym763 := z.EncBinary() + _ = yym763 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep759 := !z.EncBinary() - yy2arr759 := z.EncBasicHandle().StructToArray - var yyq759 [3]bool - _, _, _ = yysep759, yyq759, yy2arr759 - const yyr759 bool = false - yyq759[1] = x.FSType != "" - yyq759[2] = x.ReadOnly != false - var yynn759 int - if yyr759 || yy2arr759 { + yysep764 := !z.EncBinary() + yy2arr764 := z.EncBasicHandle().StructToArray + var yyq764 [3]bool + _, _, _ = yysep764, yyq764, yy2arr764 + const yyr764 bool = false + yyq764[1] = x.FSType != "" + yyq764[2] = x.ReadOnly != false + var yynn764 int + if yyr764 || yy2arr764 { r.EncodeArrayStart(3) } else { - yynn759 = 1 - for _, b := range yyq759 { + yynn764 = 1 + for _, b := range yyq764 { if b { - yynn759++ + yynn764++ } } - r.EncodeMapStart(yynn759) - yynn759 = 0 + r.EncodeMapStart(yynn764) + yynn764 = 0 } - if yyr759 || yy2arr759 { + if yyr764 || yy2arr764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym761 := z.EncBinary() - _ = yym761 + yym766 := z.EncBinary() + _ = yym766 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) @@ -10855,18 +10903,18 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym762 := z.EncBinary() - _ = yym762 + yym767 := z.EncBinary() + _ = yym767 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.VolumeID)) } } - if yyr759 || yy2arr759 { + if yyr764 || yy2arr764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[1] { - yym764 := z.EncBinary() - _ = yym764 + if yyq764[1] { + yym769 := z.EncBinary() + _ = yym769 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -10875,23 +10923,23 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq759[1] { + if yyq764[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym765 := z.EncBinary() - _ = yym765 + yym770 := z.EncBinary() + _ = yym770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } } - if yyr759 || yy2arr759 { + if yyr764 || yy2arr764 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[2] { - yym767 := z.EncBinary() - _ = yym767 + if yyq764[2] { + yym772 := z.EncBinary() + _ = yym772 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -10900,19 +10948,19 @@ func (x *CinderVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq759[2] { + if yyq764[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym768 := z.EncBinary() - _ = yym768 + yym773 := z.EncBinary() + _ = yym773 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr759 || yy2arr759 { + if yyr764 || yy2arr764 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -10925,25 +10973,25 @@ func (x *CinderVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym769 := z.DecBinary() - _ = yym769 + yym774 := z.DecBinary() + _ = yym774 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct770 := r.ContainerType() - if yyct770 == codecSelferValueTypeMap1234 { - yyl770 := r.ReadMapStart() - if yyl770 == 0 { + yyct775 := r.ContainerType() + if yyct775 == codecSelferValueTypeMap1234 { + yyl775 := r.ReadMapStart() + if yyl775 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl770, d) + x.codecDecodeSelfFromMap(yyl775, d) } - } else if yyct770 == codecSelferValueTypeArray1234 { - yyl770 := r.ReadArrayStart() - if yyl770 == 0 { + } else if yyct775 == codecSelferValueTypeArray1234 { + yyl775 := r.ReadArrayStart() + if yyl775 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl770, d) + x.codecDecodeSelfFromArray(yyl775, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -10955,12 +11003,12 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys771Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys771Slc - var yyhl771 bool = l >= 0 - for yyj771 := 0; ; yyj771++ { - if yyhl771 { - if yyj771 >= l { + var yys776Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys776Slc + var yyhl776 bool = l >= 0 + for yyj776 := 0; ; yyj776++ { + if yyhl776 { + if yyj776 >= l { break } } else { @@ -10969,10 +11017,10 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys771Slc = r.DecodeBytes(yys771Slc, true, true) - yys771 := string(yys771Slc) + yys776Slc = r.DecodeBytes(yys776Slc, true, true) + yys776 := string(yys776Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys771 { + switch yys776 { case "volumeID": if r.TryDecodeAsNil() { x.VolumeID = "" @@ -10992,9 +11040,9 @@ func (x *CinderVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys771) - } // end switch yys771 - } // end for yyj771 + z.DecStructFieldNotFound(-1, yys776) + } // end switch yys776 + } // end for yyj776 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11002,16 +11050,16 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj775 int - var yyb775 bool - var yyhl775 bool = l >= 0 - yyj775++ - if yyhl775 { - yyb775 = yyj775 > l + var yyj780 int + var yyb780 bool + var yyhl780 bool = l >= 0 + yyj780++ + if yyhl780 { + yyb780 = yyj780 > l } else { - yyb775 = r.CheckBreak() + yyb780 = r.CheckBreak() } - if yyb775 { + if yyb780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11021,13 +11069,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.VolumeID = string(r.DecodeString()) } - yyj775++ - if yyhl775 { - yyb775 = yyj775 > l + yyj780++ + if yyhl780 { + yyb780 = yyj780 > l } else { - yyb775 = r.CheckBreak() + yyb780 = r.CheckBreak() } - if yyb775 { + if yyb780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11037,13 +11085,13 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.FSType = string(r.DecodeString()) } - yyj775++ - if yyhl775 { - yyb775 = yyj775 > l + yyj780++ + if yyhl780 { + yyb780 = yyj780 > l } else { - yyb775 = r.CheckBreak() + yyb780 = r.CheckBreak() } - if yyb775 { + if yyb780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11054,17 +11102,17 @@ func (x *CinderVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj775++ - if yyhl775 { - yyb775 = yyj775 > l + yyj780++ + if yyhl780 { + yyb780 = yyj780 > l } else { - yyb775 = r.CheckBreak() + yyb780 = r.CheckBreak() } - if yyb775 { + if yyb780 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj775-1, "") + z.DecStructFieldNotFound(yyj780-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11076,40 +11124,40 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym779 := z.EncBinary() - _ = yym779 + yym784 := z.EncBinary() + _ = yym784 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep780 := !z.EncBinary() - yy2arr780 := z.EncBasicHandle().StructToArray - var yyq780 [5]bool - _, _, _ = yysep780, yyq780, yy2arr780 - const yyr780 bool = false - yyq780[1] = x.User != "" - yyq780[2] = x.SecretFile != "" - yyq780[3] = x.SecretRef != nil - yyq780[4] = x.ReadOnly != false - var yynn780 int - if yyr780 || yy2arr780 { + yysep785 := !z.EncBinary() + yy2arr785 := z.EncBasicHandle().StructToArray + var yyq785 [5]bool + _, _, _ = yysep785, yyq785, yy2arr785 + const yyr785 bool = false + yyq785[1] = x.User != "" + yyq785[2] = x.SecretFile != "" + yyq785[3] = x.SecretRef != nil + yyq785[4] = x.ReadOnly != false + var yynn785 int + if yyr785 || yy2arr785 { r.EncodeArrayStart(5) } else { - yynn780 = 1 - for _, b := range yyq780 { + yynn785 = 1 + for _, b := range yyq785 { if b { - yynn780++ + yynn785++ } } - r.EncodeMapStart(yynn780) - yynn780 = 0 + r.EncodeMapStart(yynn785) + yynn785 = 0 } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Monitors == nil { r.EncodeNil() } else { - yym782 := z.EncBinary() - _ = yym782 + yym787 := z.EncBinary() + _ = yym787 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) @@ -11122,19 +11170,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Monitors == nil { r.EncodeNil() } else { - yym783 := z.EncBinary() - _ = yym783 + yym788 := z.EncBinary() + _ = yym788 if false { } else { z.F.EncSliceStringV(x.Monitors, false, e) } } } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq780[1] { - yym785 := z.EncBinary() - _ = yym785 + if yyq785[1] { + yym790 := z.EncBinary() + _ = yym790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -11143,23 +11191,23 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq780[1] { + if yyq785[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym786 := z.EncBinary() - _ = yym786 + yym791 := z.EncBinary() + _ = yym791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq780[2] { - yym788 := z.EncBinary() - _ = yym788 + if yyq785[2] { + yym793 := z.EncBinary() + _ = yym793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) @@ -11168,21 +11216,21 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq780[2] { + if yyq785[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretFile")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym789 := z.EncBinary() - _ = yym789 + yym794 := z.EncBinary() + _ = yym794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SecretFile)) } } } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq780[3] { + if yyq785[3] { if x.SecretRef == nil { r.EncodeNil() } else { @@ -11192,7 +11240,7 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq780[3] { + if yyq785[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secretRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -11203,11 +11251,11 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq780[4] { - yym792 := z.EncBinary() - _ = yym792 + if yyq785[4] { + yym797 := z.EncBinary() + _ = yym797 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11216,19 +11264,19 @@ func (x *CephFSVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq780[4] { + if yyq785[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym793 := z.EncBinary() - _ = yym793 + yym798 := z.EncBinary() + _ = yym798 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr780 || yy2arr780 { + if yyr785 || yy2arr785 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11241,25 +11289,25 @@ func (x *CephFSVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym794 := z.DecBinary() - _ = yym794 + yym799 := z.DecBinary() + _ = yym799 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct795 := r.ContainerType() - if yyct795 == codecSelferValueTypeMap1234 { - yyl795 := r.ReadMapStart() - if yyl795 == 0 { + yyct800 := r.ContainerType() + if yyct800 == codecSelferValueTypeMap1234 { + yyl800 := r.ReadMapStart() + if yyl800 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl795, d) + x.codecDecodeSelfFromMap(yyl800, d) } - } else if yyct795 == codecSelferValueTypeArray1234 { - yyl795 := r.ReadArrayStart() - if yyl795 == 0 { + } else if yyct800 == codecSelferValueTypeArray1234 { + yyl800 := r.ReadArrayStart() + if yyl800 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl795, d) + x.codecDecodeSelfFromArray(yyl800, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11271,12 +11319,12 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys796Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys796Slc - var yyhl796 bool = l >= 0 - for yyj796 := 0; ; yyj796++ { - if yyhl796 { - if yyj796 >= l { + var yys801Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys801Slc + var yyhl801 bool = l >= 0 + for yyj801 := 0; ; yyj801++ { + if yyhl801 { + if yyj801 >= l { break } } else { @@ -11285,20 +11333,20 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys796Slc = r.DecodeBytes(yys796Slc, true, true) - yys796 := string(yys796Slc) + yys801Slc = r.DecodeBytes(yys801Slc, true, true) + yys801 := string(yys801Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys796 { + switch yys801 { case "monitors": if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv797 := &x.Monitors - yym798 := z.DecBinary() - _ = yym798 + yyv802 := &x.Monitors + yym803 := z.DecBinary() + _ = yym803 if false { } else { - z.F.DecSliceStringX(yyv797, false, d) + z.F.DecSliceStringX(yyv802, false, d) } } case "user": @@ -11331,9 +11379,9 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys796) - } // end switch yys796 - } // end for yyj796 + z.DecStructFieldNotFound(-1, yys801) + } // end switch yys801 + } // end for yyj801 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11341,16 +11389,16 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj803 int - var yyb803 bool - var yyhl803 bool = l >= 0 - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + var yyj808 int + var yyb808 bool + var yyhl808 bool = l >= 0 + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11358,21 +11406,21 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Monitors = nil } else { - yyv804 := &x.Monitors - yym805 := z.DecBinary() - _ = yym805 + yyv809 := &x.Monitors + yym810 := z.DecBinary() + _ = yym810 if false { } else { - z.F.DecSliceStringX(yyv804, false, d) + z.F.DecSliceStringX(yyv809, false, d) } } - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11382,13 +11430,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.User = string(r.DecodeString()) } - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11398,13 +11446,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.SecretFile = string(r.DecodeString()) } - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11419,13 +11467,13 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SecretRef.CodecDecodeSelf(d) } - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11436,17 +11484,17 @@ func (x *CephFSVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.ReadOnly = bool(r.DecodeBool()) } for { - yyj803++ - if yyhl803 { - yyb803 = yyj803 > l + yyj808++ + if yyhl808 { + yyb808 = yyj808 > l } else { - yyb803 = r.CheckBreak() + yyb808 = r.CheckBreak() } - if yyb803 { + if yyb808 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj803-1, "") + z.DecStructFieldNotFound(yyj808-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11458,33 +11506,33 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym810 := z.EncBinary() - _ = yym810 + yym815 := z.EncBinary() + _ = yym815 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep811 := !z.EncBinary() - yy2arr811 := z.EncBasicHandle().StructToArray - var yyq811 [1]bool - _, _, _ = yysep811, yyq811, yy2arr811 - const yyr811 bool = false - var yynn811 int - if yyr811 || yy2arr811 { + yysep816 := !z.EncBinary() + yy2arr816 := z.EncBasicHandle().StructToArray + var yyq816 [1]bool + _, _, _ = yysep816, yyq816, yy2arr816 + const yyr816 bool = false + var yynn816 int + if yyr816 || yy2arr816 { r.EncodeArrayStart(1) } else { - yynn811 = 1 - for _, b := range yyq811 { + yynn816 = 1 + for _, b := range yyq816 { if b { - yynn811++ + yynn816++ } } - r.EncodeMapStart(yynn811) - yynn811 = 0 + r.EncodeMapStart(yynn816) + yynn816 = 0 } - if yyr811 || yy2arr811 { + if yyr816 || yy2arr816 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym813 := z.EncBinary() - _ = yym813 + yym818 := z.EncBinary() + _ = yym818 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) @@ -11493,14 +11541,14 @@ func (x *FlockerVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("datasetName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym814 := z.EncBinary() - _ = yym814 + yym819 := z.EncBinary() + _ = yym819 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DatasetName)) } } - if yyr811 || yy2arr811 { + if yyr816 || yy2arr816 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11513,25 +11561,25 @@ func (x *FlockerVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym815 := z.DecBinary() - _ = yym815 + yym820 := z.DecBinary() + _ = yym820 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct816 := r.ContainerType() - if yyct816 == codecSelferValueTypeMap1234 { - yyl816 := r.ReadMapStart() - if yyl816 == 0 { + yyct821 := r.ContainerType() + if yyct821 == codecSelferValueTypeMap1234 { + yyl821 := r.ReadMapStart() + if yyl821 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl816, d) + x.codecDecodeSelfFromMap(yyl821, d) } - } else if yyct816 == codecSelferValueTypeArray1234 { - yyl816 := r.ReadArrayStart() - if yyl816 == 0 { + } else if yyct821 == codecSelferValueTypeArray1234 { + yyl821 := r.ReadArrayStart() + if yyl821 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl816, d) + x.codecDecodeSelfFromArray(yyl821, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11543,12 +11591,12 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys817Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys817Slc - var yyhl817 bool = l >= 0 - for yyj817 := 0; ; yyj817++ { - if yyhl817 { - if yyj817 >= l { + var yys822Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys822Slc + var yyhl822 bool = l >= 0 + for yyj822 := 0; ; yyj822++ { + if yyhl822 { + if yyj822 >= l { break } } else { @@ -11557,10 +11605,10 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys817Slc = r.DecodeBytes(yys817Slc, true, true) - yys817 := string(yys817Slc) + yys822Slc = r.DecodeBytes(yys822Slc, true, true) + yys822 := string(yys822Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys817 { + switch yys822 { case "datasetName": if r.TryDecodeAsNil() { x.DatasetName = "" @@ -11568,9 +11616,9 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.DatasetName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys817) - } // end switch yys817 - } // end for yyj817 + z.DecStructFieldNotFound(-1, yys822) + } // end switch yys822 + } // end for yyj822 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11578,16 +11626,16 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj819 int - var yyb819 bool - var yyhl819 bool = l >= 0 - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + var yyj824 int + var yyb824 bool + var yyhl824 bool = l >= 0 + yyj824++ + if yyhl824 { + yyb824 = yyj824 > l } else { - yyb819 = r.CheckBreak() + yyb824 = r.CheckBreak() } - if yyb819 { + if yyb824 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11598,17 +11646,17 @@ func (x *FlockerVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.DatasetName = string(r.DecodeString()) } for { - yyj819++ - if yyhl819 { - yyb819 = yyj819 > l + yyj824++ + if yyhl824 { + yyb824 = yyj824 > l } else { - yyb819 = r.CheckBreak() + yyb824 = r.CheckBreak() } - if yyb819 { + if yyb824 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj819-1, "") + z.DecStructFieldNotFound(yyj824-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11620,38 +11668,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym821 := z.EncBinary() - _ = yym821 + yym826 := z.EncBinary() + _ = yym826 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep822 := !z.EncBinary() - yy2arr822 := z.EncBasicHandle().StructToArray - var yyq822 [1]bool - _, _, _ = yysep822, yyq822, yy2arr822 - const yyr822 bool = false - yyq822[0] = len(x.Items) != 0 - var yynn822 int - if yyr822 || yy2arr822 { + yysep827 := !z.EncBinary() + yy2arr827 := z.EncBasicHandle().StructToArray + var yyq827 [1]bool + _, _, _ = yysep827, yyq827, yy2arr827 + const yyr827 bool = false + yyq827[0] = len(x.Items) != 0 + var yynn827 int + if yyr827 || yy2arr827 { r.EncodeArrayStart(1) } else { - yynn822 = 0 - for _, b := range yyq822 { + yynn827 = 0 + for _, b := range yyq827 { if b { - yynn822++ + yynn827++ } } - r.EncodeMapStart(yynn822) - yynn822 = 0 + r.EncodeMapStart(yynn827) + yynn827 = 0 } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq822[0] { + if yyq827[0] { if x.Items == nil { r.EncodeNil() } else { - yym824 := z.EncBinary() - _ = yym824 + yym829 := z.EncBinary() + _ = yym829 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -11661,15 +11709,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq822[0] { + if yyq827[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym825 := z.EncBinary() - _ = yym825 + yym830 := z.EncBinary() + _ = yym830 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -11677,7 +11725,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11690,25 +11738,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym826 := z.DecBinary() - _ = yym826 + yym831 := z.DecBinary() + _ = yym831 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct827 := r.ContainerType() - if yyct827 == codecSelferValueTypeMap1234 { - yyl827 := r.ReadMapStart() - if yyl827 == 0 { + yyct832 := r.ContainerType() + if yyct832 == codecSelferValueTypeMap1234 { + yyl832 := r.ReadMapStart() + if yyl832 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl827, d) + x.codecDecodeSelfFromMap(yyl832, d) } - } else if yyct827 == codecSelferValueTypeArray1234 { - yyl827 := r.ReadArrayStart() - if yyl827 == 0 { + } else if yyct832 == codecSelferValueTypeArray1234 { + yyl832 := r.ReadArrayStart() + if yyl832 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl827, d) + x.codecDecodeSelfFromArray(yyl832, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11720,12 +11768,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys828Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys828Slc - var yyhl828 bool = l >= 0 - for yyj828 := 0; ; yyj828++ { - if yyhl828 { - if yyj828 >= l { + var yys833Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys833Slc + var yyhl833 bool = l >= 0 + for yyj833 := 0; ; yyj833++ { + if yyhl833 { + if yyj833 >= l { break } } else { @@ -11734,26 +11782,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys828Slc = r.DecodeBytes(yys828Slc, true, true) - yys828 := string(yys828Slc) + yys833Slc = r.DecodeBytes(yys833Slc, true, true) + yys833 := string(yys833Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys828 { + switch yys833 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv829 := &x.Items - yym830 := z.DecBinary() - _ = yym830 + yyv834 := &x.Items + yym835 := z.DecBinary() + _ = yym835 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv829), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv834), d) } } default: - z.DecStructFieldNotFound(-1, yys828) - } // end switch yys828 - } // end for yyj828 + z.DecStructFieldNotFound(-1, yys833) + } // end switch yys833 + } // end for yyj833 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11761,16 +11809,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj831 int - var yyb831 bool - var yyhl831 bool = l >= 0 - yyj831++ - if yyhl831 { - yyb831 = yyj831 > l + var yyj836 int + var yyb836 bool + var yyhl836 bool = l >= 0 + yyj836++ + if yyhl836 { + yyb836 = yyj836 > l } else { - yyb831 = r.CheckBreak() + yyb836 = r.CheckBreak() } - if yyb831 { + if yyb836 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11778,26 +11826,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv832 := &x.Items - yym833 := z.DecBinary() - _ = yym833 + yyv837 := &x.Items + yym838 := z.DecBinary() + _ = yym838 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv832), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv837), d) } } for { - yyj831++ - if yyhl831 { - yyb831 = yyj831 > l + yyj836++ + if yyhl836 { + yyb836 = yyj836 > l } else { - yyb831 = r.CheckBreak() + yyb836 = r.CheckBreak() } - if yyb831 { + if yyb836 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj831-1, "") + z.DecStructFieldNotFound(yyj836-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11809,33 +11857,33 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym834 := z.EncBinary() - _ = yym834 + yym839 := z.EncBinary() + _ = yym839 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep835 := !z.EncBinary() - yy2arr835 := z.EncBasicHandle().StructToArray - var yyq835 [2]bool - _, _, _ = yysep835, yyq835, yy2arr835 - const yyr835 bool = false - var yynn835 int - if yyr835 || yy2arr835 { + yysep840 := !z.EncBinary() + yy2arr840 := z.EncBasicHandle().StructToArray + var yyq840 [2]bool + _, _, _ = yysep840, yyq840, yy2arr840 + const yyr840 bool = false + var yynn840 int + if yyr840 || yy2arr840 { r.EncodeArrayStart(2) } else { - yynn835 = 2 - for _, b := range yyq835 { + yynn840 = 2 + for _, b := range yyq840 { if b { - yynn835++ + yynn840++ } } - r.EncodeMapStart(yynn835) - yynn835 = 0 + r.EncodeMapStart(yynn840) + yynn840 = 0 } - if yyr835 || yy2arr835 { + if yyr840 || yy2arr840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym837 := z.EncBinary() - _ = yym837 + yym842 := z.EncBinary() + _ = yym842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -11844,25 +11892,25 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym838 := z.EncBinary() - _ = yym838 + yym843 := z.EncBinary() + _ = yym843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr835 || yy2arr835 { + if yyr840 || yy2arr840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy840 := &x.FieldRef - yy840.CodecEncodeSelf(e) + yy845 := &x.FieldRef + yy845.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy841 := &x.FieldRef - yy841.CodecEncodeSelf(e) + yy846 := &x.FieldRef + yy846.CodecEncodeSelf(e) } - if yyr835 || yy2arr835 { + if yyr840 || yy2arr840 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11875,25 +11923,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym842 := z.DecBinary() - _ = yym842 + yym847 := z.DecBinary() + _ = yym847 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct843 := r.ContainerType() - if yyct843 == codecSelferValueTypeMap1234 { - yyl843 := r.ReadMapStart() - if yyl843 == 0 { + yyct848 := r.ContainerType() + if yyct848 == codecSelferValueTypeMap1234 { + yyl848 := r.ReadMapStart() + if yyl848 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl843, d) + x.codecDecodeSelfFromMap(yyl848, d) } - } else if yyct843 == codecSelferValueTypeArray1234 { - yyl843 := r.ReadArrayStart() - if yyl843 == 0 { + } else if yyct848 == codecSelferValueTypeArray1234 { + yyl848 := r.ReadArrayStart() + if yyl848 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl843, d) + x.codecDecodeSelfFromArray(yyl848, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11905,12 +11953,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys844Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys844Slc - var yyhl844 bool = l >= 0 - for yyj844 := 0; ; yyj844++ { - if yyhl844 { - if yyj844 >= l { + var yys849Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys849Slc + var yyhl849 bool = l >= 0 + for yyj849 := 0; ; yyj849++ { + if yyhl849 { + if yyj849 >= l { break } } else { @@ -11919,10 +11967,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys844Slc = r.DecodeBytes(yys844Slc, true, true) - yys844 := string(yys844Slc) + yys849Slc = r.DecodeBytes(yys849Slc, true, true) + yys849 := string(yys849Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys844 { + switch yys849 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -11933,13 +11981,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv846 := &x.FieldRef - yyv846.CodecDecodeSelf(d) + yyv851 := &x.FieldRef + yyv851.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys844) - } // end switch yys844 - } // end for yyj844 + z.DecStructFieldNotFound(-1, yys849) + } // end switch yys849 + } // end for yyj849 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11947,16 +11995,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj847 int - var yyb847 bool - var yyhl847 bool = l >= 0 - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + var yyj852 int + var yyb852 bool + var yyhl852 bool = l >= 0 + yyj852++ + if yyhl852 { + yyb852 = yyj852 > l } else { - yyb847 = r.CheckBreak() + yyb852 = r.CheckBreak() } - if yyb847 { + if yyb852 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11966,13 +12014,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj852++ + if yyhl852 { + yyb852 = yyj852 > l } else { - yyb847 = r.CheckBreak() + yyb852 = r.CheckBreak() } - if yyb847 { + if yyb852 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11980,21 +12028,21 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv849 := &x.FieldRef - yyv849.CodecDecodeSelf(d) + yyv854 := &x.FieldRef + yyv854.CodecDecodeSelf(d) } for { - yyj847++ - if yyhl847 { - yyb847 = yyj847 > l + yyj852++ + if yyhl852 { + yyb852 = yyj852 > l } else { - yyb847 = r.CheckBreak() + yyb852 = r.CheckBreak() } - if yyb847 { + if yyb852 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj847-1, "") + z.DecStructFieldNotFound(yyj852-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12006,38 +12054,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym850 := z.EncBinary() - _ = yym850 + yym855 := z.EncBinary() + _ = yym855 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep851 := !z.EncBinary() - yy2arr851 := z.EncBasicHandle().StructToArray - var yyq851 [5]bool - _, _, _ = yysep851, yyq851, yy2arr851 - const yyr851 bool = false - yyq851[0] = x.Name != "" - yyq851[1] = x.HostPort != 0 - yyq851[3] = x.Protocol != "" - yyq851[4] = x.HostIP != "" - var yynn851 int - if yyr851 || yy2arr851 { + yysep856 := !z.EncBinary() + yy2arr856 := z.EncBasicHandle().StructToArray + var yyq856 [5]bool + _, _, _ = yysep856, yyq856, yy2arr856 + const yyr856 bool = false + yyq856[0] = x.Name != "" + yyq856[1] = x.HostPort != 0 + yyq856[3] = x.Protocol != "" + yyq856[4] = x.HostIP != "" + var yynn856 int + if yyr856 || yy2arr856 { r.EncodeArrayStart(5) } else { - yynn851 = 1 - for _, b := range yyq851 { + yynn856 = 1 + for _, b := range yyq856 { if b { - yynn851++ + yynn856++ } } - r.EncodeMapStart(yynn851) - yynn851 = 0 + r.EncodeMapStart(yynn856) + yynn856 = 0 } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq851[0] { - yym853 := z.EncBinary() - _ = yym853 + if yyq856[0] { + yym858 := z.EncBinary() + _ = yym858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -12046,23 +12094,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq851[0] { + if yyq856[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym854 := z.EncBinary() - _ = yym854 + yym859 := z.EncBinary() + _ = yym859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq851[1] { - yym856 := z.EncBinary() - _ = yym856 + if yyq856[1] { + yym861 := z.EncBinary() + _ = yym861 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -12071,22 +12119,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq851[1] { + if yyq856[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym857 := z.EncBinary() - _ = yym857 + yym862 := z.EncBinary() + _ = yym862 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym859 := z.EncBinary() - _ = yym859 + yym864 := z.EncBinary() + _ = yym864 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -12095,33 +12143,33 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym860 := z.EncBinary() - _ = yym860 + yym865 := z.EncBinary() + _ = yym865 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq851[3] { + if yyq856[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq851[3] { + if yyq856[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq851[4] { - yym863 := z.EncBinary() - _ = yym863 + if yyq856[4] { + yym868 := z.EncBinary() + _ = yym868 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -12130,19 +12178,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq851[4] { + if yyq856[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym864 := z.EncBinary() - _ = yym864 + yym869 := z.EncBinary() + _ = yym869 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12155,25 +12203,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym865 := z.DecBinary() - _ = yym865 + yym870 := z.DecBinary() + _ = yym870 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct866 := r.ContainerType() - if yyct866 == codecSelferValueTypeMap1234 { - yyl866 := r.ReadMapStart() - if yyl866 == 0 { + yyct871 := r.ContainerType() + if yyct871 == codecSelferValueTypeMap1234 { + yyl871 := r.ReadMapStart() + if yyl871 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl866, d) + x.codecDecodeSelfFromMap(yyl871, d) } - } else if yyct866 == codecSelferValueTypeArray1234 { - yyl866 := r.ReadArrayStart() - if yyl866 == 0 { + } else if yyct871 == codecSelferValueTypeArray1234 { + yyl871 := r.ReadArrayStart() + if yyl871 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl866, d) + x.codecDecodeSelfFromArray(yyl871, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12185,12 +12233,12 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys867Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys867Slc - var yyhl867 bool = l >= 0 - for yyj867 := 0; ; yyj867++ { - if yyhl867 { - if yyj867 >= l { + var yys872Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys872Slc + var yyhl872 bool = l >= 0 + for yyj872 := 0; ; yyj872++ { + if yyhl872 { + if yyj872 >= l { break } } else { @@ -12199,10 +12247,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys867Slc = r.DecodeBytes(yys867Slc, true, true) - yys867 := string(yys867Slc) + yys872Slc = r.DecodeBytes(yys872Slc, true, true) + yys872 := string(yys872Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys867 { + switch yys872 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -12234,9 +12282,9 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys867) - } // end switch yys867 - } // end for yyj867 + z.DecStructFieldNotFound(-1, yys872) + } // end switch yys872 + } // end for yyj872 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12244,16 +12292,16 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj873 int - var yyb873 bool - var yyhl873 bool = l >= 0 - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + var yyj878 int + var yyb878 bool + var yyhl878 bool = l >= 0 + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12263,13 +12311,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12279,13 +12327,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12295,13 +12343,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12311,13 +12359,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12328,17 +12376,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj873++ - if yyhl873 { - yyb873 = yyj873 > l + yyj878++ + if yyhl878 { + yyb878 = yyj878 > l } else { - yyb873 = r.CheckBreak() + yyb878 = r.CheckBreak() } - if yyb873 { + if yyb878 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj873-1, "") + z.DecStructFieldNotFound(yyj878-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12350,34 +12398,34 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym879 := z.EncBinary() - _ = yym879 + yym884 := z.EncBinary() + _ = yym884 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep880 := !z.EncBinary() - yy2arr880 := z.EncBasicHandle().StructToArray - var yyq880 [3]bool - _, _, _ = yysep880, yyq880, yy2arr880 - const yyr880 bool = false - yyq880[1] = x.ReadOnly != false - var yynn880 int - if yyr880 || yy2arr880 { + yysep885 := !z.EncBinary() + yy2arr885 := z.EncBasicHandle().StructToArray + var yyq885 [3]bool + _, _, _ = yysep885, yyq885, yy2arr885 + const yyr885 bool = false + yyq885[1] = x.ReadOnly != false + var yynn885 int + if yyr885 || yy2arr885 { r.EncodeArrayStart(3) } else { - yynn880 = 2 - for _, b := range yyq880 { + yynn885 = 2 + for _, b := range yyq885 { if b { - yynn880++ + yynn885++ } } - r.EncodeMapStart(yynn880) - yynn880 = 0 + r.EncodeMapStart(yynn885) + yynn885 = 0 } - if yyr880 || yy2arr880 { + if yyr885 || yy2arr885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym882 := z.EncBinary() - _ = yym882 + yym887 := z.EncBinary() + _ = yym887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -12386,18 +12434,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym883 := z.EncBinary() - _ = yym883 + yym888 := z.EncBinary() + _ = yym888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr880 || yy2arr880 { + if yyr885 || yy2arr885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq880[1] { - yym885 := z.EncBinary() - _ = yym885 + if yyq885[1] { + yym890 := z.EncBinary() + _ = yym890 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -12406,22 +12454,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq880[1] { + if yyq885[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym886 := z.EncBinary() - _ = yym886 + yym891 := z.EncBinary() + _ = yym891 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr880 || yy2arr880 { + if yyr885 || yy2arr885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym888 := z.EncBinary() - _ = yym888 + yym893 := z.EncBinary() + _ = yym893 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -12430,14 +12478,14 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mountPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym889 := z.EncBinary() - _ = yym889 + yym894 := z.EncBinary() + _ = yym894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr880 || yy2arr880 { + if yyr885 || yy2arr885 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12450,25 +12498,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym890 := z.DecBinary() - _ = yym890 + yym895 := z.DecBinary() + _ = yym895 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct891 := r.ContainerType() - if yyct891 == codecSelferValueTypeMap1234 { - yyl891 := r.ReadMapStart() - if yyl891 == 0 { + yyct896 := r.ContainerType() + if yyct896 == codecSelferValueTypeMap1234 { + yyl896 := r.ReadMapStart() + if yyl896 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl891, d) + x.codecDecodeSelfFromMap(yyl896, d) } - } else if yyct891 == codecSelferValueTypeArray1234 { - yyl891 := r.ReadArrayStart() - if yyl891 == 0 { + } else if yyct896 == codecSelferValueTypeArray1234 { + yyl896 := r.ReadArrayStart() + if yyl896 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl891, d) + x.codecDecodeSelfFromArray(yyl896, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12480,12 +12528,12 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys892Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys892Slc - var yyhl892 bool = l >= 0 - for yyj892 := 0; ; yyj892++ { - if yyhl892 { - if yyj892 >= l { + var yys897Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys897Slc + var yyhl897 bool = l >= 0 + for yyj897 := 0; ; yyj897++ { + if yyhl897 { + if yyj897 >= l { break } } else { @@ -12494,10 +12542,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys892Slc = r.DecodeBytes(yys892Slc, true, true) - yys892 := string(yys892Slc) + yys897Slc = r.DecodeBytes(yys897Slc, true, true) + yys897 := string(yys897Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys892 { + switch yys897 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -12517,9 +12565,9 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.MountPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys892) - } // end switch yys892 - } // end for yyj892 + z.DecStructFieldNotFound(-1, yys897) + } // end switch yys897 + } // end for yyj897 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12527,16 +12575,16 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj896 int - var yyb896 bool - var yyhl896 bool = l >= 0 - yyj896++ - if yyhl896 { - yyb896 = yyj896 > l + var yyj901 int + var yyb901 bool + var yyhl901 bool = l >= 0 + yyj901++ + if yyhl901 { + yyb901 = yyj901 > l } else { - yyb896 = r.CheckBreak() + yyb901 = r.CheckBreak() } - if yyb896 { + if yyb901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12546,13 +12594,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj896++ - if yyhl896 { - yyb896 = yyj896 > l + yyj901++ + if yyhl901 { + yyb901 = yyj901 > l } else { - yyb896 = r.CheckBreak() + yyb901 = r.CheckBreak() } - if yyb896 { + if yyb901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12562,13 +12610,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj896++ - if yyhl896 { - yyb896 = yyj896 > l + yyj901++ + if yyhl901 { + yyb901 = yyj901 > l } else { - yyb896 = r.CheckBreak() + yyb901 = r.CheckBreak() } - if yyb896 { + if yyb901 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12579,17 +12627,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.MountPath = string(r.DecodeString()) } for { - yyj896++ - if yyhl896 { - yyb896 = yyj896 > l + yyj901++ + if yyhl901 { + yyb901 = yyj901 > l } else { - yyb896 = r.CheckBreak() + yyb901 = r.CheckBreak() } - if yyb896 { + if yyb901 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj896-1, "") + z.DecStructFieldNotFound(yyj901-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12601,35 +12649,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym900 := z.EncBinary() - _ = yym900 + yym905 := z.EncBinary() + _ = yym905 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep901 := !z.EncBinary() - yy2arr901 := z.EncBasicHandle().StructToArray - var yyq901 [3]bool - _, _, _ = yysep901, yyq901, yy2arr901 - const yyr901 bool = false - yyq901[1] = x.Value != "" - yyq901[2] = x.ValueFrom != nil - var yynn901 int - if yyr901 || yy2arr901 { + yysep906 := !z.EncBinary() + yy2arr906 := z.EncBasicHandle().StructToArray + var yyq906 [3]bool + _, _, _ = yysep906, yyq906, yy2arr906 + const yyr906 bool = false + yyq906[1] = x.Value != "" + yyq906[2] = x.ValueFrom != nil + var yynn906 int + if yyr906 || yy2arr906 { r.EncodeArrayStart(3) } else { - yynn901 = 1 - for _, b := range yyq901 { + yynn906 = 1 + for _, b := range yyq906 { if b { - yynn901++ + yynn906++ } } - r.EncodeMapStart(yynn901) - yynn901 = 0 + r.EncodeMapStart(yynn906) + yynn906 = 0 } - if yyr901 || yy2arr901 { + if yyr906 || yy2arr906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym903 := z.EncBinary() - _ = yym903 + yym908 := z.EncBinary() + _ = yym908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -12638,18 +12686,18 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym904 := z.EncBinary() - _ = yym904 + yym909 := z.EncBinary() + _ = yym909 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr901 || yy2arr901 { + if yyr906 || yy2arr906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq901[1] { - yym906 := z.EncBinary() - _ = yym906 + if yyq906[1] { + yym911 := z.EncBinary() + _ = yym911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -12658,21 +12706,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq901[1] { + if yyq906[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym907 := z.EncBinary() - _ = yym907 + yym912 := z.EncBinary() + _ = yym912 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr901 || yy2arr901 { + if yyr906 || yy2arr906 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq901[2] { + if yyq906[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -12682,7 +12730,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq901[2] { + if yyq906[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12693,7 +12741,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr901 || yy2arr901 { + if yyr906 || yy2arr906 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12706,25 +12754,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym909 := z.DecBinary() - _ = yym909 + yym914 := z.DecBinary() + _ = yym914 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct910 := r.ContainerType() - if yyct910 == codecSelferValueTypeMap1234 { - yyl910 := r.ReadMapStart() - if yyl910 == 0 { + yyct915 := r.ContainerType() + if yyct915 == codecSelferValueTypeMap1234 { + yyl915 := r.ReadMapStart() + if yyl915 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl910, d) + x.codecDecodeSelfFromMap(yyl915, d) } - } else if yyct910 == codecSelferValueTypeArray1234 { - yyl910 := r.ReadArrayStart() - if yyl910 == 0 { + } else if yyct915 == codecSelferValueTypeArray1234 { + yyl915 := r.ReadArrayStart() + if yyl915 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl910, d) + x.codecDecodeSelfFromArray(yyl915, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12736,12 +12784,12 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys911Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys911Slc - var yyhl911 bool = l >= 0 - for yyj911 := 0; ; yyj911++ { - if yyhl911 { - if yyj911 >= l { + var yys916Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys916Slc + var yyhl916 bool = l >= 0 + for yyj916 := 0; ; yyj916++ { + if yyhl916 { + if yyj916 >= l { break } } else { @@ -12750,10 +12798,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys911Slc = r.DecodeBytes(yys911Slc, true, true) - yys911 := string(yys911Slc) + yys916Slc = r.DecodeBytes(yys916Slc, true, true) + yys916 := string(yys916Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys911 { + switch yys916 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -12778,9 +12826,9 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys911) - } // end switch yys911 - } // end for yyj911 + z.DecStructFieldNotFound(-1, yys916) + } // end switch yys916 + } // end for yyj916 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12788,16 +12836,16 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj915 int - var yyb915 bool - var yyhl915 bool = l >= 0 - yyj915++ - if yyhl915 { - yyb915 = yyj915 > l + var yyj920 int + var yyb920 bool + var yyhl920 bool = l >= 0 + yyj920++ + if yyhl920 { + yyb920 = yyj920 > l } else { - yyb915 = r.CheckBreak() + yyb920 = r.CheckBreak() } - if yyb915 { + if yyb920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12807,13 +12855,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj915++ - if yyhl915 { - yyb915 = yyj915 > l + yyj920++ + if yyhl920 { + yyb920 = yyj920 > l } else { - yyb915 = r.CheckBreak() + yyb920 = r.CheckBreak() } - if yyb915 { + if yyb920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12823,13 +12871,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj915++ - if yyhl915 { - yyb915 = yyj915 > l + yyj920++ + if yyhl920 { + yyb920 = yyj920 > l } else { - yyb915 = r.CheckBreak() + yyb920 = r.CheckBreak() } - if yyb915 { + if yyb920 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12845,17 +12893,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj915++ - if yyhl915 { - yyb915 = yyj915 > l + yyj920++ + if yyhl920 { + yyb920 = yyj920 > l } else { - yyb915 = r.CheckBreak() + yyb920 = r.CheckBreak() } - if yyb915 { + if yyb920 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj915-1, "") + z.DecStructFieldNotFound(yyj920-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12867,30 +12915,30 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym919 := z.EncBinary() - _ = yym919 + yym924 := z.EncBinary() + _ = yym924 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep920 := !z.EncBinary() - yy2arr920 := z.EncBasicHandle().StructToArray - var yyq920 [1]bool - _, _, _ = yysep920, yyq920, yy2arr920 - const yyr920 bool = false - var yynn920 int - if yyr920 || yy2arr920 { + yysep925 := !z.EncBinary() + yy2arr925 := z.EncBasicHandle().StructToArray + var yyq925 [1]bool + _, _, _ = yysep925, yyq925, yy2arr925 + const yyr925 bool = false + var yynn925 int + if yyr925 || yy2arr925 { r.EncodeArrayStart(1) } else { - yynn920 = 1 - for _, b := range yyq920 { + yynn925 = 1 + for _, b := range yyq925 { if b { - yynn920++ + yynn925++ } } - r.EncodeMapStart(yynn920) - yynn920 = 0 + r.EncodeMapStart(yynn925) + yynn925 = 0 } - if yyr920 || yy2arr920 { + if yyr925 || yy2arr925 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldRef == nil { r.EncodeNil() @@ -12907,7 +12955,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { x.FieldRef.CodecEncodeSelf(e) } } - if yyr920 || yy2arr920 { + if yyr925 || yy2arr925 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12920,25 +12968,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym922 := z.DecBinary() - _ = yym922 + yym927 := z.DecBinary() + _ = yym927 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct923 := r.ContainerType() - if yyct923 == codecSelferValueTypeMap1234 { - yyl923 := r.ReadMapStart() - if yyl923 == 0 { + yyct928 := r.ContainerType() + if yyct928 == codecSelferValueTypeMap1234 { + yyl928 := r.ReadMapStart() + if yyl928 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl923, d) + x.codecDecodeSelfFromMap(yyl928, d) } - } else if yyct923 == codecSelferValueTypeArray1234 { - yyl923 := r.ReadArrayStart() - if yyl923 == 0 { + } else if yyct928 == codecSelferValueTypeArray1234 { + yyl928 := r.ReadArrayStart() + if yyl928 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl923, d) + x.codecDecodeSelfFromArray(yyl928, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12950,12 +12998,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys924Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys924Slc - var yyhl924 bool = l >= 0 - for yyj924 := 0; ; yyj924++ { - if yyhl924 { - if yyj924 >= l { + var yys929Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys929Slc + var yyhl929 bool = l >= 0 + for yyj929 := 0; ; yyj929++ { + if yyhl929 { + if yyj929 >= l { break } } else { @@ -12964,10 +13012,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys924Slc = r.DecodeBytes(yys924Slc, true, true) - yys924 := string(yys924Slc) + yys929Slc = r.DecodeBytes(yys929Slc, true, true) + yys929 := string(yys929Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys924 { + switch yys929 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -12980,9 +13028,9 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys924) - } // end switch yys924 - } // end for yyj924 + z.DecStructFieldNotFound(-1, yys929) + } // end switch yys929 + } // end for yyj929 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12990,16 +13038,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj926 int - var yyb926 bool - var yyhl926 bool = l >= 0 - yyj926++ - if yyhl926 { - yyb926 = yyj926 > l + var yyj931 int + var yyb931 bool + var yyhl931 bool = l >= 0 + yyj931++ + if yyhl931 { + yyb931 = yyj931 > l } else { - yyb926 = r.CheckBreak() + yyb931 = r.CheckBreak() } - if yyb926 { + if yyb931 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13015,17 +13063,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FieldRef.CodecDecodeSelf(d) } for { - yyj926++ - if yyhl926 { - yyb926 = yyj926 > l + yyj931++ + if yyhl931 { + yyb931 = yyj931 > l } else { - yyb926 = r.CheckBreak() + yyb931 = r.CheckBreak() } - if yyb926 { + if yyb931 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj926-1, "") + z.DecStructFieldNotFound(yyj931-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13037,33 +13085,33 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym928 := z.EncBinary() - _ = yym928 + yym933 := z.EncBinary() + _ = yym933 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep929 := !z.EncBinary() - yy2arr929 := z.EncBasicHandle().StructToArray - var yyq929 [2]bool - _, _, _ = yysep929, yyq929, yy2arr929 - const yyr929 bool = false - var yynn929 int - if yyr929 || yy2arr929 { + yysep934 := !z.EncBinary() + yy2arr934 := z.EncBasicHandle().StructToArray + var yyq934 [2]bool + _, _, _ = yysep934, yyq934, yy2arr934 + const yyr934 bool = false + var yynn934 int + if yyr934 || yy2arr934 { r.EncodeArrayStart(2) } else { - yynn929 = 2 - for _, b := range yyq929 { + yynn934 = 2 + for _, b := range yyq934 { if b { - yynn929++ + yynn934++ } } - r.EncodeMapStart(yynn929) - yynn929 = 0 + r.EncodeMapStart(yynn934) + yynn934 = 0 } - if yyr929 || yy2arr929 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym931 := z.EncBinary() - _ = yym931 + yym936 := z.EncBinary() + _ = yym936 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -13072,17 +13120,17 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym932 := z.EncBinary() - _ = yym932 + yym937 := z.EncBinary() + _ = yym937 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } - if yyr929 || yy2arr929 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym934 := z.EncBinary() - _ = yym934 + yym939 := z.EncBinary() + _ = yym939 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -13091,14 +13139,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym935 := z.EncBinary() - _ = yym935 + yym940 := z.EncBinary() + _ = yym940 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr929 || yy2arr929 { + if yyr934 || yy2arr934 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13111,25 +13159,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym936 := z.DecBinary() - _ = yym936 + yym941 := z.DecBinary() + _ = yym941 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct937 := r.ContainerType() - if yyct937 == codecSelferValueTypeMap1234 { - yyl937 := r.ReadMapStart() - if yyl937 == 0 { + yyct942 := r.ContainerType() + if yyct942 == codecSelferValueTypeMap1234 { + yyl942 := r.ReadMapStart() + if yyl942 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl937, d) + x.codecDecodeSelfFromMap(yyl942, d) } - } else if yyct937 == codecSelferValueTypeArray1234 { - yyl937 := r.ReadArrayStart() - if yyl937 == 0 { + } else if yyct942 == codecSelferValueTypeArray1234 { + yyl942 := r.ReadArrayStart() + if yyl942 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl937, d) + x.codecDecodeSelfFromArray(yyl942, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13141,12 +13189,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys938Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys938Slc - var yyhl938 bool = l >= 0 - for yyj938 := 0; ; yyj938++ { - if yyhl938 { - if yyj938 >= l { + var yys943Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys943Slc + var yyhl943 bool = l >= 0 + for yyj943 := 0; ; yyj943++ { + if yyhl943 { + if yyj943 >= l { break } } else { @@ -13155,10 +13203,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys938Slc = r.DecodeBytes(yys938Slc, true, true) - yys938 := string(yys938Slc) + yys943Slc = r.DecodeBytes(yys943Slc, true, true) + yys943 := string(yys943Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys938 { + switch yys943 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -13172,9 +13220,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys938) - } // end switch yys938 - } // end for yyj938 + z.DecStructFieldNotFound(-1, yys943) + } // end switch yys943 + } // end for yyj943 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13182,16 +13230,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj941 int - var yyb941 bool - var yyhl941 bool = l >= 0 - yyj941++ - if yyhl941 { - yyb941 = yyj941 > l + var yyj946 int + var yyb946 bool + var yyhl946 bool = l >= 0 + yyj946++ + if yyhl946 { + yyb946 = yyj946 > l } else { - yyb941 = r.CheckBreak() + yyb946 = r.CheckBreak() } - if yyb941 { + if yyb946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13201,13 +13249,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj941++ - if yyhl941 { - yyb941 = yyj941 > l + yyj946++ + if yyhl946 { + yyb946 = yyj946 > l } else { - yyb941 = r.CheckBreak() + yyb946 = r.CheckBreak() } - if yyb941 { + if yyb946 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13218,17 +13266,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj941++ - if yyhl941 { - yyb941 = yyj941 > l + yyj946++ + if yyhl946 { + yyb946 = yyj946 > l } else { - yyb941 = r.CheckBreak() + yyb946 = r.CheckBreak() } - if yyb941 { + if yyb946 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj941-1, "") + z.DecStructFieldNotFound(yyj946-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13240,38 +13288,38 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym944 := z.EncBinary() - _ = yym944 + yym949 := z.EncBinary() + _ = yym949 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep945 := !z.EncBinary() - yy2arr945 := z.EncBasicHandle().StructToArray - var yyq945 [4]bool - _, _, _ = yysep945, yyq945, yy2arr945 - const yyr945 bool = false - yyq945[0] = x.Path != "" - yyq945[1] = true - yyq945[2] = x.Host != "" - yyq945[3] = x.Scheme != "" - var yynn945 int - if yyr945 || yy2arr945 { + yysep950 := !z.EncBinary() + yy2arr950 := z.EncBasicHandle().StructToArray + var yyq950 [4]bool + _, _, _ = yysep950, yyq950, yy2arr950 + const yyr950 bool = false + yyq950[0] = x.Path != "" + yyq950[1] = true + yyq950[2] = x.Host != "" + yyq950[3] = x.Scheme != "" + var yynn950 int + if yyr950 || yy2arr950 { r.EncodeArrayStart(4) } else { - yynn945 = 0 - for _, b := range yyq945 { + yynn950 = 0 + for _, b := range yyq950 { if b { - yynn945++ + yynn950++ } } - r.EncodeMapStart(yynn945) - yynn945 = 0 + r.EncodeMapStart(yynn950) + yynn950 = 0 } - if yyr945 || yy2arr945 { + if yyr950 || yy2arr950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq945[0] { - yym947 := z.EncBinary() - _ = yym947 + if yyq950[0] { + yym952 := z.EncBinary() + _ = yym952 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -13280,56 +13328,56 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq945[0] { + if yyq950[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym948 := z.EncBinary() - _ = yym948 + yym953 := z.EncBinary() + _ = yym953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr945 || yy2arr945 { + if yyr950 || yy2arr950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq945[1] { - yy950 := &x.Port - yym951 := z.EncBinary() - _ = yym951 + if yyq950[1] { + yy955 := &x.Port + yym956 := z.EncBinary() + _ = yym956 if false { - } else if z.HasExtensions() && z.EncExt(yy950) { - } else if !yym951 && z.IsJSONHandle() { - z.EncJSONMarshal(yy950) + } else if z.HasExtensions() && z.EncExt(yy955) { + } else if !yym956 && z.IsJSONHandle() { + z.EncJSONMarshal(yy955) } else { - z.EncFallback(yy950) + z.EncFallback(yy955) } } else { r.EncodeNil() } } else { - if yyq945[1] { + if yyq950[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy952 := &x.Port - yym953 := z.EncBinary() - _ = yym953 + yy957 := &x.Port + yym958 := z.EncBinary() + _ = yym958 if false { - } else if z.HasExtensions() && z.EncExt(yy952) { - } else if !yym953 && z.IsJSONHandle() { - z.EncJSONMarshal(yy952) + } else if z.HasExtensions() && z.EncExt(yy957) { + } else if !yym958 && z.IsJSONHandle() { + z.EncJSONMarshal(yy957) } else { - z.EncFallback(yy952) + z.EncFallback(yy957) } } } - if yyr945 || yy2arr945 { + if yyr950 || yy2arr950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq945[2] { - yym955 := z.EncBinary() - _ = yym955 + if yyq950[2] { + yym960 := z.EncBinary() + _ = yym960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -13338,34 +13386,34 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq945[2] { + if yyq950[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym956 := z.EncBinary() - _ = yym956 + yym961 := z.EncBinary() + _ = yym961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr945 || yy2arr945 { + if yyr950 || yy2arr950 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq945[3] { + if yyq950[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq945[3] { + if yyq950[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr945 || yy2arr945 { + if yyr950 || yy2arr950 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13378,25 +13426,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym958 := z.DecBinary() - _ = yym958 + yym963 := z.DecBinary() + _ = yym963 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct959 := r.ContainerType() - if yyct959 == codecSelferValueTypeMap1234 { - yyl959 := r.ReadMapStart() - if yyl959 == 0 { + yyct964 := r.ContainerType() + if yyct964 == codecSelferValueTypeMap1234 { + yyl964 := r.ReadMapStart() + if yyl964 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl959, d) + x.codecDecodeSelfFromMap(yyl964, d) } - } else if yyct959 == codecSelferValueTypeArray1234 { - yyl959 := r.ReadArrayStart() - if yyl959 == 0 { + } else if yyct964 == codecSelferValueTypeArray1234 { + yyl964 := r.ReadArrayStart() + if yyl964 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl959, d) + x.codecDecodeSelfFromArray(yyl964, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13408,12 +13456,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys960Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys960Slc - var yyhl960 bool = l >= 0 - for yyj960 := 0; ; yyj960++ { - if yyhl960 { - if yyj960 >= l { + var yys965Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys965Slc + var yyhl965 bool = l >= 0 + for yyj965 := 0; ; yyj965++ { + if yyhl965 { + if yyj965 >= l { break } } else { @@ -13422,10 +13470,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys960Slc = r.DecodeBytes(yys960Slc, true, true) - yys960 := string(yys960Slc) + yys965Slc = r.DecodeBytes(yys965Slc, true, true) + yys965 := string(yys965Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys960 { + switch yys965 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -13436,15 +13484,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv962 := &x.Port - yym963 := z.DecBinary() - _ = yym963 + yyv967 := &x.Port + yym968 := z.DecBinary() + _ = yym968 if false { - } else if z.HasExtensions() && z.DecExt(yyv962) { - } else if !yym963 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv962) + } else if z.HasExtensions() && z.DecExt(yyv967) { + } else if !yym968 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv967) } else { - z.DecFallback(yyv962, false) + z.DecFallback(yyv967, false) } } case "host": @@ -13460,9 +13508,9 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys960) - } // end switch yys960 - } // end for yyj960 + z.DecStructFieldNotFound(-1, yys965) + } // end switch yys965 + } // end for yyj965 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13470,16 +13518,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj966 int - var yyb966 bool - var yyhl966 bool = l >= 0 - yyj966++ - if yyhl966 { - yyb966 = yyj966 > l + var yyj971 int + var yyb971 bool + var yyhl971 bool = l >= 0 + yyj971++ + if yyhl971 { + yyb971 = yyj971 > l } else { - yyb966 = r.CheckBreak() + yyb971 = r.CheckBreak() } - if yyb966 { + if yyb971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13489,13 +13537,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj966++ - if yyhl966 { - yyb966 = yyj966 > l + yyj971++ + if yyhl971 { + yyb971 = yyj971 > l } else { - yyb966 = r.CheckBreak() + yyb971 = r.CheckBreak() } - if yyb966 { + if yyb971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13503,24 +13551,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv968 := &x.Port - yym969 := z.DecBinary() - _ = yym969 + yyv973 := &x.Port + yym974 := z.DecBinary() + _ = yym974 if false { - } else if z.HasExtensions() && z.DecExt(yyv968) { - } else if !yym969 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv968) + } else if z.HasExtensions() && z.DecExt(yyv973) { + } else if !yym974 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv973) } else { - z.DecFallback(yyv968, false) + z.DecFallback(yyv973, false) } } - yyj966++ - if yyhl966 { - yyb966 = yyj966 > l + yyj971++ + if yyhl971 { + yyb971 = yyj971 > l } else { - yyb966 = r.CheckBreak() + yyb971 = r.CheckBreak() } - if yyb966 { + if yyb971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13530,13 +13578,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj966++ - if yyhl966 { - yyb966 = yyj966 > l + yyj971++ + if yyhl971 { + yyb971 = yyj971 > l } else { - yyb966 = r.CheckBreak() + yyb971 = r.CheckBreak() } - if yyb966 { + if yyb971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13547,17 +13595,17 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } for { - yyj966++ - if yyhl966 { - yyb966 = yyj966 > l + yyj971++ + if yyhl971 { + yyb971 = yyj971 > l } else { - yyb966 = r.CheckBreak() + yyb971 = r.CheckBreak() } - if yyb966 { + if yyb971 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj966-1, "") + z.DecStructFieldNotFound(yyj971-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13566,8 +13614,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym972 := z.EncBinary() - _ = yym972 + yym977 := z.EncBinary() + _ = yym977 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -13579,8 +13627,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym973 := z.DecBinary() - _ = yym973 + yym978 := z.DecBinary() + _ = yym978 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -13595,64 +13643,64 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym974 := z.EncBinary() - _ = yym974 + yym979 := z.EncBinary() + _ = yym979 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep975 := !z.EncBinary() - yy2arr975 := z.EncBasicHandle().StructToArray - var yyq975 [1]bool - _, _, _ = yysep975, yyq975, yy2arr975 - const yyr975 bool = false - yyq975[0] = true - var yynn975 int - if yyr975 || yy2arr975 { + yysep980 := !z.EncBinary() + yy2arr980 := z.EncBasicHandle().StructToArray + var yyq980 [1]bool + _, _, _ = yysep980, yyq980, yy2arr980 + const yyr980 bool = false + yyq980[0] = true + var yynn980 int + if yyr980 || yy2arr980 { r.EncodeArrayStart(1) } else { - yynn975 = 0 - for _, b := range yyq975 { + yynn980 = 0 + for _, b := range yyq980 { if b { - yynn975++ + yynn980++ } } - r.EncodeMapStart(yynn975) - yynn975 = 0 + r.EncodeMapStart(yynn980) + yynn980 = 0 } - if yyr975 || yy2arr975 { + if yyr980 || yy2arr980 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq975[0] { - yy977 := &x.Port - yym978 := z.EncBinary() - _ = yym978 + if yyq980[0] { + yy982 := &x.Port + yym983 := z.EncBinary() + _ = yym983 if false { - } else if z.HasExtensions() && z.EncExt(yy977) { - } else if !yym978 && z.IsJSONHandle() { - z.EncJSONMarshal(yy977) + } else if z.HasExtensions() && z.EncExt(yy982) { + } else if !yym983 && z.IsJSONHandle() { + z.EncJSONMarshal(yy982) } else { - z.EncFallback(yy977) + z.EncFallback(yy982) } } else { r.EncodeNil() } } else { - if yyq975[0] { + if yyq980[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy979 := &x.Port - yym980 := z.EncBinary() - _ = yym980 + yy984 := &x.Port + yym985 := z.EncBinary() + _ = yym985 if false { - } else if z.HasExtensions() && z.EncExt(yy979) { - } else if !yym980 && z.IsJSONHandle() { - z.EncJSONMarshal(yy979) + } else if z.HasExtensions() && z.EncExt(yy984) { + } else if !yym985 && z.IsJSONHandle() { + z.EncJSONMarshal(yy984) } else { - z.EncFallback(yy979) + z.EncFallback(yy984) } } } - if yyr975 || yy2arr975 { + if yyr980 || yy2arr980 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13665,25 +13713,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym981 := z.DecBinary() - _ = yym981 + yym986 := z.DecBinary() + _ = yym986 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct982 := r.ContainerType() - if yyct982 == codecSelferValueTypeMap1234 { - yyl982 := r.ReadMapStart() - if yyl982 == 0 { + yyct987 := r.ContainerType() + if yyct987 == codecSelferValueTypeMap1234 { + yyl987 := r.ReadMapStart() + if yyl987 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl982, d) + x.codecDecodeSelfFromMap(yyl987, d) } - } else if yyct982 == codecSelferValueTypeArray1234 { - yyl982 := r.ReadArrayStart() - if yyl982 == 0 { + } else if yyct987 == codecSelferValueTypeArray1234 { + yyl987 := r.ReadArrayStart() + if yyl987 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl982, d) + x.codecDecodeSelfFromArray(yyl987, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13695,12 +13743,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys983Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys983Slc - var yyhl983 bool = l >= 0 - for yyj983 := 0; ; yyj983++ { - if yyhl983 { - if yyj983 >= l { + var yys988Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys988Slc + var yyhl988 bool = l >= 0 + for yyj988 := 0; ; yyj988++ { + if yyhl988 { + if yyj988 >= l { break } } else { @@ -13709,29 +13757,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys983Slc = r.DecodeBytes(yys983Slc, true, true) - yys983 := string(yys983Slc) + yys988Slc = r.DecodeBytes(yys988Slc, true, true) + yys988 := string(yys988Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys983 { + switch yys988 { case "port": if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv984 := &x.Port - yym985 := z.DecBinary() - _ = yym985 + yyv989 := &x.Port + yym990 := z.DecBinary() + _ = yym990 if false { - } else if z.HasExtensions() && z.DecExt(yyv984) { - } else if !yym985 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv984) + } else if z.HasExtensions() && z.DecExt(yyv989) { + } else if !yym990 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv989) } else { - z.DecFallback(yyv984, false) + z.DecFallback(yyv989, false) } } default: - z.DecStructFieldNotFound(-1, yys983) - } // end switch yys983 - } // end for yyj983 + z.DecStructFieldNotFound(-1, yys988) + } // end switch yys988 + } // end for yyj988 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13739,16 +13787,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj986 int - var yyb986 bool - var yyhl986 bool = l >= 0 - yyj986++ - if yyhl986 { - yyb986 = yyj986 > l + var yyj991 int + var yyb991 bool + var yyhl991 bool = l >= 0 + yyj991++ + if yyhl991 { + yyb991 = yyj991 > l } else { - yyb986 = r.CheckBreak() + yyb991 = r.CheckBreak() } - if yyb986 { + if yyb991 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13756,29 +13804,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv987 := &x.Port - yym988 := z.DecBinary() - _ = yym988 + yyv992 := &x.Port + yym993 := z.DecBinary() + _ = yym993 if false { - } else if z.HasExtensions() && z.DecExt(yyv987) { - } else if !yym988 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv987) + } else if z.HasExtensions() && z.DecExt(yyv992) { + } else if !yym993 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv992) } else { - z.DecFallback(yyv987, false) + z.DecFallback(yyv992, false) } } for { - yyj986++ - if yyhl986 { - yyb986 = yyj986 > l + yyj991++ + if yyhl991 { + yyb991 = yyj991 > l } else { - yyb986 = r.CheckBreak() + yyb991 = r.CheckBreak() } - if yyb986 { + if yyb991 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj986-1, "") + z.DecStructFieldNotFound(yyj991-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13790,38 +13838,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym989 := z.EncBinary() - _ = yym989 + yym994 := z.EncBinary() + _ = yym994 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep990 := !z.EncBinary() - yy2arr990 := z.EncBasicHandle().StructToArray - var yyq990 [1]bool - _, _, _ = yysep990, yyq990, yy2arr990 - const yyr990 bool = false - yyq990[0] = len(x.Command) != 0 - var yynn990 int - if yyr990 || yy2arr990 { + yysep995 := !z.EncBinary() + yy2arr995 := z.EncBasicHandle().StructToArray + var yyq995 [1]bool + _, _, _ = yysep995, yyq995, yy2arr995 + const yyr995 bool = false + yyq995[0] = len(x.Command) != 0 + var yynn995 int + if yyr995 || yy2arr995 { r.EncodeArrayStart(1) } else { - yynn990 = 0 - for _, b := range yyq990 { + yynn995 = 0 + for _, b := range yyq995 { if b { - yynn990++ + yynn995++ } } - r.EncodeMapStart(yynn990) - yynn990 = 0 + r.EncodeMapStart(yynn995) + yynn995 = 0 } - if yyr990 || yy2arr990 { + if yyr995 || yy2arr995 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq990[0] { + if yyq995[0] { if x.Command == nil { r.EncodeNil() } else { - yym992 := z.EncBinary() - _ = yym992 + yym997 := z.EncBinary() + _ = yym997 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -13831,15 +13879,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq990[0] { + if yyq995[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym993 := z.EncBinary() - _ = yym993 + yym998 := z.EncBinary() + _ = yym998 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -13847,7 +13895,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr990 || yy2arr990 { + if yyr995 || yy2arr995 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13860,25 +13908,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym994 := z.DecBinary() - _ = yym994 + yym999 := z.DecBinary() + _ = yym999 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct995 := r.ContainerType() - if yyct995 == codecSelferValueTypeMap1234 { - yyl995 := r.ReadMapStart() - if yyl995 == 0 { + yyct1000 := r.ContainerType() + if yyct1000 == codecSelferValueTypeMap1234 { + yyl1000 := r.ReadMapStart() + if yyl1000 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl995, d) + x.codecDecodeSelfFromMap(yyl1000, d) } - } else if yyct995 == codecSelferValueTypeArray1234 { - yyl995 := r.ReadArrayStart() - if yyl995 == 0 { + } else if yyct1000 == codecSelferValueTypeArray1234 { + yyl1000 := r.ReadArrayStart() + if yyl1000 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl995, d) + x.codecDecodeSelfFromArray(yyl1000, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13890,12 +13938,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys996Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys996Slc - var yyhl996 bool = l >= 0 - for yyj996 := 0; ; yyj996++ { - if yyhl996 { - if yyj996 >= l { + var yys1001Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1001Slc + var yyhl1001 bool = l >= 0 + for yyj1001 := 0; ; yyj1001++ { + if yyhl1001 { + if yyj1001 >= l { break } } else { @@ -13904,26 +13952,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys996Slc = r.DecodeBytes(yys996Slc, true, true) - yys996 := string(yys996Slc) + yys1001Slc = r.DecodeBytes(yys1001Slc, true, true) + yys1001 := string(yys1001Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys996 { + switch yys1001 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv997 := &x.Command - yym998 := z.DecBinary() - _ = yym998 + yyv1002 := &x.Command + yym1003 := z.DecBinary() + _ = yym1003 if false { } else { - z.F.DecSliceStringX(yyv997, false, d) + z.F.DecSliceStringX(yyv1002, false, d) } } default: - z.DecStructFieldNotFound(-1, yys996) - } // end switch yys996 - } // end for yyj996 + z.DecStructFieldNotFound(-1, yys1001) + } // end switch yys1001 + } // end for yyj1001 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13931,16 +13979,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj999 int - var yyb999 bool - var yyhl999 bool = l >= 0 - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + var yyj1004 int + var yyb1004 bool + var yyhl1004 bool = l >= 0 + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l } else { - yyb999 = r.CheckBreak() + yyb1004 = r.CheckBreak() } - if yyb999 { + if yyb1004 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13948,26 +13996,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1000 := &x.Command - yym1001 := z.DecBinary() - _ = yym1001 + yyv1005 := &x.Command + yym1006 := z.DecBinary() + _ = yym1006 if false { } else { - z.F.DecSliceStringX(yyv1000, false, d) + z.F.DecSliceStringX(yyv1005, false, d) } } for { - yyj999++ - if yyhl999 { - yyb999 = yyj999 > l + yyj1004++ + if yyhl1004 { + yyb1004 = yyj1004 > l } else { - yyb999 = r.CheckBreak() + yyb1004 = r.CheckBreak() } - if yyb999 { + if yyb1004 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj999-1, "") + z.DecStructFieldNotFound(yyj1004-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13979,49 +14027,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1002 := z.EncBinary() - _ = yym1002 + yym1007 := z.EncBinary() + _ = yym1007 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1003 := !z.EncBinary() - yy2arr1003 := z.EncBasicHandle().StructToArray - var yyq1003 [8]bool - _, _, _ = yysep1003, yyq1003, yy2arr1003 - const yyr1003 bool = false - yyq1003[0] = x.Handler.Exec != nil && x.Exec != nil - yyq1003[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq1003[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq1003[3] = x.InitialDelaySeconds != 0 - yyq1003[4] = x.TimeoutSeconds != 0 - yyq1003[5] = x.PeriodSeconds != 0 - yyq1003[6] = x.SuccessThreshold != 0 - yyq1003[7] = x.FailureThreshold != 0 - var yynn1003 int - if yyr1003 || yy2arr1003 { + yysep1008 := !z.EncBinary() + yy2arr1008 := z.EncBasicHandle().StructToArray + var yyq1008 [8]bool + _, _, _ = yysep1008, yyq1008, yy2arr1008 + const yyr1008 bool = false + yyq1008[0] = x.Handler.Exec != nil && x.Exec != nil + yyq1008[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq1008[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq1008[3] = x.InitialDelaySeconds != 0 + yyq1008[4] = x.TimeoutSeconds != 0 + yyq1008[5] = x.PeriodSeconds != 0 + yyq1008[6] = x.SuccessThreshold != 0 + yyq1008[7] = x.FailureThreshold != 0 + var yynn1008 int + if yyr1008 || yy2arr1008 { r.EncodeArrayStart(8) } else { - yynn1003 = 0 - for _, b := range yyq1003 { + yynn1008 = 0 + for _, b := range yyq1008 { if b { - yynn1003++ + yynn1008++ } } - r.EncodeMapStart(yynn1003) - yynn1003 = 0 + r.EncodeMapStart(yynn1008) + yynn1008 = 0 } - var yyn1004 bool + var yyn1009 bool if x.Handler.Exec == nil { - yyn1004 = true - goto LABEL1004 + yyn1009 = true + goto LABEL1009 } - LABEL1004: - if yyr1003 || yy2arr1003 { - if yyn1004 { + LABEL1009: + if yyr1008 || yy2arr1008 { + if yyn1009 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[0] { + if yyq1008[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -14032,11 +14080,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1003[0] { + if yyq1008[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1004 { + if yyn1009 { r.EncodeNil() } else { if x.Exec == nil { @@ -14047,18 +14095,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1005 bool + var yyn1010 bool if x.Handler.HTTPGet == nil { - yyn1005 = true - goto LABEL1005 + yyn1010 = true + goto LABEL1010 } - LABEL1005: - if yyr1003 || yy2arr1003 { - if yyn1005 { + LABEL1010: + if yyr1008 || yy2arr1008 { + if yyn1010 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[1] { + if yyq1008[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -14069,11 +14117,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1003[1] { + if yyq1008[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1005 { + if yyn1010 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -14084,18 +14132,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn1006 bool + var yyn1011 bool if x.Handler.TCPSocket == nil { - yyn1006 = true - goto LABEL1006 + yyn1011 = true + goto LABEL1011 } - LABEL1006: - if yyr1003 || yy2arr1003 { - if yyn1006 { + LABEL1011: + if yyr1008 || yy2arr1008 { + if yyn1011 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[2] { + if yyq1008[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -14106,11 +14154,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq1003[2] { + if yyq1008[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn1006 { + if yyn1011 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -14121,11 +14169,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[3] { - yym1008 := z.EncBinary() - _ = yym1008 + if yyq1008[3] { + yym1013 := z.EncBinary() + _ = yym1013 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -14134,23 +14182,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1003[3] { + if yyq1008[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1009 := z.EncBinary() - _ = yym1009 + yym1014 := z.EncBinary() + _ = yym1014 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[4] { - yym1011 := z.EncBinary() - _ = yym1011 + if yyq1008[4] { + yym1016 := z.EncBinary() + _ = yym1016 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -14159,23 +14207,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1003[4] { + if yyq1008[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1012 := z.EncBinary() - _ = yym1012 + yym1017 := z.EncBinary() + _ = yym1017 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[5] { - yym1014 := z.EncBinary() - _ = yym1014 + if yyq1008[5] { + yym1019 := z.EncBinary() + _ = yym1019 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -14184,23 +14232,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1003[5] { + if yyq1008[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1015 := z.EncBinary() - _ = yym1015 + yym1020 := z.EncBinary() + _ = yym1020 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[6] { - yym1017 := z.EncBinary() - _ = yym1017 + if yyq1008[6] { + yym1022 := z.EncBinary() + _ = yym1022 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -14209,23 +14257,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1003[6] { + if yyq1008[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1018 := z.EncBinary() - _ = yym1018 + yym1023 := z.EncBinary() + _ = yym1023 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1003[7] { - yym1020 := z.EncBinary() - _ = yym1020 + if yyq1008[7] { + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -14234,19 +14282,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1003[7] { + if yyq1008[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1021 := z.EncBinary() - _ = yym1021 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr1003 || yy2arr1003 { + if yyr1008 || yy2arr1008 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14259,25 +14307,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1022 := z.DecBinary() - _ = yym1022 + yym1027 := z.DecBinary() + _ = yym1027 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1023 := r.ContainerType() - if yyct1023 == codecSelferValueTypeMap1234 { - yyl1023 := r.ReadMapStart() - if yyl1023 == 0 { + yyct1028 := r.ContainerType() + if yyct1028 == codecSelferValueTypeMap1234 { + yyl1028 := r.ReadMapStart() + if yyl1028 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1023, d) + x.codecDecodeSelfFromMap(yyl1028, d) } - } else if yyct1023 == codecSelferValueTypeArray1234 { - yyl1023 := r.ReadArrayStart() - if yyl1023 == 0 { + } else if yyct1028 == codecSelferValueTypeArray1234 { + yyl1028 := r.ReadArrayStart() + if yyl1028 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1023, d) + x.codecDecodeSelfFromArray(yyl1028, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14289,12 +14337,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1024Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1024Slc - var yyhl1024 bool = l >= 0 - for yyj1024 := 0; ; yyj1024++ { - if yyhl1024 { - if yyj1024 >= l { + var yys1029Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1029Slc + var yyhl1029 bool = l >= 0 + for yyj1029 := 0; ; yyj1029++ { + if yyhl1029 { + if yyj1029 >= l { break } } else { @@ -14303,10 +14351,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1024Slc = r.DecodeBytes(yys1024Slc, true, true) - yys1024 := string(yys1024Slc) + yys1029Slc = r.DecodeBytes(yys1029Slc, true, true) + yys1029 := string(yys1029Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1024 { + switch yys1029 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -14380,9 +14428,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys1024) - } // end switch yys1024 - } // end for yyj1024 + z.DecStructFieldNotFound(-1, yys1029) + } // end switch yys1029 + } // end for yyj1029 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14390,19 +14438,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1033 int - var yyb1033 bool - var yyhl1033 bool = l >= 0 + var yyj1038 int + var yyb1038 bool + var yyhl1038 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14420,13 +14468,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14444,13 +14492,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14465,13 +14513,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14481,13 +14529,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14497,13 +14545,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14513,13 +14561,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14529,13 +14577,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14546,17 +14594,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj1033++ - if yyhl1033 { - yyb1033 = yyj1033 > l + yyj1038++ + if yyhl1038 { + yyb1038 = yyj1038 > l } else { - yyb1033 = r.CheckBreak() + yyb1038 = r.CheckBreak() } - if yyb1033 { + if yyb1038 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1033-1, "") + z.DecStructFieldNotFound(yyj1038-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14565,8 +14613,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1042 := z.EncBinary() - _ = yym1042 + yym1047 := z.EncBinary() + _ = yym1047 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14578,8 +14626,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1043 := z.DecBinary() - _ = yym1043 + yym1048 := z.DecBinary() + _ = yym1048 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14591,8 +14639,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1044 := z.EncBinary() - _ = yym1044 + yym1049 := z.EncBinary() + _ = yym1049 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14604,8 +14652,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1045 := z.DecBinary() - _ = yym1045 + yym1050 := z.DecBinary() + _ = yym1050 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14620,39 +14668,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1046 := z.EncBinary() - _ = yym1046 + yym1051 := z.EncBinary() + _ = yym1051 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1047 := !z.EncBinary() - yy2arr1047 := z.EncBasicHandle().StructToArray - var yyq1047 [2]bool - _, _, _ = yysep1047, yyq1047, yy2arr1047 - const yyr1047 bool = false - yyq1047[0] = len(x.Add) != 0 - yyq1047[1] = len(x.Drop) != 0 - var yynn1047 int - if yyr1047 || yy2arr1047 { + yysep1052 := !z.EncBinary() + yy2arr1052 := z.EncBasicHandle().StructToArray + var yyq1052 [2]bool + _, _, _ = yysep1052, yyq1052, yy2arr1052 + const yyr1052 bool = false + yyq1052[0] = len(x.Add) != 0 + yyq1052[1] = len(x.Drop) != 0 + var yynn1052 int + if yyr1052 || yy2arr1052 { r.EncodeArrayStart(2) } else { - yynn1047 = 0 - for _, b := range yyq1047 { + yynn1052 = 0 + for _, b := range yyq1052 { if b { - yynn1047++ + yynn1052++ } } - r.EncodeMapStart(yynn1047) - yynn1047 = 0 + r.EncodeMapStart(yynn1052) + yynn1052 = 0 } - if yyr1047 || yy2arr1047 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1047[0] { + if yyq1052[0] { if x.Add == nil { r.EncodeNil() } else { - yym1049 := z.EncBinary() - _ = yym1049 + yym1054 := z.EncBinary() + _ = yym1054 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14662,15 +14710,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1047[0] { + if yyq1052[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1050 := z.EncBinary() - _ = yym1050 + yym1055 := z.EncBinary() + _ = yym1055 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14678,14 +14726,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1047 || yy2arr1047 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1047[1] { + if yyq1052[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1052 := z.EncBinary() - _ = yym1052 + yym1057 := z.EncBinary() + _ = yym1057 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14695,15 +14743,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1047[1] { + if yyq1052[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1053 := z.EncBinary() - _ = yym1053 + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14711,7 +14759,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1047 || yy2arr1047 { + if yyr1052 || yy2arr1052 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14724,25 +14772,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1054 := z.DecBinary() - _ = yym1054 + yym1059 := z.DecBinary() + _ = yym1059 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1055 := r.ContainerType() - if yyct1055 == codecSelferValueTypeMap1234 { - yyl1055 := r.ReadMapStart() - if yyl1055 == 0 { + yyct1060 := r.ContainerType() + if yyct1060 == codecSelferValueTypeMap1234 { + yyl1060 := r.ReadMapStart() + if yyl1060 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1055, d) + x.codecDecodeSelfFromMap(yyl1060, d) } - } else if yyct1055 == codecSelferValueTypeArray1234 { - yyl1055 := r.ReadArrayStart() - if yyl1055 == 0 { + } else if yyct1060 == codecSelferValueTypeArray1234 { + yyl1060 := r.ReadArrayStart() + if yyl1060 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1055, d) + x.codecDecodeSelfFromArray(yyl1060, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14754,12 +14802,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1056Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1056Slc - var yyhl1056 bool = l >= 0 - for yyj1056 := 0; ; yyj1056++ { - if yyhl1056 { - if yyj1056 >= l { + var yys1061Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1061Slc + var yyhl1061 bool = l >= 0 + for yyj1061 := 0; ; yyj1061++ { + if yyhl1061 { + if yyj1061 >= l { break } } else { @@ -14768,38 +14816,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1056Slc = r.DecodeBytes(yys1056Slc, true, true) - yys1056 := string(yys1056Slc) + yys1061Slc = r.DecodeBytes(yys1061Slc, true, true) + yys1061 := string(yys1061Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1056 { + switch yys1061 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1057 := &x.Add - yym1058 := z.DecBinary() - _ = yym1058 + yyv1062 := &x.Add + yym1063 := z.DecBinary() + _ = yym1063 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1057), d) + h.decSliceCapability((*[]Capability)(yyv1062), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1059 := &x.Drop - yym1060 := z.DecBinary() - _ = yym1060 + yyv1064 := &x.Drop + yym1065 := z.DecBinary() + _ = yym1065 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1059), d) + h.decSliceCapability((*[]Capability)(yyv1064), d) } } default: - z.DecStructFieldNotFound(-1, yys1056) - } // end switch yys1056 - } // end for yyj1056 + z.DecStructFieldNotFound(-1, yys1061) + } // end switch yys1061 + } // end for yyj1061 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14807,16 +14855,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1061 int - var yyb1061 bool - var yyhl1061 bool = l >= 0 - yyj1061++ - if yyhl1061 { - yyb1061 = yyj1061 > l + var yyj1066 int + var yyb1066 bool + var yyhl1066 bool = l >= 0 + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1061 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1061 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14824,21 +14872,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1062 := &x.Add - yym1063 := z.DecBinary() - _ = yym1063 + yyv1067 := &x.Add + yym1068 := z.DecBinary() + _ = yym1068 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1062), d) + h.decSliceCapability((*[]Capability)(yyv1067), d) } } - yyj1061++ - if yyhl1061 { - yyb1061 = yyj1061 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1061 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1061 { + if yyb1066 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14846,26 +14894,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1064 := &x.Drop - yym1065 := z.DecBinary() - _ = yym1065 + yyv1069 := &x.Drop + yym1070 := z.DecBinary() + _ = yym1070 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1064), d) + h.decSliceCapability((*[]Capability)(yyv1069), d) } } for { - yyj1061++ - if yyhl1061 { - yyb1061 = yyj1061 > l + yyj1066++ + if yyhl1066 { + yyb1066 = yyj1066 > l } else { - yyb1061 = r.CheckBreak() + yyb1066 = r.CheckBreak() } - if yyb1061 { + if yyb1066 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1061-1, "") + z.DecStructFieldNotFound(yyj1066-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14877,34 +14925,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1066 := z.EncBinary() - _ = yym1066 + yym1071 := z.EncBinary() + _ = yym1071 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1067 := !z.EncBinary() - yy2arr1067 := z.EncBasicHandle().StructToArray - var yyq1067 [2]bool - _, _, _ = yysep1067, yyq1067, yy2arr1067 - const yyr1067 bool = false - yyq1067[0] = len(x.Limits) != 0 - yyq1067[1] = len(x.Requests) != 0 - var yynn1067 int - if yyr1067 || yy2arr1067 { + yysep1072 := !z.EncBinary() + yy2arr1072 := z.EncBasicHandle().StructToArray + var yyq1072 [2]bool + _, _, _ = yysep1072, yyq1072, yy2arr1072 + const yyr1072 bool = false + yyq1072[0] = len(x.Limits) != 0 + yyq1072[1] = len(x.Requests) != 0 + var yynn1072 int + if yyr1072 || yy2arr1072 { r.EncodeArrayStart(2) } else { - yynn1067 = 0 - for _, b := range yyq1067 { + yynn1072 = 0 + for _, b := range yyq1072 { if b { - yynn1067++ + yynn1072++ } } - r.EncodeMapStart(yynn1067) - yynn1067 = 0 + r.EncodeMapStart(yynn1072) + yynn1072 = 0 } - if yyr1067 || yy2arr1067 { + if yyr1072 || yy2arr1072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1067[0] { + if yyq1072[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -14914,7 +14962,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1067[0] { + if yyq1072[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14925,9 +14973,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1067 || yy2arr1067 { + if yyr1072 || yy2arr1072 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1067[1] { + if yyq1072[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -14937,7 +14985,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1067[1] { + if yyq1072[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14948,7 +14996,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1067 || yy2arr1067 { + if yyr1072 || yy2arr1072 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14961,25 +15009,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1070 := z.DecBinary() - _ = yym1070 + yym1075 := z.DecBinary() + _ = yym1075 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1071 := r.ContainerType() - if yyct1071 == codecSelferValueTypeMap1234 { - yyl1071 := r.ReadMapStart() - if yyl1071 == 0 { + yyct1076 := r.ContainerType() + if yyct1076 == codecSelferValueTypeMap1234 { + yyl1076 := r.ReadMapStart() + if yyl1076 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1071, d) + x.codecDecodeSelfFromMap(yyl1076, d) } - } else if yyct1071 == codecSelferValueTypeArray1234 { - yyl1071 := r.ReadArrayStart() - if yyl1071 == 0 { + } else if yyct1076 == codecSelferValueTypeArray1234 { + yyl1076 := r.ReadArrayStart() + if yyl1076 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1071, d) + x.codecDecodeSelfFromArray(yyl1076, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14991,12 +15039,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode 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 yys1077Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1077Slc + var yyhl1077 bool = l >= 0 + for yyj1077 := 0; ; yyj1077++ { + if yyhl1077 { + if yyj1077 >= l { break } } else { @@ -15005,28 +15053,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1072Slc = r.DecodeBytes(yys1072Slc, true, true) - yys1072 := string(yys1072Slc) + yys1077Slc = r.DecodeBytes(yys1077Slc, true, true) + yys1077 := string(yys1077Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1072 { + switch yys1077 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1073 := &x.Limits - yyv1073.CodecDecodeSelf(d) + yyv1078 := &x.Limits + yyv1078.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1074 := &x.Requests - yyv1074.CodecDecodeSelf(d) + yyv1079 := &x.Requests + yyv1079.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1072) - } // end switch yys1072 - } // end for yyj1072 + z.DecStructFieldNotFound(-1, yys1077) + } // end switch yys1077 + } // end for yyj1077 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15034,16 +15082,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1075 int - var yyb1075 bool - var yyhl1075 bool = l >= 0 - yyj1075++ - if yyhl1075 { - yyb1075 = yyj1075 > l + var yyj1080 int + var yyb1080 bool + var yyhl1080 bool = l >= 0 + yyj1080++ + if yyhl1080 { + yyb1080 = yyj1080 > l } else { - yyb1075 = r.CheckBreak() + yyb1080 = r.CheckBreak() } - if yyb1075 { + if yyb1080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15051,16 +15099,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1076 := &x.Limits - yyv1076.CodecDecodeSelf(d) + yyv1081 := &x.Limits + yyv1081.CodecDecodeSelf(d) } - yyj1075++ - if yyhl1075 { - yyb1075 = yyj1075 > l + yyj1080++ + if yyhl1080 { + yyb1080 = yyj1080 > l } else { - yyb1075 = r.CheckBreak() + yyb1080 = r.CheckBreak() } - if yyb1075 { + if yyb1080 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15068,21 +15116,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1077 := &x.Requests - yyv1077.CodecDecodeSelf(d) + yyv1082 := &x.Requests + yyv1082.CodecDecodeSelf(d) } for { - yyj1075++ - if yyhl1075 { - yyb1075 = yyj1075 > l + yyj1080++ + if yyhl1080 { + yyb1080 = yyj1080 > l } else { - yyb1075 = r.CheckBreak() + yyb1080 = r.CheckBreak() } - if yyb1075 { + if yyb1080 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1075-1, "") + z.DecStructFieldNotFound(yyj1080-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15094,48 +15142,48 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1078 := z.EncBinary() - _ = yym1078 + yym1083 := z.EncBinary() + _ = yym1083 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1079 := !z.EncBinary() - yy2arr1079 := z.EncBasicHandle().StructToArray - var yyq1079 [18]bool - _, _, _ = yysep1079, yyq1079, yy2arr1079 - const yyr1079 bool = false - yyq1079[2] = len(x.Command) != 0 - yyq1079[3] = len(x.Args) != 0 - yyq1079[4] = x.WorkingDir != "" - yyq1079[5] = len(x.Ports) != 0 - yyq1079[6] = len(x.Env) != 0 - yyq1079[7] = true - yyq1079[8] = len(x.VolumeMounts) != 0 - yyq1079[9] = x.LivenessProbe != nil - yyq1079[10] = x.ReadinessProbe != nil - yyq1079[11] = x.Lifecycle != nil - yyq1079[12] = x.TerminationMessagePath != "" - yyq1079[14] = x.SecurityContext != nil - yyq1079[15] = x.Stdin != false - yyq1079[16] = x.StdinOnce != false - yyq1079[17] = x.TTY != false - var yynn1079 int - if yyr1079 || yy2arr1079 { + yysep1084 := !z.EncBinary() + yy2arr1084 := z.EncBasicHandle().StructToArray + var yyq1084 [18]bool + _, _, _ = yysep1084, yyq1084, yy2arr1084 + const yyr1084 bool = false + yyq1084[2] = len(x.Command) != 0 + yyq1084[3] = len(x.Args) != 0 + yyq1084[4] = x.WorkingDir != "" + yyq1084[5] = len(x.Ports) != 0 + yyq1084[6] = len(x.Env) != 0 + yyq1084[7] = true + yyq1084[8] = len(x.VolumeMounts) != 0 + yyq1084[9] = x.LivenessProbe != nil + yyq1084[10] = x.ReadinessProbe != nil + yyq1084[11] = x.Lifecycle != nil + yyq1084[12] = x.TerminationMessagePath != "" + yyq1084[14] = x.SecurityContext != nil + yyq1084[15] = x.Stdin != false + yyq1084[16] = x.StdinOnce != false + yyq1084[17] = x.TTY != false + var yynn1084 int + if yyr1084 || yy2arr1084 { r.EncodeArrayStart(18) } else { - yynn1079 = 3 - for _, b := range yyq1079 { + yynn1084 = 3 + for _, b := range yyq1084 { if b { - yynn1079++ + yynn1084++ } } - r.EncodeMapStart(yynn1079) - yynn1079 = 0 + r.EncodeMapStart(yynn1084) + yynn1084 = 0 } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1081 := z.EncBinary() - _ = yym1081 + yym1086 := z.EncBinary() + _ = yym1086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -15144,17 +15192,17 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1082 := z.EncBinary() - _ = yym1082 + yym1087 := z.EncBinary() + _ = yym1087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1084 := z.EncBinary() - _ = yym1084 + yym1089 := z.EncBinary() + _ = yym1089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -15163,21 +15211,21 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1085 := z.EncBinary() - _ = yym1085 + yym1090 := z.EncBinary() + _ = yym1090 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[2] { + if yyq1084[2] { if x.Command == nil { r.EncodeNil() } else { - yym1087 := z.EncBinary() - _ = yym1087 + yym1092 := z.EncBinary() + _ = yym1092 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15187,15 +15235,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[2] { + if yyq1084[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1088 := z.EncBinary() - _ = yym1088 + yym1093 := z.EncBinary() + _ = yym1093 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -15203,14 +15251,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[3] { + if yyq1084[3] { if x.Args == nil { r.EncodeNil() } else { - yym1090 := z.EncBinary() - _ = yym1090 + yym1095 := z.EncBinary() + _ = yym1095 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -15220,15 +15268,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[3] { + if yyq1084[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1091 := z.EncBinary() - _ = yym1091 + yym1096 := z.EncBinary() + _ = yym1096 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -15236,11 +15284,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[4] { - yym1093 := z.EncBinary() - _ = yym1093 + if yyq1084[4] { + yym1098 := z.EncBinary() + _ = yym1098 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -15249,26 +15297,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[4] { + if yyq1084[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1094 := z.EncBinary() - _ = yym1094 + yym1099 := z.EncBinary() + _ = yym1099 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[5] { + if yyq1084[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1096 := z.EncBinary() - _ = yym1096 + yym1101 := z.EncBinary() + _ = yym1101 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -15278,15 +15326,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[5] { + if yyq1084[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1097 := z.EncBinary() - _ = yym1097 + yym1102 := z.EncBinary() + _ = yym1102 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -15294,14 +15342,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[6] { + if yyq1084[6] { if x.Env == nil { r.EncodeNil() } else { - yym1099 := z.EncBinary() - _ = yym1099 + yym1104 := z.EncBinary() + _ = yym1104 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -15311,15 +15359,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[6] { + if yyq1084[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1100 := z.EncBinary() - _ = yym1100 + yym1105 := z.EncBinary() + _ = yym1105 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -15327,31 +15375,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[7] { - yy1102 := &x.Resources - yy1102.CodecEncodeSelf(e) + if yyq1084[7] { + yy1107 := &x.Resources + yy1107.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1079[7] { + if yyq1084[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1103 := &x.Resources - yy1103.CodecEncodeSelf(e) + yy1108 := &x.Resources + yy1108.CodecEncodeSelf(e) } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[8] { + if yyq1084[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1105 := z.EncBinary() - _ = yym1105 + yym1110 := z.EncBinary() + _ = yym1110 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -15361,15 +15409,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[8] { + if yyq1084[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1106 := z.EncBinary() - _ = yym1106 + yym1111 := z.EncBinary() + _ = yym1111 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -15377,9 +15425,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[9] { + if yyq1084[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -15389,7 +15437,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[9] { + if yyq1084[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15400,9 +15448,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[10] { + if yyq1084[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -15412,7 +15460,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[10] { + if yyq1084[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15423,9 +15471,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[11] { + if yyq1084[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -15435,7 +15483,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[11] { + if yyq1084[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15446,11 +15494,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[12] { - yym1111 := z.EncBinary() - _ = yym1111 + if yyq1084[12] { + yym1116 := z.EncBinary() + _ = yym1116 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -15459,19 +15507,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1079[12] { + if yyq1084[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1112 := z.EncBinary() - _ = yym1112 + yym1117 := z.EncBinary() + _ = yym1117 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.ImagePullPolicy.CodecEncodeSelf(e) } else { @@ -15480,9 +15528,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[14] { + if yyq1084[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -15492,7 +15540,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1079[14] { + if yyq1084[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15503,11 +15551,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[15] { - yym1116 := z.EncBinary() - _ = yym1116 + if yyq1084[15] { + yym1121 := z.EncBinary() + _ = yym1121 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -15516,23 +15564,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1079[15] { + if yyq1084[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1117 := z.EncBinary() - _ = yym1117 + yym1122 := z.EncBinary() + _ = yym1122 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[16] { - yym1119 := z.EncBinary() - _ = yym1119 + if yyq1084[16] { + yym1124 := z.EncBinary() + _ = yym1124 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -15541,23 +15589,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1079[16] { + if yyq1084[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1120 := z.EncBinary() - _ = yym1120 + yym1125 := z.EncBinary() + _ = yym1125 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1079[17] { - yym1122 := z.EncBinary() - _ = yym1122 + if yyq1084[17] { + yym1127 := z.EncBinary() + _ = yym1127 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -15566,19 +15614,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1079[17] { + if yyq1084[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1123 := z.EncBinary() - _ = yym1123 + yym1128 := z.EncBinary() + _ = yym1128 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1079 || yy2arr1079 { + if yyr1084 || yy2arr1084 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15591,25 +15639,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1124 := z.DecBinary() - _ = yym1124 + yym1129 := z.DecBinary() + _ = yym1129 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1125 := r.ContainerType() - if yyct1125 == codecSelferValueTypeMap1234 { - yyl1125 := r.ReadMapStart() - if yyl1125 == 0 { + yyct1130 := r.ContainerType() + if yyct1130 == codecSelferValueTypeMap1234 { + yyl1130 := r.ReadMapStart() + if yyl1130 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1125, d) + x.codecDecodeSelfFromMap(yyl1130, d) } - } else if yyct1125 == codecSelferValueTypeArray1234 { - yyl1125 := r.ReadArrayStart() - if yyl1125 == 0 { + } else if yyct1130 == codecSelferValueTypeArray1234 { + yyl1130 := r.ReadArrayStart() + if yyl1130 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1125, d) + x.codecDecodeSelfFromArray(yyl1130, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15621,12 +15669,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1126Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1126Slc - var yyhl1126 bool = l >= 0 - for yyj1126 := 0; ; yyj1126++ { - if yyhl1126 { - if yyj1126 >= l { + var yys1131Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1131Slc + var yyhl1131 bool = l >= 0 + for yyj1131 := 0; ; yyj1131++ { + if yyhl1131 { + if yyj1131 >= l { break } } else { @@ -15635,10 +15683,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1126Slc = r.DecodeBytes(yys1126Slc, true, true) - yys1126 := string(yys1126Slc) + yys1131Slc = r.DecodeBytes(yys1131Slc, true, true) + yys1131 := string(yys1131Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1126 { + switch yys1131 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15655,24 +15703,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1129 := &x.Command - yym1130 := z.DecBinary() - _ = yym1130 + yyv1134 := &x.Command + yym1135 := z.DecBinary() + _ = yym1135 if false { } else { - z.F.DecSliceStringX(yyv1129, false, d) + z.F.DecSliceStringX(yyv1134, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1131 := &x.Args - yym1132 := z.DecBinary() - _ = yym1132 + yyv1136 := &x.Args + yym1137 := z.DecBinary() + _ = yym1137 if false { } else { - z.F.DecSliceStringX(yyv1131, false, d) + z.F.DecSliceStringX(yyv1136, false, d) } } case "workingDir": @@ -15685,43 +15733,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1134 := &x.Ports - yym1135 := z.DecBinary() - _ = yym1135 + yyv1139 := &x.Ports + yym1140 := z.DecBinary() + _ = yym1140 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1134), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1139), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1136 := &x.Env - yym1137 := z.DecBinary() - _ = yym1137 + yyv1141 := &x.Env + yym1142 := z.DecBinary() + _ = yym1142 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1136), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1141), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1138 := &x.Resources - yyv1138.CodecDecodeSelf(d) + yyv1143 := &x.Resources + yyv1143.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1139 := &x.VolumeMounts - yym1140 := z.DecBinary() - _ = yym1140 + yyv1144 := &x.VolumeMounts + yym1145 := z.DecBinary() + _ = yym1145 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1139), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1144), d) } } case "livenessProbe": @@ -15799,9 +15847,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1126) - } // end switch yys1126 - } // end for yyj1126 + z.DecStructFieldNotFound(-1, yys1131) + } // end switch yys1131 + } // end for yyj1131 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15809,16 +15857,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1150 int - var yyb1150 bool - var yyhl1150 bool = l >= 0 - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + var yyj1155 int + var yyb1155 bool + var yyhl1155 bool = l >= 0 + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15828,13 +15876,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15844,13 +15892,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15858,21 +15906,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1153 := &x.Command - yym1154 := z.DecBinary() - _ = yym1154 + yyv1158 := &x.Command + yym1159 := z.DecBinary() + _ = yym1159 if false { } else { - z.F.DecSliceStringX(yyv1153, false, d) + z.F.DecSliceStringX(yyv1158, false, d) } } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15880,21 +15928,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1155 := &x.Args - yym1156 := z.DecBinary() - _ = yym1156 + yyv1160 := &x.Args + yym1161 := z.DecBinary() + _ = yym1161 if false { } else { - z.F.DecSliceStringX(yyv1155, false, d) + z.F.DecSliceStringX(yyv1160, false, d) } } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15904,13 +15952,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15918,21 +15966,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1158 := &x.Ports - yym1159 := z.DecBinary() - _ = yym1159 + yyv1163 := &x.Ports + yym1164 := z.DecBinary() + _ = yym1164 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1158), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1163), d) } } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15940,21 +15988,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1160 := &x.Env - yym1161 := z.DecBinary() - _ = yym1161 + yyv1165 := &x.Env + yym1166 := z.DecBinary() + _ = yym1166 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1160), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1165), d) } } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15962,16 +16010,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1162 := &x.Resources - yyv1162.CodecDecodeSelf(d) + yyv1167 := &x.Resources + yyv1167.CodecDecodeSelf(d) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15979,21 +16027,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1163 := &x.VolumeMounts - yym1164 := z.DecBinary() - _ = yym1164 + yyv1168 := &x.VolumeMounts + yym1169 := z.DecBinary() + _ = yym1169 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1163), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1168), d) } } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16008,13 +16056,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16029,13 +16077,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16050,13 +16098,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16066,13 +16114,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16082,13 +16130,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16103,13 +16151,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16119,13 +16167,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16135,13 +16183,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16152,17 +16200,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1150++ - if yyhl1150 { - yyb1150 = yyj1150 > l + yyj1155++ + if yyhl1155 { + yyb1155 = yyj1155 > l } else { - yyb1150 = r.CheckBreak() + yyb1155 = r.CheckBreak() } - if yyb1150 { + if yyb1155 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1150-1, "") + z.DecStructFieldNotFound(yyj1155-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16174,35 +16222,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1174 := z.EncBinary() - _ = yym1174 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1175 := !z.EncBinary() - yy2arr1175 := z.EncBasicHandle().StructToArray - var yyq1175 [3]bool - _, _, _ = yysep1175, yyq1175, yy2arr1175 - const yyr1175 bool = false - yyq1175[0] = x.Exec != nil - yyq1175[1] = x.HTTPGet != nil - yyq1175[2] = x.TCPSocket != nil - var yynn1175 int - if yyr1175 || yy2arr1175 { + yysep1180 := !z.EncBinary() + yy2arr1180 := z.EncBasicHandle().StructToArray + var yyq1180 [3]bool + _, _, _ = yysep1180, yyq1180, yy2arr1180 + const yyr1180 bool = false + yyq1180[0] = x.Exec != nil + yyq1180[1] = x.HTTPGet != nil + yyq1180[2] = x.TCPSocket != nil + var yynn1180 int + if yyr1180 || yy2arr1180 { r.EncodeArrayStart(3) } else { - yynn1175 = 0 - for _, b := range yyq1175 { + yynn1180 = 0 + for _, b := range yyq1180 { if b { - yynn1175++ + yynn1180++ } } - r.EncodeMapStart(yynn1175) - yynn1175 = 0 + r.EncodeMapStart(yynn1180) + yynn1180 = 0 } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1175[0] { + if yyq1180[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -16212,7 +16260,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1175[0] { + if yyq1180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16223,9 +16271,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1175[1] { + if yyq1180[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -16235,7 +16283,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1175[1] { + if yyq1180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16246,9 +16294,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1175[2] { + if yyq1180[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -16258,7 +16306,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1175[2] { + if yyq1180[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16269,7 +16317,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16282,25 +16330,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1179 := z.DecBinary() - _ = yym1179 + yym1184 := z.DecBinary() + _ = yym1184 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1180 := r.ContainerType() - if yyct1180 == codecSelferValueTypeMap1234 { - yyl1180 := r.ReadMapStart() - if yyl1180 == 0 { + yyct1185 := r.ContainerType() + if yyct1185 == codecSelferValueTypeMap1234 { + yyl1185 := r.ReadMapStart() + if yyl1185 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1180, d) + x.codecDecodeSelfFromMap(yyl1185, d) } - } else if yyct1180 == codecSelferValueTypeArray1234 { - yyl1180 := r.ReadArrayStart() - if yyl1180 == 0 { + } else if yyct1185 == codecSelferValueTypeArray1234 { + yyl1185 := r.ReadArrayStart() + if yyl1185 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1180, d) + x.codecDecodeSelfFromArray(yyl1185, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16312,12 +16360,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1181Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1181Slc - var yyhl1181 bool = l >= 0 - for yyj1181 := 0; ; yyj1181++ { - if yyhl1181 { - if yyj1181 >= l { + var yys1186Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1186Slc + var yyhl1186 bool = l >= 0 + for yyj1186 := 0; ; yyj1186++ { + if yyhl1186 { + if yyj1186 >= l { break } } else { @@ -16326,10 +16374,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1181Slc = r.DecodeBytes(yys1181Slc, true, true) - yys1181 := string(yys1181Slc) + yys1186Slc = r.DecodeBytes(yys1186Slc, true, true) + yys1186 := string(yys1186Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1181 { + switch yys1186 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -16364,9 +16412,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1181) - } // end switch yys1181 - } // end for yyj1181 + z.DecStructFieldNotFound(-1, yys1186) + } // end switch yys1186 + } // end for yyj1186 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16374,16 +16422,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1185 int - var yyb1185 bool - var yyhl1185 bool = l >= 0 - yyj1185++ - if yyhl1185 { - yyb1185 = yyj1185 > l + var yyj1190 int + var yyb1190 bool + var yyhl1190 bool = l >= 0 + yyj1190++ + if yyhl1190 { + yyb1190 = yyj1190 > l } else { - yyb1185 = r.CheckBreak() + yyb1190 = r.CheckBreak() } - if yyb1185 { + if yyb1190 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16398,13 +16446,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1185++ - if yyhl1185 { - yyb1185 = yyj1185 > l + yyj1190++ + if yyhl1190 { + yyb1190 = yyj1190 > l } else { - yyb1185 = r.CheckBreak() + yyb1190 = r.CheckBreak() } - if yyb1185 { + if yyb1190 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16419,13 +16467,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1185++ - if yyhl1185 { - yyb1185 = yyj1185 > l + yyj1190++ + if yyhl1190 { + yyb1190 = yyj1190 > l } else { - yyb1185 = r.CheckBreak() + yyb1190 = r.CheckBreak() } - if yyb1185 { + if yyb1190 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16441,17 +16489,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1185++ - if yyhl1185 { - yyb1185 = yyj1185 > l + yyj1190++ + if yyhl1190 { + yyb1190 = yyj1190 > l } else { - yyb1185 = r.CheckBreak() + yyb1190 = r.CheckBreak() } - if yyb1185 { + if yyb1190 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1185-1, "") + z.DecStructFieldNotFound(yyj1190-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16463,34 +16511,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1189 := z.EncBinary() - _ = yym1189 + yym1194 := z.EncBinary() + _ = yym1194 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1190 := !z.EncBinary() - yy2arr1190 := z.EncBasicHandle().StructToArray - var yyq1190 [2]bool - _, _, _ = yysep1190, yyq1190, yy2arr1190 - const yyr1190 bool = false - yyq1190[0] = x.PostStart != nil - yyq1190[1] = x.PreStop != nil - var yynn1190 int - if yyr1190 || yy2arr1190 { + yysep1195 := !z.EncBinary() + yy2arr1195 := z.EncBasicHandle().StructToArray + var yyq1195 [2]bool + _, _, _ = yysep1195, yyq1195, yy2arr1195 + const yyr1195 bool = false + yyq1195[0] = x.PostStart != nil + yyq1195[1] = x.PreStop != nil + var yynn1195 int + if yyr1195 || yy2arr1195 { r.EncodeArrayStart(2) } else { - yynn1190 = 0 - for _, b := range yyq1190 { + yynn1195 = 0 + for _, b := range yyq1195 { if b { - yynn1190++ + yynn1195++ } } - r.EncodeMapStart(yynn1190) - yynn1190 = 0 + r.EncodeMapStart(yynn1195) + yynn1195 = 0 } - if yyr1190 || yy2arr1190 { + if yyr1195 || yy2arr1195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1190[0] { + if yyq1195[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -16500,7 +16548,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1190[0] { + if yyq1195[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16511,9 +16559,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1190 || yy2arr1190 { + if yyr1195 || yy2arr1195 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1190[1] { + if yyq1195[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -16523,7 +16571,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1190[1] { + if yyq1195[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16534,7 +16582,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1190 || yy2arr1190 { + if yyr1195 || yy2arr1195 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16547,25 +16595,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1193 := z.DecBinary() - _ = yym1193 + yym1198 := z.DecBinary() + _ = yym1198 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1194 := r.ContainerType() - if yyct1194 == codecSelferValueTypeMap1234 { - yyl1194 := r.ReadMapStart() - if yyl1194 == 0 { + yyct1199 := r.ContainerType() + if yyct1199 == codecSelferValueTypeMap1234 { + yyl1199 := r.ReadMapStart() + if yyl1199 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1194, d) + x.codecDecodeSelfFromMap(yyl1199, d) } - } else if yyct1194 == codecSelferValueTypeArray1234 { - yyl1194 := r.ReadArrayStart() - if yyl1194 == 0 { + } else if yyct1199 == codecSelferValueTypeArray1234 { + yyl1199 := r.ReadArrayStart() + if yyl1199 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1194, d) + x.codecDecodeSelfFromArray(yyl1199, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16577,12 +16625,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1195Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1195Slc - var yyhl1195 bool = l >= 0 - for yyj1195 := 0; ; yyj1195++ { - if yyhl1195 { - if yyj1195 >= l { + var yys1200Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1200Slc + var yyhl1200 bool = l >= 0 + for yyj1200 := 0; ; yyj1200++ { + if yyhl1200 { + if yyj1200 >= l { break } } else { @@ -16591,10 +16639,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1195Slc = r.DecodeBytes(yys1195Slc, true, true) - yys1195 := string(yys1195Slc) + yys1200Slc = r.DecodeBytes(yys1200Slc, true, true) + yys1200 := string(yys1200Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1195 { + switch yys1200 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -16618,9 +16666,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1195) - } // end switch yys1195 - } // end for yyj1195 + z.DecStructFieldNotFound(-1, yys1200) + } // end switch yys1200 + } // end for yyj1200 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16628,16 +16676,16 @@ func (x *Lifecycle) 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 yyj1203 int + var yyb1203 bool + var yyhl1203 bool = l >= 0 + yyj1203++ + if yyhl1203 { + yyb1203 = yyj1203 > l } else { - yyb1198 = r.CheckBreak() + yyb1203 = r.CheckBreak() } - if yyb1198 { + if yyb1203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16652,13 +16700,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1203++ + if yyhl1203 { + yyb1203 = yyj1203 > l } else { - yyb1198 = r.CheckBreak() + yyb1203 = r.CheckBreak() } - if yyb1198 { + if yyb1203 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16674,17 +16722,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1198++ - if yyhl1198 { - yyb1198 = yyj1198 > l + yyj1203++ + if yyhl1203 { + yyb1203 = yyj1203 > l } else { - yyb1198 = r.CheckBreak() + yyb1203 = r.CheckBreak() } - if yyb1198 { + if yyb1203 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1198-1, "") + z.DecStructFieldNotFound(yyj1203-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16693,8 +16741,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1201 := z.EncBinary() - _ = yym1201 + yym1206 := z.EncBinary() + _ = yym1206 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -16706,8 +16754,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1202 := z.DecBinary() - _ = yym1202 + yym1207 := z.DecBinary() + _ = yym1207 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -16722,36 +16770,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1203 := z.EncBinary() - _ = yym1203 + yym1208 := z.EncBinary() + _ = yym1208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1204 := !z.EncBinary() - yy2arr1204 := z.EncBasicHandle().StructToArray - var yyq1204 [2]bool - _, _, _ = yysep1204, yyq1204, yy2arr1204 - const yyr1204 bool = false - yyq1204[0] = x.Reason != "" - yyq1204[1] = x.Message != "" - var yynn1204 int - if yyr1204 || yy2arr1204 { + yysep1209 := !z.EncBinary() + yy2arr1209 := z.EncBasicHandle().StructToArray + var yyq1209 [2]bool + _, _, _ = yysep1209, yyq1209, yy2arr1209 + const yyr1209 bool = false + yyq1209[0] = x.Reason != "" + yyq1209[1] = x.Message != "" + var yynn1209 int + if yyr1209 || yy2arr1209 { r.EncodeArrayStart(2) } else { - yynn1204 = 0 - for _, b := range yyq1204 { + yynn1209 = 0 + for _, b := range yyq1209 { if b { - yynn1204++ + yynn1209++ } } - r.EncodeMapStart(yynn1204) - yynn1204 = 0 + r.EncodeMapStart(yynn1209) + yynn1209 = 0 } - if yyr1204 || yy2arr1204 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1204[0] { - yym1206 := z.EncBinary() - _ = yym1206 + if yyq1209[0] { + yym1211 := z.EncBinary() + _ = yym1211 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -16760,23 +16808,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1204[0] { + if yyq1209[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1207 := z.EncBinary() - _ = yym1207 + yym1212 := z.EncBinary() + _ = yym1212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1204 || yy2arr1204 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1204[1] { - yym1209 := z.EncBinary() - _ = yym1209 + if yyq1209[1] { + yym1214 := z.EncBinary() + _ = yym1214 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -16785,19 +16833,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1204[1] { + if yyq1209[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1210 := z.EncBinary() - _ = yym1210 + yym1215 := z.EncBinary() + _ = yym1215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1204 || yy2arr1204 { + if yyr1209 || yy2arr1209 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16810,25 +16858,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1211 := z.DecBinary() - _ = yym1211 + yym1216 := z.DecBinary() + _ = yym1216 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1212 := r.ContainerType() - if yyct1212 == codecSelferValueTypeMap1234 { - yyl1212 := r.ReadMapStart() - if yyl1212 == 0 { + yyct1217 := r.ContainerType() + if yyct1217 == codecSelferValueTypeMap1234 { + yyl1217 := r.ReadMapStart() + if yyl1217 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1212, d) + x.codecDecodeSelfFromMap(yyl1217, d) } - } else if yyct1212 == codecSelferValueTypeArray1234 { - yyl1212 := r.ReadArrayStart() - if yyl1212 == 0 { + } else if yyct1217 == codecSelferValueTypeArray1234 { + yyl1217 := r.ReadArrayStart() + if yyl1217 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1212, d) + x.codecDecodeSelfFromArray(yyl1217, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16840,12 +16888,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1213Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1213Slc - var yyhl1213 bool = l >= 0 - for yyj1213 := 0; ; yyj1213++ { - if yyhl1213 { - if yyj1213 >= l { + var yys1218Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1218Slc + var yyhl1218 bool = l >= 0 + for yyj1218 := 0; ; yyj1218++ { + if yyhl1218 { + if yyj1218 >= l { break } } else { @@ -16854,10 +16902,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1213Slc = r.DecodeBytes(yys1213Slc, true, true) - yys1213 := string(yys1213Slc) + yys1218Slc = r.DecodeBytes(yys1218Slc, true, true) + yys1218 := string(yys1218Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1213 { + switch yys1218 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -16871,9 +16919,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1213) - } // end switch yys1213 - } // end for yyj1213 + z.DecStructFieldNotFound(-1, yys1218) + } // end switch yys1218 + } // end for yyj1218 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16881,16 +16929,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1216 int - var yyb1216 bool - var yyhl1216 bool = l >= 0 - yyj1216++ - if yyhl1216 { - yyb1216 = yyj1216 > l + var yyj1221 int + var yyb1221 bool + var yyhl1221 bool = l >= 0 + yyj1221++ + if yyhl1221 { + yyb1221 = yyj1221 > l } else { - yyb1216 = r.CheckBreak() + yyb1221 = r.CheckBreak() } - if yyb1216 { + if yyb1221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16900,13 +16948,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1216++ - if yyhl1216 { - yyb1216 = yyj1216 > l + yyj1221++ + if yyhl1221 { + yyb1221 = yyj1221 > l } else { - yyb1216 = r.CheckBreak() + yyb1221 = r.CheckBreak() } - if yyb1216 { + if yyb1221 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16917,17 +16965,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1216++ - if yyhl1216 { - yyb1216 = yyj1216 > l + yyj1221++ + if yyhl1221 { + yyb1221 = yyj1221 > l } else { - yyb1216 = r.CheckBreak() + yyb1221 = r.CheckBreak() } - if yyb1216 { + if yyb1221 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1216-1, "") + z.DecStructFieldNotFound(yyj1221-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16939,68 +16987,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1219 := z.EncBinary() - _ = yym1219 + yym1224 := z.EncBinary() + _ = yym1224 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1220 := !z.EncBinary() - yy2arr1220 := z.EncBasicHandle().StructToArray - var yyq1220 [1]bool - _, _, _ = yysep1220, yyq1220, yy2arr1220 - const yyr1220 bool = false - yyq1220[0] = true - var yynn1220 int - if yyr1220 || yy2arr1220 { + yysep1225 := !z.EncBinary() + yy2arr1225 := z.EncBasicHandle().StructToArray + var yyq1225 [1]bool + _, _, _ = yysep1225, yyq1225, yy2arr1225 + const yyr1225 bool = false + yyq1225[0] = true + var yynn1225 int + if yyr1225 || yy2arr1225 { r.EncodeArrayStart(1) } else { - yynn1220 = 0 - for _, b := range yyq1220 { + yynn1225 = 0 + for _, b := range yyq1225 { if b { - yynn1220++ + yynn1225++ } } - r.EncodeMapStart(yynn1220) - yynn1220 = 0 + r.EncodeMapStart(yynn1225) + yynn1225 = 0 } - if yyr1220 || yy2arr1220 { + if yyr1225 || yy2arr1225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1220[0] { - yy1222 := &x.StartedAt - yym1223 := z.EncBinary() - _ = yym1223 + if yyq1225[0] { + yy1227 := &x.StartedAt + yym1228 := z.EncBinary() + _ = yym1228 if false { - } else if z.HasExtensions() && z.EncExt(yy1222) { - } else if yym1223 { - z.EncBinaryMarshal(yy1222) - } else if !yym1223 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1222) + } else if z.HasExtensions() && z.EncExt(yy1227) { + } else if yym1228 { + z.EncBinaryMarshal(yy1227) + } else if !yym1228 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1227) } else { - z.EncFallback(yy1222) + z.EncFallback(yy1227) } } else { r.EncodeNil() } } else { - if yyq1220[0] { + if yyq1225[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1224 := &x.StartedAt - yym1225 := z.EncBinary() - _ = yym1225 + yy1229 := &x.StartedAt + yym1230 := z.EncBinary() + _ = yym1230 if false { - } else if z.HasExtensions() && z.EncExt(yy1224) { - } else if yym1225 { - z.EncBinaryMarshal(yy1224) - } else if !yym1225 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1224) + } else if z.HasExtensions() && z.EncExt(yy1229) { + } else if yym1230 { + z.EncBinaryMarshal(yy1229) + } else if !yym1230 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1229) } else { - z.EncFallback(yy1224) + z.EncFallback(yy1229) } } } - if yyr1220 || yy2arr1220 { + if yyr1225 || yy2arr1225 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17013,25 +17061,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1226 := z.DecBinary() - _ = yym1226 + yym1231 := z.DecBinary() + _ = yym1231 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1227 := r.ContainerType() - if yyct1227 == codecSelferValueTypeMap1234 { - yyl1227 := r.ReadMapStart() - if yyl1227 == 0 { + yyct1232 := r.ContainerType() + if yyct1232 == codecSelferValueTypeMap1234 { + yyl1232 := r.ReadMapStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1227, d) + x.codecDecodeSelfFromMap(yyl1232, d) } - } else if yyct1227 == codecSelferValueTypeArray1234 { - yyl1227 := r.ReadArrayStart() - if yyl1227 == 0 { + } else if yyct1232 == codecSelferValueTypeArray1234 { + yyl1232 := r.ReadArrayStart() + if yyl1232 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1227, d) + x.codecDecodeSelfFromArray(yyl1232, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17043,12 +17091,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1228Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1228Slc - var yyhl1228 bool = l >= 0 - for yyj1228 := 0; ; yyj1228++ { - if yyhl1228 { - if yyj1228 >= 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 { @@ -17057,31 +17105,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1228Slc = r.DecodeBytes(yys1228Slc, true, true) - yys1228 := string(yys1228Slc) + yys1233Slc = r.DecodeBytes(yys1233Slc, true, true) + yys1233 := string(yys1233Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1228 { + switch yys1233 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1229 := &x.StartedAt - yym1230 := z.DecBinary() - _ = yym1230 + yyv1234 := &x.StartedAt + yym1235 := z.DecBinary() + _ = yym1235 if false { - } else if z.HasExtensions() && z.DecExt(yyv1229) { - } else if yym1230 { - z.DecBinaryUnmarshal(yyv1229) - } else if !yym1230 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1229) + } else if z.HasExtensions() && z.DecExt(yyv1234) { + } else if yym1235 { + z.DecBinaryUnmarshal(yyv1234) + } else if !yym1235 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1234) } else { - z.DecFallback(yyv1229, false) + z.DecFallback(yyv1234, false) } } default: - z.DecStructFieldNotFound(-1, yys1228) - } // end switch yys1228 - } // end for yyj1228 + z.DecStructFieldNotFound(-1, yys1233) + } // end switch yys1233 + } // end for yyj1233 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17089,16 +17137,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1231 int - var yyb1231 bool - var yyhl1231 bool = l >= 0 - yyj1231++ - if yyhl1231 { - yyb1231 = yyj1231 > l + var yyj1236 int + var yyb1236 bool + var yyhl1236 bool = l >= 0 + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1231 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1231 { + if yyb1236 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17106,31 +17154,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1232 := &x.StartedAt - yym1233 := z.DecBinary() - _ = yym1233 + yyv1237 := &x.StartedAt + yym1238 := z.DecBinary() + _ = yym1238 if false { - } else if z.HasExtensions() && z.DecExt(yyv1232) { - } else if yym1233 { - z.DecBinaryUnmarshal(yyv1232) - } else if !yym1233 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1232) + } else if z.HasExtensions() && z.DecExt(yyv1237) { + } else if yym1238 { + z.DecBinaryUnmarshal(yyv1237) + } else if !yym1238 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1237) } else { - z.DecFallback(yyv1232, false) + z.DecFallback(yyv1237, false) } } for { - yyj1231++ - if yyhl1231 { - yyb1231 = yyj1231 > l + yyj1236++ + if yyhl1236 { + yyb1236 = yyj1236 > l } else { - yyb1231 = r.CheckBreak() + yyb1236 = r.CheckBreak() } - if yyb1231 { + if yyb1236 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1231-1, "") + z.DecStructFieldNotFound(yyj1236-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17142,39 +17190,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1234 := z.EncBinary() - _ = yym1234 + yym1239 := z.EncBinary() + _ = yym1239 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1235 := !z.EncBinary() - yy2arr1235 := z.EncBasicHandle().StructToArray - var yyq1235 [7]bool - _, _, _ = yysep1235, yyq1235, yy2arr1235 - const yyr1235 bool = false - yyq1235[1] = x.Signal != 0 - yyq1235[2] = x.Reason != "" - yyq1235[3] = x.Message != "" - yyq1235[4] = true - yyq1235[5] = true - yyq1235[6] = x.ContainerID != "" - var yynn1235 int - if yyr1235 || yy2arr1235 { + yysep1240 := !z.EncBinary() + yy2arr1240 := z.EncBasicHandle().StructToArray + var yyq1240 [7]bool + _, _, _ = yysep1240, yyq1240, yy2arr1240 + const yyr1240 bool = false + yyq1240[1] = x.Signal != 0 + yyq1240[2] = x.Reason != "" + yyq1240[3] = x.Message != "" + yyq1240[4] = true + yyq1240[5] = true + yyq1240[6] = x.ContainerID != "" + var yynn1240 int + if yyr1240 || yy2arr1240 { r.EncodeArrayStart(7) } else { - yynn1235 = 1 - for _, b := range yyq1235 { + yynn1240 = 1 + for _, b := range yyq1240 { if b { - yynn1235++ + yynn1240++ } } - r.EncodeMapStart(yynn1235) - yynn1235 = 0 + r.EncodeMapStart(yynn1240) + yynn1240 = 0 } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1237 := z.EncBinary() - _ = yym1237 + yym1242 := z.EncBinary() + _ = yym1242 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -17183,18 +17231,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1238 := z.EncBinary() - _ = yym1238 + yym1243 := z.EncBinary() + _ = yym1243 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[1] { - yym1240 := z.EncBinary() - _ = yym1240 + if yyq1240[1] { + yym1245 := z.EncBinary() + _ = yym1245 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -17203,23 +17251,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1235[1] { + if yyq1240[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1241 := z.EncBinary() - _ = yym1241 + yym1246 := z.EncBinary() + _ = yym1246 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[2] { - yym1243 := z.EncBinary() - _ = yym1243 + if yyq1240[2] { + yym1248 := z.EncBinary() + _ = yym1248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -17228,23 +17276,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1235[2] { + if yyq1240[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1244 := z.EncBinary() - _ = yym1244 + yym1249 := z.EncBinary() + _ = yym1249 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[3] { - yym1246 := z.EncBinary() - _ = yym1246 + if yyq1240[3] { + yym1251 := z.EncBinary() + _ = yym1251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -17253,59 +17301,22 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1235[3] { + if yyq1240[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1247 := z.EncBinary() - _ = yym1247 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr1235 || yy2arr1235 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[4] { - yy1249 := &x.StartedAt - yym1250 := z.EncBinary() - _ = yym1250 - if false { - } else if z.HasExtensions() && z.EncExt(yy1249) { - } else if yym1250 { - z.EncBinaryMarshal(yy1249) - } else if !yym1250 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1249) - } else { - z.EncFallback(yy1249) - } - } else { - r.EncodeNil() - } - } else { - if yyq1235[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startedAt")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1251 := &x.StartedAt yym1252 := z.EncBinary() _ = yym1252 if false { - } else if z.HasExtensions() && z.EncExt(yy1251) { - } else if yym1252 { - z.EncBinaryMarshal(yy1251) - } else if !yym1252 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1251) } else { - z.EncFallback(yy1251) + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[5] { - yy1254 := &x.FinishedAt + if yyq1240[4] { + yy1254 := &x.StartedAt yym1255 := z.EncBinary() _ = yym1255 if false { @@ -17321,11 +17332,11 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1235[5] { + if yyq1240[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1256 := &x.FinishedAt + yy1256 := &x.StartedAt yym1257 := z.EncBinary() _ = yym1257 if false { @@ -17339,11 +17350,48 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1240[5] { + yy1259 := &x.FinishedAt + yym1260 := z.EncBinary() + _ = yym1260 + if false { + } else if z.HasExtensions() && z.EncExt(yy1259) { + } else if yym1260 { + z.EncBinaryMarshal(yy1259) + } else if !yym1260 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1259) + } else { + z.EncFallback(yy1259) + } + } else { + r.EncodeNil() + } + } else { + if yyq1240[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1261 := &x.FinishedAt + yym1262 := z.EncBinary() + _ = yym1262 + if false { + } else if z.HasExtensions() && z.EncExt(yy1261) { + } else if yym1262 { + z.EncBinaryMarshal(yy1261) + } else if !yym1262 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1261) + } else { + z.EncFallback(yy1261) + } + } + } + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1235[6] { - yym1259 := z.EncBinary() - _ = yym1259 + if yyq1240[6] { + yym1264 := z.EncBinary() + _ = yym1264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -17352,19 +17400,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1235[6] { + if yyq1240[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1260 := z.EncBinary() - _ = yym1260 + yym1265 := z.EncBinary() + _ = yym1265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1235 || yy2arr1235 { + if yyr1240 || yy2arr1240 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17377,25 +17425,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1261 := z.DecBinary() - _ = yym1261 + yym1266 := z.DecBinary() + _ = yym1266 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1262 := r.ContainerType() - if yyct1262 == codecSelferValueTypeMap1234 { - yyl1262 := r.ReadMapStart() - if yyl1262 == 0 { + yyct1267 := r.ContainerType() + if yyct1267 == codecSelferValueTypeMap1234 { + yyl1267 := r.ReadMapStart() + if yyl1267 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1262, d) + x.codecDecodeSelfFromMap(yyl1267, d) } - } else if yyct1262 == codecSelferValueTypeArray1234 { - yyl1262 := r.ReadArrayStart() - if yyl1262 == 0 { + } else if yyct1267 == codecSelferValueTypeArray1234 { + yyl1267 := r.ReadArrayStart() + if yyl1267 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1262, d) + x.codecDecodeSelfFromArray(yyl1267, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17407,12 +17455,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1263Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1263Slc - var yyhl1263 bool = l >= 0 - for yyj1263 := 0; ; yyj1263++ { - if yyhl1263 { - if yyj1263 >= l { + var yys1268Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1268Slc + var yyhl1268 bool = l >= 0 + for yyj1268 := 0; ; yyj1268++ { + if yyhl1268 { + if yyj1268 >= l { break } } else { @@ -17421,10 +17469,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1263Slc = r.DecodeBytes(yys1263Slc, true, true) - yys1263 := string(yys1263Slc) + yys1268Slc = r.DecodeBytes(yys1268Slc, true, true) + yys1268 := string(yys1268Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1263 { + switch yys1268 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -17453,34 +17501,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1268 := &x.StartedAt - yym1269 := z.DecBinary() - _ = yym1269 + yyv1273 := &x.StartedAt + yym1274 := z.DecBinary() + _ = yym1274 if false { - } else if z.HasExtensions() && z.DecExt(yyv1268) { - } else if yym1269 { - z.DecBinaryUnmarshal(yyv1268) - } else if !yym1269 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1268) + } else if z.HasExtensions() && z.DecExt(yyv1273) { + } else if yym1274 { + z.DecBinaryUnmarshal(yyv1273) + } else if !yym1274 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1273) } else { - z.DecFallback(yyv1268, false) + z.DecFallback(yyv1273, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1270 := &x.FinishedAt - yym1271 := z.DecBinary() - _ = yym1271 + yyv1275 := &x.FinishedAt + yym1276 := z.DecBinary() + _ = yym1276 if false { - } else if z.HasExtensions() && z.DecExt(yyv1270) { - } else if yym1271 { - z.DecBinaryUnmarshal(yyv1270) - } else if !yym1271 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1270) + } else if z.HasExtensions() && z.DecExt(yyv1275) { + } else if yym1276 { + z.DecBinaryUnmarshal(yyv1275) + } else if !yym1276 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1275) } else { - z.DecFallback(yyv1270, false) + z.DecFallback(yyv1275, false) } } case "containerID": @@ -17490,9 +17538,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1263) - } // end switch yys1263 - } // end for yyj1263 + z.DecStructFieldNotFound(-1, yys1268) + } // end switch yys1268 + } // end for yyj1268 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17500,16 +17548,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1273 int - var yyb1273 bool - var yyhl1273 bool = l >= 0 - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + var yyj1278 int + var yyb1278 bool + var yyhl1278 bool = l >= 0 + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17519,13 +17567,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17535,13 +17583,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17551,13 +17599,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17567,13 +17615,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17581,26 +17629,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1278 := &x.StartedAt - yym1279 := z.DecBinary() - _ = yym1279 + yyv1283 := &x.StartedAt + yym1284 := z.DecBinary() + _ = yym1284 if false { - } else if z.HasExtensions() && z.DecExt(yyv1278) { - } else if yym1279 { - z.DecBinaryUnmarshal(yyv1278) - } else if !yym1279 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1278) + } else if z.HasExtensions() && z.DecExt(yyv1283) { + } else if yym1284 { + z.DecBinaryUnmarshal(yyv1283) + } else if !yym1284 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1283) } else { - z.DecFallback(yyv1278, false) + z.DecFallback(yyv1283, false) } } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17608,26 +17656,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1280 := &x.FinishedAt - yym1281 := z.DecBinary() - _ = yym1281 + yyv1285 := &x.FinishedAt + yym1286 := z.DecBinary() + _ = yym1286 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(yyv1285) { + } else if yym1286 { + z.DecBinaryUnmarshal(yyv1285) + } else if !yym1286 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1285) } else { - z.DecFallback(yyv1280, false) + z.DecFallback(yyv1285, false) } } - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17638,17 +17686,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1273++ - if yyhl1273 { - yyb1273 = yyj1273 > l + yyj1278++ + if yyhl1278 { + yyb1278 = yyj1278 > l } else { - yyb1273 = r.CheckBreak() + yyb1278 = r.CheckBreak() } - if yyb1273 { + if yyb1278 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1273-1, "") + z.DecStructFieldNotFound(yyj1278-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17660,35 +17708,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1283 := z.EncBinary() - _ = yym1283 + yym1288 := z.EncBinary() + _ = yym1288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1284 := !z.EncBinary() - yy2arr1284 := z.EncBasicHandle().StructToArray - var yyq1284 [3]bool - _, _, _ = yysep1284, yyq1284, yy2arr1284 - const yyr1284 bool = false - yyq1284[0] = x.Waiting != nil - yyq1284[1] = x.Running != nil - yyq1284[2] = x.Terminated != nil - var yynn1284 int - if yyr1284 || yy2arr1284 { + yysep1289 := !z.EncBinary() + yy2arr1289 := z.EncBasicHandle().StructToArray + var yyq1289 [3]bool + _, _, _ = yysep1289, yyq1289, yy2arr1289 + const yyr1289 bool = false + yyq1289[0] = x.Waiting != nil + yyq1289[1] = x.Running != nil + yyq1289[2] = x.Terminated != nil + var yynn1289 int + if yyr1289 || yy2arr1289 { r.EncodeArrayStart(3) } else { - yynn1284 = 0 - for _, b := range yyq1284 { + yynn1289 = 0 + for _, b := range yyq1289 { if b { - yynn1284++ + yynn1289++ } } - r.EncodeMapStart(yynn1284) - yynn1284 = 0 + r.EncodeMapStart(yynn1289) + yynn1289 = 0 } - if yyr1284 || yy2arr1284 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1284[0] { + if yyq1289[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -17698,7 +17746,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1284[0] { + if yyq1289[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17709,9 +17757,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1284 || yy2arr1284 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1284[1] { + if yyq1289[1] { if x.Running == nil { r.EncodeNil() } else { @@ -17721,7 +17769,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1284[1] { + if yyq1289[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17732,9 +17780,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1284 || yy2arr1284 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1284[2] { + if yyq1289[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -17744,7 +17792,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1284[2] { + if yyq1289[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17755,7 +17803,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1284 || yy2arr1284 { + if yyr1289 || yy2arr1289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17768,25 +17816,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1288 := z.DecBinary() - _ = yym1288 + yym1293 := z.DecBinary() + _ = yym1293 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1289 := r.ContainerType() - if yyct1289 == codecSelferValueTypeMap1234 { - yyl1289 := r.ReadMapStart() - if yyl1289 == 0 { + yyct1294 := r.ContainerType() + if yyct1294 == codecSelferValueTypeMap1234 { + yyl1294 := r.ReadMapStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1289, d) + x.codecDecodeSelfFromMap(yyl1294, d) } - } else if yyct1289 == codecSelferValueTypeArray1234 { - yyl1289 := r.ReadArrayStart() - if yyl1289 == 0 { + } else if yyct1294 == codecSelferValueTypeArray1234 { + yyl1294 := r.ReadArrayStart() + if yyl1294 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1289, d) + x.codecDecodeSelfFromArray(yyl1294, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17798,12 +17846,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1290Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1290Slc - var yyhl1290 bool = l >= 0 - for yyj1290 := 0; ; yyj1290++ { - if yyhl1290 { - if yyj1290 >= 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 { @@ -17812,10 +17860,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1290Slc = r.DecodeBytes(yys1290Slc, true, true) - yys1290 := string(yys1290Slc) + yys1295Slc = r.DecodeBytes(yys1295Slc, true, true) + yys1295 := string(yys1295Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1290 { + switch yys1295 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -17850,9 +17898,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1290) - } // end switch yys1290 - } // end for yyj1290 + z.DecStructFieldNotFound(-1, yys1295) + } // end switch yys1295 + } // end for yyj1295 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17860,16 +17908,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1294 int - var yyb1294 bool - var yyhl1294 bool = l >= 0 - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + var yyj1299 int + var yyb1299 bool + var yyhl1299 bool = l >= 0 + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1294 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1294 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17884,13 +17932,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1294 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1294 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17905,13 +17953,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1294 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1294 { + if yyb1299 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17927,17 +17975,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1294++ - if yyhl1294 { - yyb1294 = yyj1294 > l + yyj1299++ + if yyhl1299 { + yyb1299 = yyj1299 > l } else { - yyb1294 = r.CheckBreak() + yyb1299 = r.CheckBreak() } - if yyb1294 { + if yyb1299 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1294-1, "") + z.DecStructFieldNotFound(yyj1299-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17949,36 +17997,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1298 := z.EncBinary() - _ = yym1298 + yym1303 := z.EncBinary() + _ = yym1303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1299 := !z.EncBinary() - yy2arr1299 := z.EncBasicHandle().StructToArray - var yyq1299 [8]bool - _, _, _ = yysep1299, yyq1299, yy2arr1299 - const yyr1299 bool = false - yyq1299[1] = true - yyq1299[2] = true - yyq1299[7] = x.ContainerID != "" - var yynn1299 int - if yyr1299 || yy2arr1299 { + yysep1304 := !z.EncBinary() + yy2arr1304 := z.EncBasicHandle().StructToArray + var yyq1304 [8]bool + _, _, _ = yysep1304, yyq1304, yy2arr1304 + const yyr1304 bool = false + yyq1304[1] = true + yyq1304[2] = true + yyq1304[7] = x.ContainerID != "" + var yynn1304 int + if yyr1304 || yy2arr1304 { r.EncodeArrayStart(8) } else { - yynn1299 = 5 - for _, b := range yyq1299 { + yynn1304 = 5 + for _, b := range yyq1304 { if b { - yynn1299++ + yynn1304++ } } - r.EncodeMapStart(yynn1299) - yynn1299 = 0 + r.EncodeMapStart(yynn1304) + yynn1304 = 0 } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1301 := z.EncBinary() - _ = yym1301 + yym1306 := z.EncBinary() + _ = yym1306 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17987,51 +18035,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1302 := z.EncBinary() - _ = yym1302 + yym1307 := z.EncBinary() + _ = yym1307 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1299[1] { - yy1304 := &x.State - yy1304.CodecEncodeSelf(e) + if yyq1304[1] { + yy1309 := &x.State + yy1309.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1299[1] { + if yyq1304[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1305 := &x.State - yy1305.CodecEncodeSelf(e) + yy1310 := &x.State + yy1310.CodecEncodeSelf(e) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1299[2] { - yy1307 := &x.LastTerminationState - yy1307.CodecEncodeSelf(e) + if yyq1304[2] { + yy1312 := &x.LastTerminationState + yy1312.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1299[2] { + if yyq1304[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1308 := &x.LastTerminationState - yy1308.CodecEncodeSelf(e) + yy1313 := &x.LastTerminationState + yy1313.CodecEncodeSelf(e) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1310 := z.EncBinary() - _ = yym1310 + yym1315 := z.EncBinary() + _ = yym1315 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -18040,17 +18088,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1311 := z.EncBinary() - _ = yym1311 + yym1316 := z.EncBinary() + _ = yym1316 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1313 := z.EncBinary() - _ = yym1313 + yym1318 := z.EncBinary() + _ = yym1318 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -18059,17 +18107,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1314 := z.EncBinary() - _ = yym1314 + yym1319 := z.EncBinary() + _ = yym1319 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1316 := z.EncBinary() - _ = yym1316 + yym1321 := z.EncBinary() + _ = yym1321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -18078,17 +18126,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1317 := z.EncBinary() - _ = yym1317 + yym1322 := z.EncBinary() + _ = yym1322 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1319 := z.EncBinary() - _ = yym1319 + yym1324 := z.EncBinary() + _ = yym1324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -18097,18 +18145,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1320 := z.EncBinary() - _ = yym1320 + yym1325 := z.EncBinary() + _ = yym1325 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1299[7] { - yym1322 := z.EncBinary() - _ = yym1322 + if yyq1304[7] { + yym1327 := z.EncBinary() + _ = yym1327 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -18117,19 +18165,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1299[7] { + if yyq1304[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1323 := z.EncBinary() - _ = yym1323 + yym1328 := z.EncBinary() + _ = yym1328 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1299 || yy2arr1299 { + if yyr1304 || yy2arr1304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18142,25 +18190,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1324 := z.DecBinary() - _ = yym1324 + yym1329 := z.DecBinary() + _ = yym1329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1325 := r.ContainerType() - if yyct1325 == codecSelferValueTypeMap1234 { - yyl1325 := r.ReadMapStart() - if yyl1325 == 0 { + yyct1330 := r.ContainerType() + if yyct1330 == codecSelferValueTypeMap1234 { + yyl1330 := r.ReadMapStart() + if yyl1330 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1325, d) + x.codecDecodeSelfFromMap(yyl1330, d) } - } else if yyct1325 == codecSelferValueTypeArray1234 { - yyl1325 := r.ReadArrayStart() - if yyl1325 == 0 { + } else if yyct1330 == codecSelferValueTypeArray1234 { + yyl1330 := r.ReadArrayStart() + if yyl1330 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1325, d) + x.codecDecodeSelfFromArray(yyl1330, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18172,12 +18220,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1326Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1326Slc - var yyhl1326 bool = l >= 0 - for yyj1326 := 0; ; yyj1326++ { - if yyhl1326 { - if yyj1326 >= l { + var yys1331Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1331Slc + var yyhl1331 bool = l >= 0 + for yyj1331 := 0; ; yyj1331++ { + if yyhl1331 { + if yyj1331 >= l { break } } else { @@ -18186,10 +18234,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1326Slc = r.DecodeBytes(yys1326Slc, true, true) - yys1326 := string(yys1326Slc) + yys1331Slc = r.DecodeBytes(yys1331Slc, true, true) + yys1331 := string(yys1331Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1326 { + switch yys1331 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -18200,15 +18248,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1328 := &x.State - yyv1328.CodecDecodeSelf(d) + yyv1333 := &x.State + yyv1333.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1329 := &x.LastTerminationState - yyv1329.CodecDecodeSelf(d) + yyv1334 := &x.LastTerminationState + yyv1334.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -18241,9 +18289,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1326) - } // end switch yys1326 - } // end for yyj1326 + z.DecStructFieldNotFound(-1, yys1331) + } // end switch yys1331 + } // end for yyj1331 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18251,16 +18299,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1335 int - var yyb1335 bool - var yyhl1335 bool = l >= 0 - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + var yyj1340 int + var yyb1340 bool + var yyhl1340 bool = l >= 0 + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18270,13 +18318,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18284,16 +18332,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1337 := &x.State - yyv1337.CodecDecodeSelf(d) + yyv1342 := &x.State + yyv1342.CodecDecodeSelf(d) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18301,16 +18349,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1338 := &x.LastTerminationState - yyv1338.CodecDecodeSelf(d) + yyv1343 := &x.LastTerminationState + yyv1343.CodecDecodeSelf(d) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18320,13 +18368,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18336,13 +18384,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18352,13 +18400,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18368,13 +18416,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18385,17 +18433,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1335++ - if yyhl1335 { - yyb1335 = yyj1335 > l + yyj1340++ + if yyhl1340 { + yyb1340 = yyj1340 > l } else { - yyb1335 = r.CheckBreak() + yyb1340 = r.CheckBreak() } - if yyb1335 { + if yyb1340 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1335-1, "") + z.DecStructFieldNotFound(yyj1340-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18404,8 +18452,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1344 := z.EncBinary() - _ = yym1344 + yym1349 := z.EncBinary() + _ = yym1349 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18417,8 +18465,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1345 := z.DecBinary() - _ = yym1345 + yym1350 := z.DecBinary() + _ = yym1350 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18430,8 +18478,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1346 := z.EncBinary() - _ = yym1346 + yym1351 := z.EncBinary() + _ = yym1351 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18443,8 +18491,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1347 := z.DecBinary() - _ = yym1347 + yym1352 := z.DecBinary() + _ = yym1352 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18459,34 +18507,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1348 := z.EncBinary() - _ = yym1348 + yym1353 := z.EncBinary() + _ = yym1353 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1349 := !z.EncBinary() - yy2arr1349 := z.EncBasicHandle().StructToArray - var yyq1349 [6]bool - _, _, _ = yysep1349, yyq1349, yy2arr1349 - const yyr1349 bool = false - yyq1349[2] = true - yyq1349[3] = true - yyq1349[4] = x.Reason != "" - yyq1349[5] = x.Message != "" - var yynn1349 int - if yyr1349 || yy2arr1349 { + yysep1354 := !z.EncBinary() + yy2arr1354 := z.EncBasicHandle().StructToArray + var yyq1354 [6]bool + _, _, _ = yysep1354, yyq1354, yy2arr1354 + const yyr1354 bool = false + yyq1354[2] = true + yyq1354[3] = true + yyq1354[4] = x.Reason != "" + yyq1354[5] = x.Message != "" + var yynn1354 int + if yyr1354 || yy2arr1354 { r.EncodeArrayStart(6) } else { - yynn1349 = 2 - for _, b := range yyq1349 { + yynn1354 = 2 + for _, b := range yyq1354 { if b { - yynn1349++ + yynn1354++ } } - r.EncodeMapStart(yynn1349) - yynn1349 = 0 + r.EncodeMapStart(yynn1354) + yynn1354 = 0 } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -18495,7 +18543,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -18504,85 +18552,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1349[2] { - yy1353 := &x.LastProbeTime - yym1354 := z.EncBinary() - _ = yym1354 + if yyq1354[2] { + yy1358 := &x.LastProbeTime + yym1359 := z.EncBinary() + _ = yym1359 if false { - } else if z.HasExtensions() && z.EncExt(yy1353) { - } else if yym1354 { - z.EncBinaryMarshal(yy1353) - } else if !yym1354 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1353) + } else if z.HasExtensions() && z.EncExt(yy1358) { + } else if yym1359 { + z.EncBinaryMarshal(yy1358) + } else if !yym1359 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1358) } else { - z.EncFallback(yy1353) + z.EncFallback(yy1358) } } else { r.EncodeNil() } } else { - if yyq1349[2] { + if yyq1354[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1355 := &x.LastProbeTime - yym1356 := z.EncBinary() - _ = yym1356 + yy1360 := &x.LastProbeTime + yym1361 := z.EncBinary() + _ = yym1361 if false { - } else if z.HasExtensions() && z.EncExt(yy1355) { - } else if yym1356 { - z.EncBinaryMarshal(yy1355) - } else if !yym1356 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1355) + } else if z.HasExtensions() && z.EncExt(yy1360) { + } else if yym1361 { + z.EncBinaryMarshal(yy1360) + } else if !yym1361 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1360) } else { - z.EncFallback(yy1355) + z.EncFallback(yy1360) } } } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1349[3] { - yy1358 := &x.LastTransitionTime - yym1359 := z.EncBinary() - _ = yym1359 + if yyq1354[3] { + yy1363 := &x.LastTransitionTime + yym1364 := z.EncBinary() + _ = yym1364 if false { - } else if z.HasExtensions() && z.EncExt(yy1358) { - } else if yym1359 { - z.EncBinaryMarshal(yy1358) - } else if !yym1359 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1358) + } else if z.HasExtensions() && z.EncExt(yy1363) { + } else if yym1364 { + z.EncBinaryMarshal(yy1363) + } else if !yym1364 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1363) } else { - z.EncFallback(yy1358) + z.EncFallback(yy1363) } } else { r.EncodeNil() } } else { - if yyq1349[3] { + if yyq1354[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1360 := &x.LastTransitionTime - yym1361 := z.EncBinary() - _ = yym1361 + yy1365 := &x.LastTransitionTime + yym1366 := z.EncBinary() + _ = yym1366 if false { - } else if z.HasExtensions() && z.EncExt(yy1360) { - } else if yym1361 { - z.EncBinaryMarshal(yy1360) - } else if !yym1361 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1360) + } else if z.HasExtensions() && z.EncExt(yy1365) { + } else if yym1366 { + z.EncBinaryMarshal(yy1365) + } else if !yym1366 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1365) } else { - z.EncFallback(yy1360) + z.EncFallback(yy1365) } } } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1349[4] { - yym1363 := z.EncBinary() - _ = yym1363 + if yyq1354[4] { + yym1368 := z.EncBinary() + _ = yym1368 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18591,23 +18639,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1349[4] { + if yyq1354[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1364 := z.EncBinary() - _ = yym1364 + yym1369 := z.EncBinary() + _ = yym1369 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1349[5] { - yym1366 := z.EncBinary() - _ = yym1366 + if yyq1354[5] { + yym1371 := z.EncBinary() + _ = yym1371 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18616,19 +18664,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1349[5] { + if yyq1354[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1367 := z.EncBinary() - _ = yym1367 + yym1372 := z.EncBinary() + _ = yym1372 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1349 || yy2arr1349 { + if yyr1354 || yy2arr1354 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18641,25 +18689,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1368 := z.DecBinary() - _ = yym1368 + yym1373 := z.DecBinary() + _ = yym1373 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1369 := r.ContainerType() - if yyct1369 == codecSelferValueTypeMap1234 { - yyl1369 := r.ReadMapStart() - if yyl1369 == 0 { + yyct1374 := r.ContainerType() + if yyct1374 == codecSelferValueTypeMap1234 { + yyl1374 := r.ReadMapStart() + if yyl1374 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1369, d) + x.codecDecodeSelfFromMap(yyl1374, d) } - } else if yyct1369 == codecSelferValueTypeArray1234 { - yyl1369 := r.ReadArrayStart() - if yyl1369 == 0 { + } else if yyct1374 == codecSelferValueTypeArray1234 { + yyl1374 := r.ReadArrayStart() + if yyl1374 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1369, d) + x.codecDecodeSelfFromArray(yyl1374, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18671,12 +18719,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1370Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1370Slc - var yyhl1370 bool = l >= 0 - for yyj1370 := 0; ; yyj1370++ { - if yyhl1370 { - if yyj1370 >= l { + var yys1375Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1375Slc + var yyhl1375 bool = l >= 0 + for yyj1375 := 0; ; yyj1375++ { + if yyhl1375 { + if yyj1375 >= l { break } } else { @@ -18685,10 +18733,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1370Slc = r.DecodeBytes(yys1370Slc, true, true) - yys1370 := string(yys1370Slc) + yys1375Slc = r.DecodeBytes(yys1375Slc, true, true) + yys1375 := string(yys1375Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1370 { + switch yys1375 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -18705,34 +18753,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1373 := &x.LastProbeTime - yym1374 := z.DecBinary() - _ = yym1374 + yyv1378 := &x.LastProbeTime + yym1379 := z.DecBinary() + _ = yym1379 if false { - } else if z.HasExtensions() && z.DecExt(yyv1373) { - } else if yym1374 { - z.DecBinaryUnmarshal(yyv1373) - } else if !yym1374 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1373) + } else if z.HasExtensions() && z.DecExt(yyv1378) { + } else if yym1379 { + z.DecBinaryUnmarshal(yyv1378) + } else if !yym1379 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1378) } else { - z.DecFallback(yyv1373, false) + z.DecFallback(yyv1378, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1375 := &x.LastTransitionTime - yym1376 := z.DecBinary() - _ = yym1376 + yyv1380 := &x.LastTransitionTime + yym1381 := z.DecBinary() + _ = yym1381 if false { - } else if z.HasExtensions() && z.DecExt(yyv1375) { - } else if yym1376 { - z.DecBinaryUnmarshal(yyv1375) - } else if !yym1376 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1375) + } else if z.HasExtensions() && z.DecExt(yyv1380) { + } else if yym1381 { + z.DecBinaryUnmarshal(yyv1380) + } else if !yym1381 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1380) } else { - z.DecFallback(yyv1375, false) + z.DecFallback(yyv1380, false) } } case "reason": @@ -18748,9 +18796,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1370) - } // end switch yys1370 - } // end for yyj1370 + z.DecStructFieldNotFound(-1, yys1375) + } // end switch yys1375 + } // end for yyj1375 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18758,16 +18806,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1379 int - var yyb1379 bool - var yyhl1379 bool = l >= 0 - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + var yyj1384 int + var yyb1384 bool + var yyhl1384 bool = l >= 0 + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18777,13 +18825,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18793,13 +18841,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18807,26 +18855,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1382 := &x.LastProbeTime - yym1383 := z.DecBinary() - _ = yym1383 + yyv1387 := &x.LastProbeTime + yym1388 := z.DecBinary() + _ = yym1388 if false { - } else if z.HasExtensions() && z.DecExt(yyv1382) { - } else if yym1383 { - z.DecBinaryUnmarshal(yyv1382) - } else if !yym1383 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1382) + } else if z.HasExtensions() && z.DecExt(yyv1387) { + } else if yym1388 { + z.DecBinaryUnmarshal(yyv1387) + } else if !yym1388 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1387) } else { - z.DecFallback(yyv1382, false) + z.DecFallback(yyv1387, false) } } - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18834,26 +18882,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1384 := &x.LastTransitionTime - yym1385 := z.DecBinary() - _ = yym1385 + yyv1389 := &x.LastTransitionTime + yym1390 := z.DecBinary() + _ = yym1390 if false { - } else if z.HasExtensions() && z.DecExt(yyv1384) { - } else if yym1385 { - z.DecBinaryUnmarshal(yyv1384) - } else if !yym1385 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1384) + } else if z.HasExtensions() && z.DecExt(yyv1389) { + } else if yym1390 { + z.DecBinaryUnmarshal(yyv1389) + } else if !yym1390 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1389) } else { - z.DecFallback(yyv1384, false) + z.DecFallback(yyv1389, false) } } - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18863,13 +18911,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18880,17 +18928,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1379++ - if yyhl1379 { - yyb1379 = yyj1379 > l + yyj1384++ + if yyhl1384 { + yyb1384 = yyj1384 > l } else { - yyb1379 = r.CheckBreak() + yyb1384 = r.CheckBreak() } - if yyb1379 { + if yyb1384 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1379-1, "") + z.DecStructFieldNotFound(yyj1384-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18899,8 +18947,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1388 := z.EncBinary() - _ = yym1388 + yym1393 := z.EncBinary() + _ = yym1393 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18912,8 +18960,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1389 := z.DecBinary() - _ = yym1389 + yym1394 := z.DecBinary() + _ = yym1394 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18928,37 +18976,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1390 := z.EncBinary() - _ = yym1390 + yym1395 := z.EncBinary() + _ = yym1395 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1391 := !z.EncBinary() - yy2arr1391 := z.EncBasicHandle().StructToArray - var yyq1391 [4]bool - _, _, _ = yysep1391, yyq1391, yy2arr1391 - const yyr1391 bool = false - yyq1391[0] = x.Kind != "" - yyq1391[1] = x.APIVersion != "" - yyq1391[2] = true - var yynn1391 int - if yyr1391 || yy2arr1391 { + yysep1396 := !z.EncBinary() + yy2arr1396 := z.EncBasicHandle().StructToArray + var yyq1396 [4]bool + _, _, _ = yysep1396, yyq1396, yy2arr1396 + const yyr1396 bool = false + yyq1396[0] = x.Kind != "" + yyq1396[1] = x.APIVersion != "" + yyq1396[2] = true + var yynn1396 int + if yyr1396 || yy2arr1396 { r.EncodeArrayStart(4) } else { - yynn1391 = 1 - for _, b := range yyq1391 { + yynn1396 = 1 + for _, b := range yyq1396 { if b { - yynn1391++ + yynn1396++ } } - r.EncodeMapStart(yynn1391) - yynn1391 = 0 + r.EncodeMapStart(yynn1396) + yynn1396 = 0 } - if yyr1391 || yy2arr1391 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1391[0] { - yym1393 := z.EncBinary() - _ = yym1393 + if yyq1396[0] { + yym1398 := z.EncBinary() + _ = yym1398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -18967,23 +19015,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1391[0] { + if yyq1396[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1394 := z.EncBinary() - _ = yym1394 + yym1399 := z.EncBinary() + _ = yym1399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1391 || yy2arr1391 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1391[1] { - yym1396 := z.EncBinary() - _ = yym1396 + if yyq1396[1] { + yym1401 := z.EncBinary() + _ = yym1401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -18992,54 +19040,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1391[1] { + if yyq1396[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1397 := z.EncBinary() - _ = yym1397 + yym1402 := z.EncBinary() + _ = yym1402 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1391 || yy2arr1391 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1391[2] { - yy1399 := &x.ListMeta - yym1400 := z.EncBinary() - _ = yym1400 + if yyq1396[2] { + yy1404 := &x.ListMeta + yym1405 := z.EncBinary() + _ = yym1405 if false { - } else if z.HasExtensions() && z.EncExt(yy1399) { + } else if z.HasExtensions() && z.EncExt(yy1404) { } else { - z.EncFallback(yy1399) + z.EncFallback(yy1404) } } else { r.EncodeNil() } } else { - if yyq1391[2] { + if yyq1396[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1401 := &x.ListMeta - yym1402 := z.EncBinary() - _ = yym1402 + yy1406 := &x.ListMeta + yym1407 := z.EncBinary() + _ = yym1407 if false { - } else if z.HasExtensions() && z.EncExt(yy1401) { + } else if z.HasExtensions() && z.EncExt(yy1406) { } else { - z.EncFallback(yy1401) + z.EncFallback(yy1406) } } } - if yyr1391 || yy2arr1391 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1404 := z.EncBinary() - _ = yym1404 + yym1409 := z.EncBinary() + _ = yym1409 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -19052,15 +19100,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1405 := z.EncBinary() - _ = yym1405 + yym1410 := z.EncBinary() + _ = yym1410 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1391 || yy2arr1391 { + if yyr1396 || yy2arr1396 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19073,25 +19121,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1406 := z.DecBinary() - _ = yym1406 + yym1411 := z.DecBinary() + _ = yym1411 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1407 := r.ContainerType() - if yyct1407 == codecSelferValueTypeMap1234 { - yyl1407 := r.ReadMapStart() - if yyl1407 == 0 { + yyct1412 := r.ContainerType() + if yyct1412 == codecSelferValueTypeMap1234 { + yyl1412 := r.ReadMapStart() + if yyl1412 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1407, d) + x.codecDecodeSelfFromMap(yyl1412, d) } - } else if yyct1407 == codecSelferValueTypeArray1234 { - yyl1407 := r.ReadArrayStart() - if yyl1407 == 0 { + } else if yyct1412 == codecSelferValueTypeArray1234 { + yyl1412 := r.ReadArrayStart() + if yyl1412 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1407, d) + x.codecDecodeSelfFromArray(yyl1412, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19103,12 +19151,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1408Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1408Slc - var yyhl1408 bool = l >= 0 - for yyj1408 := 0; ; yyj1408++ { - if yyhl1408 { - if yyj1408 >= l { + var yys1413Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1413Slc + var yyhl1413 bool = l >= 0 + for yyj1413 := 0; ; yyj1413++ { + if yyhl1413 { + if yyj1413 >= l { break } } else { @@ -19117,10 +19165,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1408Slc = r.DecodeBytes(yys1408Slc, true, true) - yys1408 := string(yys1408Slc) + yys1413Slc = r.DecodeBytes(yys1413Slc, true, true) + yys1413 := string(yys1413Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1408 { + switch yys1413 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -19137,31 +19185,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1411 := &x.ListMeta - yym1412 := z.DecBinary() - _ = yym1412 + yyv1416 := &x.ListMeta + yym1417 := z.DecBinary() + _ = yym1417 if false { - } else if z.HasExtensions() && z.DecExt(yyv1411) { + } else if z.HasExtensions() && z.DecExt(yyv1416) { } else { - z.DecFallback(yyv1411, false) + z.DecFallback(yyv1416, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1413 := &x.Items - yym1414 := z.DecBinary() - _ = yym1414 + yyv1418 := &x.Items + yym1419 := z.DecBinary() + _ = yym1419 if false { } else { - h.decSlicePod((*[]Pod)(yyv1413), d) + h.decSlicePod((*[]Pod)(yyv1418), d) } } default: - z.DecStructFieldNotFound(-1, yys1408) - } // end switch yys1408 - } // end for yyj1408 + z.DecStructFieldNotFound(-1, yys1413) + } // end switch yys1413 + } // end for yyj1413 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19169,16 +19217,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1415 int - var yyb1415 bool - var yyhl1415 bool = l >= 0 - yyj1415++ - if yyhl1415 { - yyb1415 = yyj1415 > l + var yyj1420 int + var yyb1420 bool + var yyhl1420 bool = l >= 0 + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1415 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1415 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19188,13 +19236,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1415++ - if yyhl1415 { - yyb1415 = yyj1415 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1415 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1415 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19204,13 +19252,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1415++ - if yyhl1415 { - yyb1415 = yyj1415 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1415 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1415 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19218,22 +19266,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1418 := &x.ListMeta - yym1419 := z.DecBinary() - _ = yym1419 + yyv1423 := &x.ListMeta + yym1424 := z.DecBinary() + _ = yym1424 if false { - } else if z.HasExtensions() && z.DecExt(yyv1418) { + } else if z.HasExtensions() && z.DecExt(yyv1423) { } else { - z.DecFallback(yyv1418, false) + z.DecFallback(yyv1423, false) } } - yyj1415++ - if yyhl1415 { - yyb1415 = yyj1415 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1415 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1415 { + if yyb1420 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19241,26 +19289,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1420 := &x.Items - yym1421 := z.DecBinary() - _ = yym1421 + yyv1425 := &x.Items + yym1426 := z.DecBinary() + _ = yym1426 if false { } else { - h.decSlicePod((*[]Pod)(yyv1420), d) + h.decSlicePod((*[]Pod)(yyv1425), d) } } for { - yyj1415++ - if yyhl1415 { - yyb1415 = yyj1415 > l + yyj1420++ + if yyhl1420 { + yyb1420 = yyj1420 > l } else { - yyb1415 = r.CheckBreak() + yyb1420 = r.CheckBreak() } - if yyb1415 { + if yyb1420 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1415-1, "") + z.DecStructFieldNotFound(yyj1420-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19269,8 +19317,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1422 := z.EncBinary() - _ = yym1422 + yym1427 := z.EncBinary() + _ = yym1427 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -19282,8 +19330,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1423 := z.DecBinary() - _ = yym1423 + yym1428 := z.DecBinary() + _ = yym1428 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -19298,44 +19346,44 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1424 := z.EncBinary() - _ = yym1424 + yym1429 := z.EncBinary() + _ = yym1429 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1425 := !z.EncBinary() - yy2arr1425 := z.EncBasicHandle().StructToArray - var yyq1425 [11]bool - _, _, _ = yysep1425, yyq1425, yy2arr1425 - const yyr1425 bool = false - yyq1425[2] = x.RestartPolicy != "" - yyq1425[3] = x.TerminationGracePeriodSeconds != nil - yyq1425[4] = x.ActiveDeadlineSeconds != nil - yyq1425[5] = x.DNSPolicy != "" - yyq1425[6] = len(x.NodeSelector) != 0 - yyq1425[8] = x.NodeName != "" - yyq1425[9] = x.SecurityContext != nil - yyq1425[10] = len(x.ImagePullSecrets) != 0 - var yynn1425 int - if yyr1425 || yy2arr1425 { + yysep1430 := !z.EncBinary() + yy2arr1430 := z.EncBasicHandle().StructToArray + var yyq1430 [11]bool + _, _, _ = yysep1430, yyq1430, yy2arr1430 + const yyr1430 bool = false + yyq1430[2] = x.RestartPolicy != "" + yyq1430[3] = x.TerminationGracePeriodSeconds != nil + yyq1430[4] = x.ActiveDeadlineSeconds != nil + yyq1430[5] = x.DNSPolicy != "" + yyq1430[6] = len(x.NodeSelector) != 0 + yyq1430[8] = x.NodeName != "" + yyq1430[9] = x.SecurityContext != nil + yyq1430[10] = len(x.ImagePullSecrets) != 0 + var yynn1430 int + if yyr1430 || yy2arr1430 { r.EncodeArrayStart(11) } else { - yynn1425 = 3 - for _, b := range yyq1425 { + yynn1430 = 3 + for _, b := range yyq1430 { if b { - yynn1425++ + yynn1430++ } } - r.EncodeMapStart(yynn1425) - yynn1425 = 0 + r.EncodeMapStart(yynn1430) + yynn1430 = 0 } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1427 := z.EncBinary() - _ = yym1427 + yym1432 := z.EncBinary() + _ = yym1432 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -19348,21 +19396,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Volumes == nil { r.EncodeNil() } else { - yym1428 := z.EncBinary() - _ = yym1428 + yym1433 := z.EncBinary() + _ = yym1433 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1430 := z.EncBinary() - _ = yym1430 + yym1435 := z.EncBinary() + _ = yym1435 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -19375,122 +19423,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1431 := z.EncBinary() - _ = yym1431 + yym1436 := z.EncBinary() + _ = yym1436 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[2] { + if yyq1430[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1425[2] { + if yyq1430[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[3] { + if yyq1430[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1434 := *x.TerminationGracePeriodSeconds - yym1435 := z.EncBinary() - _ = yym1435 + yy1439 := *x.TerminationGracePeriodSeconds + yym1440 := z.EncBinary() + _ = yym1440 if false { } else { - r.EncodeInt(int64(yy1434)) + r.EncodeInt(int64(yy1439)) } } } else { r.EncodeNil() } } else { - if yyq1425[3] { + if yyq1430[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1436 := *x.TerminationGracePeriodSeconds - yym1437 := z.EncBinary() - _ = yym1437 + yy1441 := *x.TerminationGracePeriodSeconds + yym1442 := z.EncBinary() + _ = yym1442 if false { } else { - r.EncodeInt(int64(yy1436)) + r.EncodeInt(int64(yy1441)) } } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[4] { + if yyq1430[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1439 := *x.ActiveDeadlineSeconds - yym1440 := z.EncBinary() - _ = yym1440 + yy1444 := *x.ActiveDeadlineSeconds + yym1445 := z.EncBinary() + _ = yym1445 if false { } else { - r.EncodeInt(int64(yy1439)) + r.EncodeInt(int64(yy1444)) } } } else { r.EncodeNil() } } else { - if yyq1425[4] { + if yyq1430[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1441 := *x.ActiveDeadlineSeconds - yym1442 := z.EncBinary() - _ = yym1442 + yy1446 := *x.ActiveDeadlineSeconds + yym1447 := z.EncBinary() + _ = yym1447 if false { } else { - r.EncodeInt(int64(yy1441)) + r.EncodeInt(int64(yy1446)) } } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[5] { + if yyq1430[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1425[5] { + if yyq1430[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[6] { + if yyq1430[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1445 := z.EncBinary() - _ = yym1445 + yym1450 := z.EncBinary() + _ = yym1450 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -19500,15 +19548,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1425[6] { + if yyq1430[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1446 := z.EncBinary() - _ = yym1446 + yym1451 := z.EncBinary() + _ = yym1451 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -19516,10 +19564,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1448 := z.EncBinary() - _ = yym1448 + yym1453 := z.EncBinary() + _ = yym1453 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -19528,18 +19576,18 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1449 := z.EncBinary() - _ = yym1449 + yym1454 := z.EncBinary() + _ = yym1454 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[8] { - yym1451 := z.EncBinary() - _ = yym1451 + if yyq1430[8] { + yym1456 := z.EncBinary() + _ = yym1456 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -19548,21 +19596,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1425[8] { + if yyq1430[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1452 := z.EncBinary() - _ = yym1452 + yym1457 := z.EncBinary() + _ = yym1457 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[9] { + if yyq1430[9] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -19572,7 +19620,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1425[9] { + if yyq1430[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19583,14 +19631,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1425[10] { + if yyq1430[10] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1455 := z.EncBinary() - _ = yym1455 + yym1460 := z.EncBinary() + _ = yym1460 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -19600,15 +19648,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1425[10] { + if yyq1430[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1456 := z.EncBinary() - _ = yym1456 + yym1461 := z.EncBinary() + _ = yym1461 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -19616,7 +19664,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1425 || yy2arr1425 { + if yyr1430 || yy2arr1430 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19629,25 +19677,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1457 := z.DecBinary() - _ = yym1457 + yym1462 := z.DecBinary() + _ = yym1462 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1458 := r.ContainerType() - if yyct1458 == codecSelferValueTypeMap1234 { - yyl1458 := r.ReadMapStart() - if yyl1458 == 0 { + yyct1463 := r.ContainerType() + if yyct1463 == codecSelferValueTypeMap1234 { + yyl1463 := r.ReadMapStart() + if yyl1463 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1458, d) + x.codecDecodeSelfFromMap(yyl1463, d) } - } else if yyct1458 == codecSelferValueTypeArray1234 { - yyl1458 := r.ReadArrayStart() - if yyl1458 == 0 { + } else if yyct1463 == codecSelferValueTypeArray1234 { + yyl1463 := r.ReadArrayStart() + if yyl1463 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1458, d) + x.codecDecodeSelfFromArray(yyl1463, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19659,12 +19707,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1459Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1459Slc - var yyhl1459 bool = l >= 0 - for yyj1459 := 0; ; yyj1459++ { - if yyhl1459 { - if yyj1459 >= l { + var yys1464Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1464Slc + var yyhl1464 bool = l >= 0 + for yyj1464 := 0; ; yyj1464++ { + if yyhl1464 { + if yyj1464 >= l { break } } else { @@ -19673,32 +19721,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1459Slc = r.DecodeBytes(yys1459Slc, true, true) - yys1459 := string(yys1459Slc) + yys1464Slc = r.DecodeBytes(yys1464Slc, true, true) + yys1464 := string(yys1464Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1459 { + switch yys1464 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1460 := &x.Volumes - yym1461 := z.DecBinary() - _ = yym1461 + yyv1465 := &x.Volumes + yym1466 := z.DecBinary() + _ = yym1466 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1460), d) + h.decSliceVolume((*[]Volume)(yyv1465), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1462 := &x.Containers - yym1463 := z.DecBinary() - _ = yym1463 + yyv1467 := &x.Containers + yym1468 := z.DecBinary() + _ = yym1468 if false { } else { - h.decSliceContainer((*[]Container)(yyv1462), d) + h.decSliceContainer((*[]Container)(yyv1467), d) } } case "restartPolicy": @@ -19716,8 +19764,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1466 := z.DecBinary() - _ = yym1466 + yym1471 := z.DecBinary() + _ = yym1471 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -19732,8 +19780,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1468 := z.DecBinary() - _ = yym1468 + yym1473 := z.DecBinary() + _ = yym1473 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -19749,12 +19797,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1470 := &x.NodeSelector - yym1471 := z.DecBinary() - _ = yym1471 + yyv1475 := &x.NodeSelector + yym1476 := z.DecBinary() + _ = yym1476 if false { } else { - z.F.DecMapStringStringX(yyv1470, false, d) + z.F.DecMapStringStringX(yyv1475, false, d) } } case "serviceAccountName": @@ -19784,18 +19832,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1475 := &x.ImagePullSecrets - yym1476 := z.DecBinary() - _ = yym1476 + yyv1480 := &x.ImagePullSecrets + yym1481 := z.DecBinary() + _ = yym1481 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1475), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1480), d) } } default: - z.DecStructFieldNotFound(-1, yys1459) - } // end switch yys1459 - } // end for yyj1459 + z.DecStructFieldNotFound(-1, yys1464) + } // end switch yys1464 + } // end for yyj1464 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19803,16 +19851,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1477 int - var yyb1477 bool - var yyhl1477 bool = l >= 0 - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + var yyj1482 int + var yyb1482 bool + var yyhl1482 bool = l >= 0 + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19820,21 +19868,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1478 := &x.Volumes - yym1479 := z.DecBinary() - _ = yym1479 + yyv1483 := &x.Volumes + yym1484 := z.DecBinary() + _ = yym1484 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1478), d) + h.decSliceVolume((*[]Volume)(yyv1483), d) } } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19842,21 +19890,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1480 := &x.Containers - yym1481 := z.DecBinary() - _ = yym1481 + yyv1485 := &x.Containers + yym1486 := z.DecBinary() + _ = yym1486 if false { } else { - h.decSliceContainer((*[]Container)(yyv1480), d) + h.decSliceContainer((*[]Container)(yyv1485), d) } } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19866,13 +19914,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19885,20 +19933,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1484 := z.DecBinary() - _ = yym1484 + yym1489 := z.DecBinary() + _ = yym1489 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19911,20 +19959,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1486 := z.DecBinary() - _ = yym1486 + yym1491 := z.DecBinary() + _ = yym1491 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19934,13 +19982,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19948,21 +19996,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1488 := &x.NodeSelector - yym1489 := z.DecBinary() - _ = yym1489 + yyv1493 := &x.NodeSelector + yym1494 := z.DecBinary() + _ = yym1494 if false { } else { - z.F.DecMapStringStringX(yyv1488, false, d) + z.F.DecMapStringStringX(yyv1493, false, d) } } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19972,13 +20020,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19988,13 +20036,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20009,13 +20057,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20023,26 +20071,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1493 := &x.ImagePullSecrets - yym1494 := z.DecBinary() - _ = yym1494 + yyv1498 := &x.ImagePullSecrets + yym1499 := z.DecBinary() + _ = yym1499 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1493), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1498), d) } } for { - yyj1477++ - if yyhl1477 { - yyb1477 = yyj1477 > l + yyj1482++ + if yyhl1482 { + yyb1482 = yyj1482 > l } else { - yyb1477 = r.CheckBreak() + yyb1482 = r.CheckBreak() } - if yyb1477 { + if yyb1482 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1477-1, "") + z.DecStructFieldNotFound(yyj1482-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20054,42 +20102,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1495 := z.EncBinary() - _ = yym1495 + yym1500 := z.EncBinary() + _ = yym1500 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1496 := !z.EncBinary() - yy2arr1496 := z.EncBasicHandle().StructToArray - var yyq1496 [8]bool - _, _, _ = yysep1496, yyq1496, yy2arr1496 - const yyr1496 bool = false - yyq1496[0] = x.HostNetwork != false - yyq1496[1] = x.HostPID != false - yyq1496[2] = x.HostIPC != false - yyq1496[3] = x.SELinuxOptions != nil - yyq1496[4] = x.RunAsUser != nil - yyq1496[5] = x.RunAsNonRoot != nil - yyq1496[6] = len(x.SupplementalGroups) != 0 - yyq1496[7] = x.FSGroup != nil - var yynn1496 int - if yyr1496 || yy2arr1496 { + yysep1501 := !z.EncBinary() + yy2arr1501 := z.EncBasicHandle().StructToArray + var yyq1501 [8]bool + _, _, _ = yysep1501, yyq1501, yy2arr1501 + const yyr1501 bool = false + yyq1501[0] = x.HostNetwork != false + yyq1501[1] = x.HostPID != false + yyq1501[2] = x.HostIPC != false + yyq1501[3] = x.SELinuxOptions != nil + yyq1501[4] = x.RunAsUser != nil + yyq1501[5] = x.RunAsNonRoot != nil + yyq1501[6] = len(x.SupplementalGroups) != 0 + yyq1501[7] = x.FSGroup != nil + var yynn1501 int + if yyr1501 || yy2arr1501 { r.EncodeArrayStart(8) } else { - yynn1496 = 0 - for _, b := range yyq1496 { + yynn1501 = 0 + for _, b := range yyq1501 { if b { - yynn1496++ + yynn1501++ } } - r.EncodeMapStart(yynn1496) - yynn1496 = 0 + r.EncodeMapStart(yynn1501) + yynn1501 = 0 } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[0] { - yym1498 := z.EncBinary() - _ = yym1498 + if yyq1501[0] { + yym1503 := z.EncBinary() + _ = yym1503 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -20098,23 +20146,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1496[0] { + if yyq1501[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1499 := z.EncBinary() - _ = yym1499 + yym1504 := z.EncBinary() + _ = yym1504 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[1] { - yym1501 := z.EncBinary() - _ = yym1501 + if yyq1501[1] { + yym1506 := z.EncBinary() + _ = yym1506 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -20123,23 +20171,23 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1496[1] { + if yyq1501[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1502 := z.EncBinary() - _ = yym1502 + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[2] { - yym1504 := z.EncBinary() - _ = yym1504 + if yyq1501[2] { + yym1509 := z.EncBinary() + _ = yym1509 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -20148,21 +20196,21 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1496[2] { + if yyq1501[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1505 := z.EncBinary() - _ = yym1505 + yym1510 := z.EncBinary() + _ = yym1510 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[3] { + if yyq1501[3] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -20172,7 +20220,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1496[3] { + if yyq1501[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -20183,84 +20231,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[4] { + if yyq1501[4] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1508 := *x.RunAsUser - yym1509 := z.EncBinary() - _ = yym1509 + yy1513 := *x.RunAsUser + yym1514 := z.EncBinary() + _ = yym1514 if false { } else { - r.EncodeInt(int64(yy1508)) + r.EncodeInt(int64(yy1513)) } } } else { r.EncodeNil() } } else { - if yyq1496[4] { + if yyq1501[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1510 := *x.RunAsUser - yym1511 := z.EncBinary() - _ = yym1511 + yy1515 := *x.RunAsUser + yym1516 := z.EncBinary() + _ = yym1516 if false { } else { - r.EncodeInt(int64(yy1510)) + r.EncodeInt(int64(yy1515)) } } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[5] { + if yyq1501[5] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1513 := *x.RunAsNonRoot - yym1514 := z.EncBinary() - _ = yym1514 + yy1518 := *x.RunAsNonRoot + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { - r.EncodeBool(bool(yy1513)) + r.EncodeBool(bool(yy1518)) } } } else { r.EncodeNil() } } else { - if yyq1496[5] { + if yyq1501[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1515 := *x.RunAsNonRoot - yym1516 := z.EncBinary() - _ = yym1516 + yy1520 := *x.RunAsNonRoot + yym1521 := z.EncBinary() + _ = yym1521 if false { } else { - r.EncodeBool(bool(yy1515)) + r.EncodeBool(bool(yy1520)) } } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[6] { + if yyq1501[6] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1518 := z.EncBinary() - _ = yym1518 + yym1523 := z.EncBinary() + _ = yym1523 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20270,15 +20318,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1496[6] { + if yyq1501[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1519 := z.EncBinary() - _ = yym1519 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -20286,42 +20334,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1496[7] { + if yyq1501[7] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1521 := *x.FSGroup - yym1522 := z.EncBinary() - _ = yym1522 + yy1526 := *x.FSGroup + yym1527 := z.EncBinary() + _ = yym1527 if false { } else { - r.EncodeInt(int64(yy1521)) + r.EncodeInt(int64(yy1526)) } } } else { r.EncodeNil() } } else { - if yyq1496[7] { + if yyq1501[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1523 := *x.FSGroup - yym1524 := z.EncBinary() - _ = yym1524 + yy1528 := *x.FSGroup + yym1529 := z.EncBinary() + _ = yym1529 if false { } else { - r.EncodeInt(int64(yy1523)) + r.EncodeInt(int64(yy1528)) } } } } - if yyr1496 || yy2arr1496 { + if yyr1501 || yy2arr1501 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20334,25 +20382,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1525 := z.DecBinary() - _ = yym1525 + yym1530 := z.DecBinary() + _ = yym1530 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1526 := r.ContainerType() - if yyct1526 == codecSelferValueTypeMap1234 { - yyl1526 := r.ReadMapStart() - if yyl1526 == 0 { + yyct1531 := r.ContainerType() + if yyct1531 == codecSelferValueTypeMap1234 { + yyl1531 := r.ReadMapStart() + if yyl1531 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1526, d) + x.codecDecodeSelfFromMap(yyl1531, d) } - } else if yyct1526 == codecSelferValueTypeArray1234 { - yyl1526 := r.ReadArrayStart() - if yyl1526 == 0 { + } else if yyct1531 == codecSelferValueTypeArray1234 { + yyl1531 := r.ReadArrayStart() + if yyl1531 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1526, d) + x.codecDecodeSelfFromArray(yyl1531, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20364,12 +20412,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1527Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1527Slc - var yyhl1527 bool = l >= 0 - for yyj1527 := 0; ; yyj1527++ { - if yyhl1527 { - if yyj1527 >= l { + var yys1532Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1532Slc + var yyhl1532 bool = l >= 0 + for yyj1532 := 0; ; yyj1532++ { + if yyhl1532 { + if yyj1532 >= l { break } } else { @@ -20378,10 +20426,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1527Slc = r.DecodeBytes(yys1527Slc, true, true) - yys1527 := string(yys1527Slc) + yys1532Slc = r.DecodeBytes(yys1532Slc, true, true) + yys1532 := string(yys1532Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1527 { + switch yys1532 { case "hostNetwork": if r.TryDecodeAsNil() { x.HostNetwork = false @@ -20420,8 +20468,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1533 := z.DecBinary() - _ = yym1533 + yym1538 := z.DecBinary() + _ = yym1538 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -20436,8 +20484,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1535 := z.DecBinary() - _ = yym1535 + yym1540 := z.DecBinary() + _ = yym1540 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -20447,12 +20495,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1536 := &x.SupplementalGroups - yym1537 := z.DecBinary() - _ = yym1537 + yyv1541 := &x.SupplementalGroups + yym1542 := z.DecBinary() + _ = yym1542 if false { } else { - z.F.DecSliceInt64X(yyv1536, false, d) + z.F.DecSliceInt64X(yyv1541, false, d) } } case "fsGroup": @@ -20464,17 +20512,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1539 := z.DecBinary() - _ = yym1539 + yym1544 := z.DecBinary() + _ = yym1544 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1527) - } // end switch yys1527 - } // end for yyj1527 + z.DecStructFieldNotFound(-1, yys1532) + } // end switch yys1532 + } // end for yyj1532 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20482,16 +20530,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1540 int - var yyb1540 bool - var yyhl1540 bool = l >= 0 - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + var yyj1545 int + var yyb1545 bool + var yyhl1545 bool = l >= 0 + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20501,13 +20549,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20517,13 +20565,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostPID = bool(r.DecodeBool()) } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20533,13 +20581,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20554,13 +20602,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20573,20 +20621,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1546 := z.DecBinary() - _ = yym1546 + yym1551 := z.DecBinary() + _ = yym1551 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20599,20 +20647,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1548 := z.DecBinary() - _ = yym1548 + yym1553 := z.DecBinary() + _ = yym1553 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20620,21 +20668,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1549 := &x.SupplementalGroups - yym1550 := z.DecBinary() - _ = yym1550 + yyv1554 := &x.SupplementalGroups + yym1555 := z.DecBinary() + _ = yym1555 if false { } else { - z.F.DecSliceInt64X(yyv1549, false, d) + z.F.DecSliceInt64X(yyv1554, false, d) } } - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20647,25 +20695,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1552 := z.DecBinary() - _ = yym1552 + yym1557 := z.DecBinary() + _ = yym1557 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1540++ - if yyhl1540 { - yyb1540 = yyj1540 > l + yyj1545++ + if yyhl1545 { + yyb1545 = yyj1545 > l } else { - yyb1540 = r.CheckBreak() + yyb1545 = r.CheckBreak() } - if yyb1540 { + if yyb1545 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1540-1, "") + z.DecStructFieldNotFound(yyj1545-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20677,60 +20725,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1553 := z.EncBinary() - _ = yym1553 + yym1558 := z.EncBinary() + _ = yym1558 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1554 := !z.EncBinary() - yy2arr1554 := z.EncBasicHandle().StructToArray - var yyq1554 [8]bool - _, _, _ = yysep1554, yyq1554, yy2arr1554 - const yyr1554 bool = false - yyq1554[0] = x.Phase != "" - yyq1554[1] = len(x.Conditions) != 0 - yyq1554[2] = x.Message != "" - yyq1554[3] = x.Reason != "" - yyq1554[4] = x.HostIP != "" - yyq1554[5] = x.PodIP != "" - yyq1554[6] = x.StartTime != nil - yyq1554[7] = len(x.ContainerStatuses) != 0 - var yynn1554 int - if yyr1554 || yy2arr1554 { + yysep1559 := !z.EncBinary() + yy2arr1559 := z.EncBasicHandle().StructToArray + var yyq1559 [8]bool + _, _, _ = yysep1559, yyq1559, yy2arr1559 + const yyr1559 bool = false + yyq1559[0] = x.Phase != "" + yyq1559[1] = len(x.Conditions) != 0 + yyq1559[2] = x.Message != "" + yyq1559[3] = x.Reason != "" + yyq1559[4] = x.HostIP != "" + yyq1559[5] = x.PodIP != "" + yyq1559[6] = x.StartTime != nil + yyq1559[7] = len(x.ContainerStatuses) != 0 + var yynn1559 int + if yyr1559 || yy2arr1559 { r.EncodeArrayStart(8) } else { - yynn1554 = 0 - for _, b := range yyq1554 { + yynn1559 = 0 + for _, b := range yyq1559 { if b { - yynn1554++ + yynn1559++ } } - r.EncodeMapStart(yynn1554) - yynn1554 = 0 + r.EncodeMapStart(yynn1559) + yynn1559 = 0 } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[0] { + if yyq1559[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1554[0] { + if yyq1559[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[1] { + if yyq1559[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym1557 := z.EncBinary() - _ = yym1557 + yym1562 := z.EncBinary() + _ = yym1562 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -20740,15 +20788,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1554[1] { + if yyq1559[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym1558 := z.EncBinary() - _ = yym1558 + yym1563 := z.EncBinary() + _ = yym1563 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -20756,11 +20804,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[2] { - yym1560 := z.EncBinary() - _ = yym1560 + if yyq1559[2] { + yym1565 := z.EncBinary() + _ = yym1565 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -20769,23 +20817,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1554[2] { + if yyq1559[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1561 := z.EncBinary() - _ = yym1561 + yym1566 := z.EncBinary() + _ = yym1566 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[3] { - yym1563 := z.EncBinary() - _ = yym1563 + if yyq1559[3] { + yym1568 := z.EncBinary() + _ = yym1568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -20794,23 +20842,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1554[3] { + if yyq1559[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1564 := z.EncBinary() - _ = yym1564 + yym1569 := z.EncBinary() + _ = yym1569 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[4] { - yym1566 := z.EncBinary() - _ = yym1566 + if yyq1559[4] { + yym1571 := z.EncBinary() + _ = yym1571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -20819,23 +20867,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1554[4] { + if yyq1559[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1567 := z.EncBinary() - _ = yym1567 + yym1572 := z.EncBinary() + _ = yym1572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[5] { - yym1569 := z.EncBinary() - _ = yym1569 + if yyq1559[5] { + yym1574 := z.EncBinary() + _ = yym1574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -20844,31 +20892,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1554[5] { + if yyq1559[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1570 := z.EncBinary() - _ = yym1570 + yym1575 := z.EncBinary() + _ = yym1575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[6] { + if yyq1559[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym1572 := z.EncBinary() - _ = yym1572 + yym1577 := z.EncBinary() + _ = yym1577 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1572 { + } else if yym1577 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1572 && z.IsJSONHandle() { + } else if !yym1577 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -20878,20 +20926,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1554[6] { + if yyq1559[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym1573 := z.EncBinary() - _ = yym1573 + yym1578 := z.EncBinary() + _ = yym1578 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1573 { + } else if yym1578 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1573 && z.IsJSONHandle() { + } else if !yym1578 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -20899,14 +20947,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1554[7] { + if yyq1559[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1575 := z.EncBinary() - _ = yym1575 + yym1580 := z.EncBinary() + _ = yym1580 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -20916,15 +20964,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1554[7] { + if yyq1559[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1576 := z.EncBinary() - _ = yym1576 + yym1581 := z.EncBinary() + _ = yym1581 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -20932,7 +20980,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1554 || yy2arr1554 { + if yyr1559 || yy2arr1559 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20945,25 +20993,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1577 := z.DecBinary() - _ = yym1577 + yym1582 := z.DecBinary() + _ = yym1582 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1578 := r.ContainerType() - if yyct1578 == codecSelferValueTypeMap1234 { - yyl1578 := r.ReadMapStart() - if yyl1578 == 0 { + yyct1583 := r.ContainerType() + if yyct1583 == codecSelferValueTypeMap1234 { + yyl1583 := r.ReadMapStart() + if yyl1583 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1578, d) + x.codecDecodeSelfFromMap(yyl1583, d) } - } else if yyct1578 == codecSelferValueTypeArray1234 { - yyl1578 := r.ReadArrayStart() - if yyl1578 == 0 { + } else if yyct1583 == codecSelferValueTypeArray1234 { + yyl1583 := r.ReadArrayStart() + if yyl1583 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1578, d) + x.codecDecodeSelfFromArray(yyl1583, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20975,12 +21023,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1579Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1579Slc - var yyhl1579 bool = l >= 0 - for yyj1579 := 0; ; yyj1579++ { - if yyhl1579 { - if yyj1579 >= l { + var yys1584Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1584Slc + var yyhl1584 bool = l >= 0 + for yyj1584 := 0; ; yyj1584++ { + if yyhl1584 { + if yyj1584 >= l { break } } else { @@ -20989,10 +21037,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1579Slc = r.DecodeBytes(yys1579Slc, true, true) - yys1579 := string(yys1579Slc) + yys1584Slc = r.DecodeBytes(yys1584Slc, true, true) + yys1584 := string(yys1584Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1579 { + switch yys1584 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -21003,12 +21051,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1581 := &x.Conditions - yym1582 := z.DecBinary() - _ = yym1582 + yyv1586 := &x.Conditions + yym1587 := z.DecBinary() + _ = yym1587 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1581), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1586), d) } } case "message": @@ -21044,13 +21092,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1588 := z.DecBinary() - _ = yym1588 + yym1593 := z.DecBinary() + _ = yym1593 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1588 { + } else if yym1593 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1588 && z.IsJSONHandle() { + } else if !yym1593 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -21060,18 +21108,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1589 := &x.ContainerStatuses - yym1590 := z.DecBinary() - _ = yym1590 + yyv1594 := &x.ContainerStatuses + yym1595 := z.DecBinary() + _ = yym1595 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1589), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1594), d) } } default: - z.DecStructFieldNotFound(-1, yys1579) - } // end switch yys1579 - } // end for yyj1579 + z.DecStructFieldNotFound(-1, yys1584) + } // end switch yys1584 + } // end for yyj1584 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21079,16 +21127,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1591 int - var yyb1591 bool - var yyhl1591 bool = l >= 0 - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + var yyj1596 int + var yyb1596 bool + var yyhl1596 bool = l >= 0 + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21098,13 +21146,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21112,21 +21160,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1593 := &x.Conditions - yym1594 := z.DecBinary() - _ = yym1594 + yyv1598 := &x.Conditions + yym1599 := z.DecBinary() + _ = yym1599 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1593), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1598), d) } } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21136,13 +21184,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21152,13 +21200,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21168,13 +21216,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21184,13 +21232,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21203,25 +21251,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1600 := z.DecBinary() - _ = yym1600 + yym1605 := z.DecBinary() + _ = yym1605 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1600 { + } else if yym1605 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1600 && z.IsJSONHandle() { + } else if !yym1605 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21229,26 +21277,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1601 := &x.ContainerStatuses - yym1602 := z.DecBinary() - _ = yym1602 + yyv1606 := &x.ContainerStatuses + yym1607 := z.DecBinary() + _ = yym1607 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1601), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1606), d) } } for { - yyj1591++ - if yyhl1591 { - yyb1591 = yyj1591 > l + yyj1596++ + if yyhl1596 { + yyb1596 = yyj1596 > l } else { - yyb1591 = r.CheckBreak() + yyb1596 = r.CheckBreak() } - if yyb1591 { + if yyb1596 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1591-1, "") + z.DecStructFieldNotFound(yyj1596-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21260,38 +21308,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1603 := z.EncBinary() - _ = yym1603 + yym1608 := z.EncBinary() + _ = yym1608 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1604 := !z.EncBinary() - yy2arr1604 := z.EncBasicHandle().StructToArray - var yyq1604 [4]bool - _, _, _ = yysep1604, yyq1604, yy2arr1604 - const yyr1604 bool = false - yyq1604[0] = x.Kind != "" - yyq1604[1] = x.APIVersion != "" - yyq1604[2] = true - yyq1604[3] = true - var yynn1604 int - if yyr1604 || yy2arr1604 { + yysep1609 := !z.EncBinary() + yy2arr1609 := z.EncBasicHandle().StructToArray + var yyq1609 [4]bool + _, _, _ = yysep1609, yyq1609, yy2arr1609 + const yyr1609 bool = false + yyq1609[0] = x.Kind != "" + yyq1609[1] = x.APIVersion != "" + yyq1609[2] = true + yyq1609[3] = true + var yynn1609 int + if yyr1609 || yy2arr1609 { r.EncodeArrayStart(4) } else { - yynn1604 = 0 - for _, b := range yyq1604 { + yynn1609 = 0 + for _, b := range yyq1609 { if b { - yynn1604++ + yynn1609++ } } - r.EncodeMapStart(yynn1604) - yynn1604 = 0 + r.EncodeMapStart(yynn1609) + yynn1609 = 0 } - if yyr1604 || yy2arr1604 { + if yyr1609 || yy2arr1609 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1604[0] { - yym1606 := z.EncBinary() - _ = yym1606 + if yyq1609[0] { + yym1611 := z.EncBinary() + _ = yym1611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21300,23 +21348,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1604[0] { + if yyq1609[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1607 := z.EncBinary() - _ = yym1607 + yym1612 := z.EncBinary() + _ = yym1612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1604 || yy2arr1604 { + if yyr1609 || yy2arr1609 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1604[1] { - yym1609 := z.EncBinary() - _ = yym1609 + if yyq1609[1] { + yym1614 := z.EncBinary() + _ = yym1614 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21325,53 +21373,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1604[1] { + if yyq1609[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1610 := z.EncBinary() - _ = yym1610 + yym1615 := z.EncBinary() + _ = yym1615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1604 || yy2arr1604 { + if yyr1609 || yy2arr1609 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1604[2] { - yy1612 := &x.ObjectMeta - yy1612.CodecEncodeSelf(e) + if yyq1609[2] { + yy1617 := &x.ObjectMeta + yy1617.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1604[2] { + if yyq1609[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1613 := &x.ObjectMeta - yy1613.CodecEncodeSelf(e) + yy1618 := &x.ObjectMeta + yy1618.CodecEncodeSelf(e) } } - if yyr1604 || yy2arr1604 { + if yyr1609 || yy2arr1609 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1604[3] { - yy1615 := &x.Status - yy1615.CodecEncodeSelf(e) + if yyq1609[3] { + yy1620 := &x.Status + yy1620.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1604[3] { + if yyq1609[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1616 := &x.Status - yy1616.CodecEncodeSelf(e) + yy1621 := &x.Status + yy1621.CodecEncodeSelf(e) } } - if yyr1604 || yy2arr1604 { + if yyr1609 || yy2arr1609 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21384,25 +21432,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1617 := z.DecBinary() - _ = yym1617 + yym1622 := z.DecBinary() + _ = yym1622 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1618 := r.ContainerType() - if yyct1618 == codecSelferValueTypeMap1234 { - yyl1618 := r.ReadMapStart() - if yyl1618 == 0 { + yyct1623 := r.ContainerType() + if yyct1623 == codecSelferValueTypeMap1234 { + yyl1623 := r.ReadMapStart() + if yyl1623 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1618, d) + x.codecDecodeSelfFromMap(yyl1623, d) } - } else if yyct1618 == codecSelferValueTypeArray1234 { - yyl1618 := r.ReadArrayStart() - if yyl1618 == 0 { + } else if yyct1623 == codecSelferValueTypeArray1234 { + yyl1623 := r.ReadArrayStart() + if yyl1623 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1618, d) + x.codecDecodeSelfFromArray(yyl1623, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21414,12 +21462,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1619Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1619Slc - var yyhl1619 bool = l >= 0 - for yyj1619 := 0; ; yyj1619++ { - if yyhl1619 { - if yyj1619 >= l { + var yys1624Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1624Slc + var yyhl1624 bool = l >= 0 + for yyj1624 := 0; ; yyj1624++ { + if yyhl1624 { + if yyj1624 >= l { break } } else { @@ -21428,10 +21476,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1619Slc = r.DecodeBytes(yys1619Slc, true, true) - yys1619 := string(yys1619Slc) + yys1624Slc = r.DecodeBytes(yys1624Slc, true, true) + yys1624 := string(yys1624Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1619 { + switch yys1624 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21448,20 +21496,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1622 := &x.ObjectMeta - yyv1622.CodecDecodeSelf(d) + yyv1627 := &x.ObjectMeta + yyv1627.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1623 := &x.Status - yyv1623.CodecDecodeSelf(d) + yyv1628 := &x.Status + yyv1628.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1619) - } // end switch yys1619 - } // end for yyj1619 + z.DecStructFieldNotFound(-1, yys1624) + } // end switch yys1624 + } // end for yyj1624 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21469,16 +21517,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1624 int - var yyb1624 bool - var yyhl1624 bool = l >= 0 - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + var yyj1629 int + var yyb1629 bool + var yyhl1629 bool = l >= 0 + yyj1629++ + if yyhl1629 { + yyb1629 = yyj1629 > l } else { - yyb1624 = r.CheckBreak() + yyb1629 = r.CheckBreak() } - if yyb1624 { + if yyb1629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21488,13 +21536,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1629++ + if yyhl1629 { + yyb1629 = yyj1629 > l } else { - yyb1624 = r.CheckBreak() + yyb1629 = r.CheckBreak() } - if yyb1624 { + if yyb1629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21504,13 +21552,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1629++ + if yyhl1629 { + yyb1629 = yyj1629 > l } else { - yyb1624 = r.CheckBreak() + yyb1629 = r.CheckBreak() } - if yyb1624 { + if yyb1629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21518,16 +21566,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1627 := &x.ObjectMeta - yyv1627.CodecDecodeSelf(d) + yyv1632 := &x.ObjectMeta + yyv1632.CodecDecodeSelf(d) } - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1629++ + if yyhl1629 { + yyb1629 = yyj1629 > l } else { - yyb1624 = r.CheckBreak() + yyb1629 = r.CheckBreak() } - if yyb1624 { + if yyb1629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21535,21 +21583,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1628 := &x.Status - yyv1628.CodecDecodeSelf(d) + yyv1633 := &x.Status + yyv1633.CodecDecodeSelf(d) } for { - yyj1624++ - if yyhl1624 { - yyb1624 = yyj1624 > l + yyj1629++ + if yyhl1629 { + yyb1629 = yyj1629 > l } else { - yyb1624 = r.CheckBreak() + yyb1629 = r.CheckBreak() } - if yyb1624 { + if yyb1629 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1624-1, "") + z.DecStructFieldNotFound(yyj1629-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21561,39 +21609,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1629 := z.EncBinary() - _ = yym1629 + yym1634 := z.EncBinary() + _ = yym1634 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1630 := !z.EncBinary() - yy2arr1630 := z.EncBasicHandle().StructToArray - var yyq1630 [5]bool - _, _, _ = yysep1630, yyq1630, yy2arr1630 - const yyr1630 bool = false - yyq1630[0] = x.Kind != "" - yyq1630[1] = x.APIVersion != "" - yyq1630[2] = true - yyq1630[3] = true - yyq1630[4] = true - var yynn1630 int - if yyr1630 || yy2arr1630 { + yysep1635 := !z.EncBinary() + yy2arr1635 := z.EncBasicHandle().StructToArray + var yyq1635 [5]bool + _, _, _ = yysep1635, yyq1635, yy2arr1635 + const yyr1635 bool = false + yyq1635[0] = x.Kind != "" + yyq1635[1] = x.APIVersion != "" + yyq1635[2] = true + yyq1635[3] = true + yyq1635[4] = true + var yynn1635 int + if yyr1635 || yy2arr1635 { r.EncodeArrayStart(5) } else { - yynn1630 = 0 - for _, b := range yyq1630 { + yynn1635 = 0 + for _, b := range yyq1635 { if b { - yynn1630++ + yynn1635++ } } - r.EncodeMapStart(yynn1630) - yynn1630 = 0 + r.EncodeMapStart(yynn1635) + yynn1635 = 0 } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1630[0] { - yym1632 := z.EncBinary() - _ = yym1632 + if yyq1635[0] { + yym1637 := z.EncBinary() + _ = yym1637 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21602,23 +21650,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1630[0] { + if yyq1635[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1633 := z.EncBinary() - _ = yym1633 + yym1638 := z.EncBinary() + _ = yym1638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1630[1] { - yym1635 := z.EncBinary() - _ = yym1635 + if yyq1635[1] { + yym1640 := z.EncBinary() + _ = yym1640 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21627,70 +21675,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1630[1] { + if yyq1635[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1636 := z.EncBinary() - _ = yym1636 + yym1641 := z.EncBinary() + _ = yym1641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1630[2] { - yy1638 := &x.ObjectMeta - yy1638.CodecEncodeSelf(e) + if yyq1635[2] { + yy1643 := &x.ObjectMeta + yy1643.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1630[2] { + if yyq1635[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1639 := &x.ObjectMeta - yy1639.CodecEncodeSelf(e) + yy1644 := &x.ObjectMeta + yy1644.CodecEncodeSelf(e) } } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1630[3] { - yy1641 := &x.Spec - yy1641.CodecEncodeSelf(e) + if yyq1635[3] { + yy1646 := &x.Spec + yy1646.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1630[3] { + if yyq1635[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1642 := &x.Spec - yy1642.CodecEncodeSelf(e) + yy1647 := &x.Spec + yy1647.CodecEncodeSelf(e) } } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1630[4] { - yy1644 := &x.Status - yy1644.CodecEncodeSelf(e) + if yyq1635[4] { + yy1649 := &x.Status + yy1649.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1630[4] { + if yyq1635[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1645 := &x.Status - yy1645.CodecEncodeSelf(e) + yy1650 := &x.Status + yy1650.CodecEncodeSelf(e) } } - if yyr1630 || yy2arr1630 { + if yyr1635 || yy2arr1635 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21703,25 +21751,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1646 := z.DecBinary() - _ = yym1646 + yym1651 := z.DecBinary() + _ = yym1651 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1647 := r.ContainerType() - if yyct1647 == codecSelferValueTypeMap1234 { - yyl1647 := r.ReadMapStart() - if yyl1647 == 0 { + yyct1652 := r.ContainerType() + if yyct1652 == codecSelferValueTypeMap1234 { + yyl1652 := r.ReadMapStart() + if yyl1652 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1647, d) + x.codecDecodeSelfFromMap(yyl1652, d) } - } else if yyct1647 == codecSelferValueTypeArray1234 { - yyl1647 := r.ReadArrayStart() - if yyl1647 == 0 { + } else if yyct1652 == codecSelferValueTypeArray1234 { + yyl1652 := r.ReadArrayStart() + if yyl1652 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1647, d) + x.codecDecodeSelfFromArray(yyl1652, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21733,12 +21781,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1648Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1648Slc - var yyhl1648 bool = l >= 0 - for yyj1648 := 0; ; yyj1648++ { - if yyhl1648 { - if yyj1648 >= l { + var yys1653Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1653Slc + var yyhl1653 bool = l >= 0 + for yyj1653 := 0; ; yyj1653++ { + if yyhl1653 { + if yyj1653 >= l { break } } else { @@ -21747,10 +21795,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1648Slc = r.DecodeBytes(yys1648Slc, true, true) - yys1648 := string(yys1648Slc) + yys1653Slc = r.DecodeBytes(yys1653Slc, true, true) + yys1653 := string(yys1653Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1648 { + switch yys1653 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21767,27 +21815,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1651 := &x.ObjectMeta - yyv1651.CodecDecodeSelf(d) + yyv1656 := &x.ObjectMeta + yyv1656.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1652 := &x.Spec - yyv1652.CodecDecodeSelf(d) + yyv1657 := &x.Spec + yyv1657.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1653 := &x.Status - yyv1653.CodecDecodeSelf(d) + yyv1658 := &x.Status + yyv1658.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1648) - } // end switch yys1648 - } // end for yyj1648 + z.DecStructFieldNotFound(-1, yys1653) + } // end switch yys1653 + } // end for yyj1653 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21795,16 +21843,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1654 int - var yyb1654 bool - var yyhl1654 bool = l >= 0 - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + var yyj1659 int + var yyb1659 bool + var yyhl1659 bool = l >= 0 + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21814,13 +21862,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21830,13 +21878,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21844,16 +21892,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1657 := &x.ObjectMeta - yyv1657.CodecDecodeSelf(d) + yyv1662 := &x.ObjectMeta + yyv1662.CodecDecodeSelf(d) } - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21861,16 +21909,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1658 := &x.Spec - yyv1658.CodecDecodeSelf(d) + yyv1663 := &x.Spec + yyv1663.CodecDecodeSelf(d) } - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21878,21 +21926,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1659 := &x.Status - yyv1659.CodecDecodeSelf(d) + yyv1664 := &x.Status + yyv1664.CodecDecodeSelf(d) } for { - yyj1654++ - if yyhl1654 { - yyb1654 = yyj1654 > l + yyj1659++ + if yyhl1659 { + yyb1659 = yyj1659 > l } else { - yyb1654 = r.CheckBreak() + yyb1659 = r.CheckBreak() } - if yyb1654 { + if yyb1659 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1654-1, "") + z.DecStructFieldNotFound(yyj1659-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21904,66 +21952,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1660 := z.EncBinary() - _ = yym1660 + yym1665 := z.EncBinary() + _ = yym1665 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1661 := !z.EncBinary() - yy2arr1661 := z.EncBasicHandle().StructToArray - var yyq1661 [2]bool - _, _, _ = yysep1661, yyq1661, yy2arr1661 - const yyr1661 bool = false - yyq1661[0] = true - yyq1661[1] = true - var yynn1661 int - if yyr1661 || yy2arr1661 { + yysep1666 := !z.EncBinary() + yy2arr1666 := z.EncBasicHandle().StructToArray + var yyq1666 [2]bool + _, _, _ = yysep1666, yyq1666, yy2arr1666 + const yyr1666 bool = false + yyq1666[0] = true + yyq1666[1] = true + var yynn1666 int + if yyr1666 || yy2arr1666 { r.EncodeArrayStart(2) } else { - yynn1661 = 0 - for _, b := range yyq1661 { + yynn1666 = 0 + for _, b := range yyq1666 { if b { - yynn1661++ + yynn1666++ } } - r.EncodeMapStart(yynn1661) - yynn1661 = 0 + r.EncodeMapStart(yynn1666) + yynn1666 = 0 } - if yyr1661 || yy2arr1661 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1661[0] { - yy1663 := &x.ObjectMeta - yy1663.CodecEncodeSelf(e) + if yyq1666[0] { + yy1668 := &x.ObjectMeta + yy1668.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1661[0] { + if yyq1666[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1664 := &x.ObjectMeta - yy1664.CodecEncodeSelf(e) + yy1669 := &x.ObjectMeta + yy1669.CodecEncodeSelf(e) } } - if yyr1661 || yy2arr1661 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1661[1] { - yy1666 := &x.Spec - yy1666.CodecEncodeSelf(e) + if yyq1666[1] { + yy1671 := &x.Spec + yy1671.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1661[1] { + if yyq1666[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1667 := &x.Spec - yy1667.CodecEncodeSelf(e) + yy1672 := &x.Spec + yy1672.CodecEncodeSelf(e) } } - if yyr1661 || yy2arr1661 { + if yyr1666 || yy2arr1666 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21976,25 +22024,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1668 := z.DecBinary() - _ = yym1668 + yym1673 := z.DecBinary() + _ = yym1673 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1669 := r.ContainerType() - if yyct1669 == codecSelferValueTypeMap1234 { - yyl1669 := r.ReadMapStart() - if yyl1669 == 0 { + yyct1674 := r.ContainerType() + if yyct1674 == codecSelferValueTypeMap1234 { + yyl1674 := r.ReadMapStart() + if yyl1674 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1669, d) + x.codecDecodeSelfFromMap(yyl1674, d) } - } else if yyct1669 == codecSelferValueTypeArray1234 { - yyl1669 := r.ReadArrayStart() - if yyl1669 == 0 { + } else if yyct1674 == codecSelferValueTypeArray1234 { + yyl1674 := r.ReadArrayStart() + if yyl1674 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1669, d) + x.codecDecodeSelfFromArray(yyl1674, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22006,12 +22054,12 @@ func (x *PodTemplateSpec) 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 yys1675Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1675Slc + var yyhl1675 bool = l >= 0 + for yyj1675 := 0; ; yyj1675++ { + if yyhl1675 { + if yyj1675 >= l { break } } else { @@ -22020,28 +22068,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1670Slc = r.DecodeBytes(yys1670Slc, true, true) - yys1670 := string(yys1670Slc) + yys1675Slc = r.DecodeBytes(yys1675Slc, true, true) + yys1675 := string(yys1675Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1670 { + switch yys1675 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1671 := &x.ObjectMeta - yyv1671.CodecDecodeSelf(d) + yyv1676 := &x.ObjectMeta + yyv1676.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1672 := &x.Spec - yyv1672.CodecDecodeSelf(d) + yyv1677 := &x.Spec + yyv1677.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1670) - } // end switch yys1670 - } // end for yyj1670 + z.DecStructFieldNotFound(-1, yys1675) + } // end switch yys1675 + } // end for yyj1675 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22049,16 +22097,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1673 int - var yyb1673 bool - var yyhl1673 bool = l >= 0 - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + var yyj1678 int + var yyb1678 bool + var yyhl1678 bool = l >= 0 + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22066,16 +22114,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1674 := &x.ObjectMeta - yyv1674.CodecDecodeSelf(d) + yyv1679 := &x.ObjectMeta + yyv1679.CodecDecodeSelf(d) } - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22083,21 +22131,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1675 := &x.Spec - yyv1675.CodecDecodeSelf(d) + yyv1680 := &x.Spec + yyv1680.CodecDecodeSelf(d) } for { - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1673-1, "") + z.DecStructFieldNotFound(yyj1678-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22109,38 +22157,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1676 := z.EncBinary() - _ = yym1676 + yym1681 := z.EncBinary() + _ = yym1681 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1677 := !z.EncBinary() - yy2arr1677 := z.EncBasicHandle().StructToArray - var yyq1677 [4]bool - _, _, _ = yysep1677, yyq1677, yy2arr1677 - const yyr1677 bool = false - yyq1677[0] = x.Kind != "" - yyq1677[1] = x.APIVersion != "" - yyq1677[2] = true - yyq1677[3] = true - var yynn1677 int - if yyr1677 || yy2arr1677 { + yysep1682 := !z.EncBinary() + yy2arr1682 := z.EncBasicHandle().StructToArray + var yyq1682 [4]bool + _, _, _ = yysep1682, yyq1682, yy2arr1682 + const yyr1682 bool = false + yyq1682[0] = x.Kind != "" + yyq1682[1] = x.APIVersion != "" + yyq1682[2] = true + yyq1682[3] = true + var yynn1682 int + if yyr1682 || yy2arr1682 { r.EncodeArrayStart(4) } else { - yynn1677 = 0 - for _, b := range yyq1677 { + yynn1682 = 0 + for _, b := range yyq1682 { if b { - yynn1677++ + yynn1682++ } } - r.EncodeMapStart(yynn1677) - yynn1677 = 0 + r.EncodeMapStart(yynn1682) + yynn1682 = 0 } - if yyr1677 || yy2arr1677 { + if yyr1682 || yy2arr1682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[0] { - yym1679 := z.EncBinary() - _ = yym1679 + if yyq1682[0] { + yym1684 := z.EncBinary() + _ = yym1684 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22149,23 +22197,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1677[0] { + if yyq1682[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1680 := z.EncBinary() - _ = yym1680 + yym1685 := z.EncBinary() + _ = yym1685 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1677 || yy2arr1677 { + if yyr1682 || yy2arr1682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[1] { - yym1682 := z.EncBinary() - _ = yym1682 + if yyq1682[1] { + yym1687 := z.EncBinary() + _ = yym1687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22174,53 +22222,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1677[1] { + if yyq1682[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1683 := z.EncBinary() - _ = yym1683 + yym1688 := z.EncBinary() + _ = yym1688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1677 || yy2arr1677 { + if yyr1682 || yy2arr1682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[2] { - yy1685 := &x.ObjectMeta - yy1685.CodecEncodeSelf(e) + if yyq1682[2] { + yy1690 := &x.ObjectMeta + yy1690.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1677[2] { + if yyq1682[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1686 := &x.ObjectMeta - yy1686.CodecEncodeSelf(e) + yy1691 := &x.ObjectMeta + yy1691.CodecEncodeSelf(e) } } - if yyr1677 || yy2arr1677 { + if yyr1682 || yy2arr1682 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1677[3] { - yy1688 := &x.Template - yy1688.CodecEncodeSelf(e) + if yyq1682[3] { + yy1693 := &x.Template + yy1693.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1677[3] { + if yyq1682[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1689 := &x.Template - yy1689.CodecEncodeSelf(e) + yy1694 := &x.Template + yy1694.CodecEncodeSelf(e) } } - if yyr1677 || yy2arr1677 { + if yyr1682 || yy2arr1682 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22233,25 +22281,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1690 := z.DecBinary() - _ = yym1690 + yym1695 := z.DecBinary() + _ = yym1695 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1691 := r.ContainerType() - if yyct1691 == codecSelferValueTypeMap1234 { - yyl1691 := r.ReadMapStart() - if yyl1691 == 0 { + yyct1696 := r.ContainerType() + if yyct1696 == codecSelferValueTypeMap1234 { + yyl1696 := r.ReadMapStart() + if yyl1696 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1691, d) + x.codecDecodeSelfFromMap(yyl1696, d) } - } else if yyct1691 == codecSelferValueTypeArray1234 { - yyl1691 := r.ReadArrayStart() - if yyl1691 == 0 { + } else if yyct1696 == codecSelferValueTypeArray1234 { + yyl1696 := r.ReadArrayStart() + if yyl1696 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1691, d) + x.codecDecodeSelfFromArray(yyl1696, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22263,12 +22311,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1692Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1692Slc - var yyhl1692 bool = l >= 0 - for yyj1692 := 0; ; yyj1692++ { - if yyhl1692 { - if yyj1692 >= l { + var yys1697Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1697Slc + var yyhl1697 bool = l >= 0 + for yyj1697 := 0; ; yyj1697++ { + if yyhl1697 { + if yyj1697 >= l { break } } else { @@ -22277,10 +22325,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1692Slc = r.DecodeBytes(yys1692Slc, true, true) - yys1692 := string(yys1692Slc) + yys1697Slc = r.DecodeBytes(yys1697Slc, true, true) + yys1697 := string(yys1697Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1692 { + switch yys1697 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22297,20 +22345,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1695 := &x.ObjectMeta - yyv1695.CodecDecodeSelf(d) + yyv1700 := &x.ObjectMeta + yyv1700.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1696 := &x.Template - yyv1696.CodecDecodeSelf(d) + yyv1701 := &x.Template + yyv1701.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1692) - } // end switch yys1692 - } // end for yyj1692 + z.DecStructFieldNotFound(-1, yys1697) + } // end switch yys1697 + } // end for yyj1697 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22318,16 +22366,16 @@ func (x *PodTemplate) 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 yyj1702 int + var yyb1702 bool + var yyhl1702 bool = l >= 0 + yyj1702++ + if yyhl1702 { + yyb1702 = yyj1702 > l } else { - yyb1697 = r.CheckBreak() + yyb1702 = r.CheckBreak() } - if yyb1697 { + if yyb1702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22337,13 +22385,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1702++ + if yyhl1702 { + yyb1702 = yyj1702 > l } else { - yyb1697 = r.CheckBreak() + yyb1702 = r.CheckBreak() } - if yyb1697 { + if yyb1702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22353,13 +22401,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1702++ + if yyhl1702 { + yyb1702 = yyj1702 > l } else { - yyb1697 = r.CheckBreak() + yyb1702 = r.CheckBreak() } - if yyb1697 { + if yyb1702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22367,16 +22415,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1700 := &x.ObjectMeta - yyv1700.CodecDecodeSelf(d) + yyv1705 := &x.ObjectMeta + yyv1705.CodecDecodeSelf(d) } - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1702++ + if yyhl1702 { + yyb1702 = yyj1702 > l } else { - yyb1697 = r.CheckBreak() + yyb1702 = r.CheckBreak() } - if yyb1697 { + if yyb1702 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22384,21 +22432,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1701 := &x.Template - yyv1701.CodecDecodeSelf(d) + yyv1706 := &x.Template + yyv1706.CodecDecodeSelf(d) } for { - yyj1697++ - if yyhl1697 { - yyb1697 = yyj1697 > l + yyj1702++ + if yyhl1702 { + yyb1702 = yyj1702 > l } else { - yyb1697 = r.CheckBreak() + yyb1702 = r.CheckBreak() } - if yyb1697 { + if yyb1702 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1697-1, "") + z.DecStructFieldNotFound(yyj1702-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22410,37 +22458,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1702 := z.EncBinary() - _ = yym1702 + yym1707 := z.EncBinary() + _ = yym1707 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1703 := !z.EncBinary() - yy2arr1703 := z.EncBasicHandle().StructToArray - var yyq1703 [4]bool - _, _, _ = yysep1703, yyq1703, yy2arr1703 - const yyr1703 bool = false - yyq1703[0] = x.Kind != "" - yyq1703[1] = x.APIVersion != "" - yyq1703[2] = true - var yynn1703 int - if yyr1703 || yy2arr1703 { + yysep1708 := !z.EncBinary() + yy2arr1708 := z.EncBasicHandle().StructToArray + var yyq1708 [4]bool + _, _, _ = yysep1708, yyq1708, yy2arr1708 + const yyr1708 bool = false + yyq1708[0] = x.Kind != "" + yyq1708[1] = x.APIVersion != "" + yyq1708[2] = true + var yynn1708 int + if yyr1708 || yy2arr1708 { r.EncodeArrayStart(4) } else { - yynn1703 = 1 - for _, b := range yyq1703 { + yynn1708 = 1 + for _, b := range yyq1708 { if b { - yynn1703++ + yynn1708++ } } - r.EncodeMapStart(yynn1703) - yynn1703 = 0 + r.EncodeMapStart(yynn1708) + yynn1708 = 0 } - if yyr1703 || yy2arr1703 { + if yyr1708 || yy2arr1708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1703[0] { - yym1705 := z.EncBinary() - _ = yym1705 + if yyq1708[0] { + yym1710 := z.EncBinary() + _ = yym1710 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22449,23 +22497,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1703[0] { + if yyq1708[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1706 := z.EncBinary() - _ = yym1706 + yym1711 := z.EncBinary() + _ = yym1711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1703 || yy2arr1703 { + if yyr1708 || yy2arr1708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1703[1] { - yym1708 := z.EncBinary() - _ = yym1708 + if yyq1708[1] { + yym1713 := z.EncBinary() + _ = yym1713 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22474,54 +22522,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1703[1] { + if yyq1708[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1709 := z.EncBinary() - _ = yym1709 + yym1714 := z.EncBinary() + _ = yym1714 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1703 || yy2arr1703 { + if yyr1708 || yy2arr1708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1703[2] { - yy1711 := &x.ListMeta - yym1712 := z.EncBinary() - _ = yym1712 + if yyq1708[2] { + yy1716 := &x.ListMeta + yym1717 := z.EncBinary() + _ = yym1717 if false { - } else if z.HasExtensions() && z.EncExt(yy1711) { + } else if z.HasExtensions() && z.EncExt(yy1716) { } else { - z.EncFallback(yy1711) + z.EncFallback(yy1716) } } else { r.EncodeNil() } } else { - if yyq1703[2] { + if yyq1708[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1713 := &x.ListMeta - yym1714 := z.EncBinary() - _ = yym1714 + yy1718 := &x.ListMeta + yym1719 := z.EncBinary() + _ = yym1719 if false { - } else if z.HasExtensions() && z.EncExt(yy1713) { + } else if z.HasExtensions() && z.EncExt(yy1718) { } else { - z.EncFallback(yy1713) + z.EncFallback(yy1718) } } } - if yyr1703 || yy2arr1703 { + if yyr1708 || yy2arr1708 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1716 := z.EncBinary() - _ = yym1716 + yym1721 := z.EncBinary() + _ = yym1721 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -22534,15 +22582,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1717 := z.EncBinary() - _ = yym1717 + yym1722 := z.EncBinary() + _ = yym1722 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1703 || yy2arr1703 { + if yyr1708 || yy2arr1708 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22555,25 +22603,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1718 := z.DecBinary() - _ = yym1718 + yym1723 := z.DecBinary() + _ = yym1723 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1719 := r.ContainerType() - if yyct1719 == codecSelferValueTypeMap1234 { - yyl1719 := r.ReadMapStart() - if yyl1719 == 0 { + yyct1724 := r.ContainerType() + if yyct1724 == codecSelferValueTypeMap1234 { + yyl1724 := r.ReadMapStart() + if yyl1724 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1719, d) + x.codecDecodeSelfFromMap(yyl1724, d) } - } else if yyct1719 == codecSelferValueTypeArray1234 { - yyl1719 := r.ReadArrayStart() - if yyl1719 == 0 { + } else if yyct1724 == codecSelferValueTypeArray1234 { + yyl1724 := r.ReadArrayStart() + if yyl1724 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1719, d) + x.codecDecodeSelfFromArray(yyl1724, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22585,12 +22633,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1720Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1720Slc - var yyhl1720 bool = l >= 0 - for yyj1720 := 0; ; yyj1720++ { - if yyhl1720 { - if yyj1720 >= l { + var yys1725Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1725Slc + var yyhl1725 bool = l >= 0 + for yyj1725 := 0; ; yyj1725++ { + if yyhl1725 { + if yyj1725 >= l { break } } else { @@ -22599,10 +22647,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1720Slc = r.DecodeBytes(yys1720Slc, true, true) - yys1720 := string(yys1720Slc) + yys1725Slc = r.DecodeBytes(yys1725Slc, true, true) + yys1725 := string(yys1725Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1720 { + switch yys1725 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22619,31 +22667,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1723 := &x.ListMeta - yym1724 := z.DecBinary() - _ = yym1724 + yyv1728 := &x.ListMeta + yym1729 := z.DecBinary() + _ = yym1729 if false { - } else if z.HasExtensions() && z.DecExt(yyv1723) { + } else if z.HasExtensions() && z.DecExt(yyv1728) { } else { - z.DecFallback(yyv1723, false) + z.DecFallback(yyv1728, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1725 := &x.Items - yym1726 := z.DecBinary() - _ = yym1726 + yyv1730 := &x.Items + yym1731 := z.DecBinary() + _ = yym1731 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1725), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1730), d) } } default: - z.DecStructFieldNotFound(-1, yys1720) - } // end switch yys1720 - } // end for yyj1720 + z.DecStructFieldNotFound(-1, yys1725) + } // end switch yys1725 + } // end for yyj1725 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22651,16 +22699,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1727 int - var yyb1727 bool - var yyhl1727 bool = l >= 0 - yyj1727++ - if yyhl1727 { - yyb1727 = yyj1727 > l + var yyj1732 int + var yyb1732 bool + var yyhl1732 bool = l >= 0 + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1727 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1727 { + if yyb1732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22670,13 +22718,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1727++ - if yyhl1727 { - yyb1727 = yyj1727 > l + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1727 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1727 { + if yyb1732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22686,13 +22734,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1727++ - if yyhl1727 { - yyb1727 = yyj1727 > l + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1727 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1727 { + if yyb1732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22700,22 +22748,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1730 := &x.ListMeta - yym1731 := z.DecBinary() - _ = yym1731 + yyv1735 := &x.ListMeta + yym1736 := z.DecBinary() + _ = yym1736 if false { - } else if z.HasExtensions() && z.DecExt(yyv1730) { + } else if z.HasExtensions() && z.DecExt(yyv1735) { } else { - z.DecFallback(yyv1730, false) + z.DecFallback(yyv1735, false) } } - yyj1727++ - if yyhl1727 { - yyb1727 = yyj1727 > l + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1727 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1727 { + if yyb1732 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22723,26 +22771,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1732 := &x.Items - yym1733 := z.DecBinary() - _ = yym1733 + yyv1737 := &x.Items + yym1738 := z.DecBinary() + _ = yym1738 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1732), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1737), d) } } for { - yyj1727++ - if yyhl1727 { - yyb1727 = yyj1727 > l + yyj1732++ + if yyhl1732 { + yyb1732 = yyj1732 > l } else { - yyb1727 = r.CheckBreak() + yyb1732 = r.CheckBreak() } - if yyb1727 { + if yyb1732 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1727-1, "") + z.DecStructFieldNotFound(yyj1732-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22754,34 +22802,34 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1734 := z.EncBinary() - _ = yym1734 + yym1739 := z.EncBinary() + _ = yym1739 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1735 := !z.EncBinary() - yy2arr1735 := z.EncBasicHandle().StructToArray - var yyq1735 [3]bool - _, _, _ = yysep1735, yyq1735, yy2arr1735 - const yyr1735 bool = false - yyq1735[2] = x.Template != nil - var yynn1735 int - if yyr1735 || yy2arr1735 { + yysep1740 := !z.EncBinary() + yy2arr1740 := z.EncBasicHandle().StructToArray + var yyq1740 [3]bool + _, _, _ = yysep1740, yyq1740, yy2arr1740 + const yyr1740 bool = false + yyq1740[2] = x.Template != nil + var yynn1740 int + if yyr1740 || yy2arr1740 { r.EncodeArrayStart(3) } else { - yynn1735 = 2 - for _, b := range yyq1735 { + yynn1740 = 2 + for _, b := range yyq1740 { if b { - yynn1735++ + yynn1740++ } } - r.EncodeMapStart(yynn1735) - yynn1735 = 0 + r.EncodeMapStart(yynn1740) + yynn1740 = 0 } - if yyr1735 || yy2arr1735 { + if yyr1740 || yy2arr1740 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1737 := z.EncBinary() - _ = yym1737 + yym1742 := z.EncBinary() + _ = yym1742 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -22790,20 +22838,20 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1738 := z.EncBinary() - _ = yym1738 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1735 || yy2arr1735 { + if yyr1740 || yy2arr1740 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym1740 := z.EncBinary() - _ = yym1740 + yym1745 := z.EncBinary() + _ = yym1745 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -22816,17 +22864,17 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym1741 := z.EncBinary() - _ = yym1741 + yym1746 := z.EncBinary() + _ = yym1746 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr1735 || yy2arr1735 { + if yyr1740 || yy2arr1740 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1735[2] { + if yyq1740[2] { if x.Template == nil { r.EncodeNil() } else { @@ -22836,7 +22884,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1735[2] { + if yyq1740[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22847,7 +22895,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1735 || yy2arr1735 { + if yyr1740 || yy2arr1740 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22860,25 +22908,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1743 := z.DecBinary() - _ = yym1743 + yym1748 := z.DecBinary() + _ = yym1748 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1744 := r.ContainerType() - if yyct1744 == codecSelferValueTypeMap1234 { - yyl1744 := r.ReadMapStart() - if yyl1744 == 0 { + yyct1749 := r.ContainerType() + if yyct1749 == codecSelferValueTypeMap1234 { + yyl1749 := r.ReadMapStart() + if yyl1749 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1744, d) + x.codecDecodeSelfFromMap(yyl1749, d) } - } else if yyct1744 == codecSelferValueTypeArray1234 { - yyl1744 := r.ReadArrayStart() - if yyl1744 == 0 { + } else if yyct1749 == codecSelferValueTypeArray1234 { + yyl1749 := r.ReadArrayStart() + if yyl1749 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1744, d) + x.codecDecodeSelfFromArray(yyl1749, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22890,12 +22938,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1745Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1745Slc - var yyhl1745 bool = l >= 0 - for yyj1745 := 0; ; yyj1745++ { - if yyhl1745 { - if yyj1745 >= l { + var yys1750Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1750Slc + var yyhl1750 bool = l >= 0 + for yyj1750 := 0; ; yyj1750++ { + if yyhl1750 { + if yyj1750 >= l { break } } else { @@ -22904,10 +22952,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1745Slc = r.DecodeBytes(yys1745Slc, true, true) - yys1745 := string(yys1745Slc) + yys1750Slc = r.DecodeBytes(yys1750Slc, true, true) + yys1750 := string(yys1750Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1745 { + switch yys1750 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -22918,12 +22966,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1747 := &x.Selector - yym1748 := z.DecBinary() - _ = yym1748 + yyv1752 := &x.Selector + yym1753 := z.DecBinary() + _ = yym1753 if false { } else { - z.F.DecMapStringStringX(yyv1747, false, d) + z.F.DecMapStringStringX(yyv1752, false, d) } } case "template": @@ -22938,9 +22986,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1745) - } // end switch yys1745 - } // end for yyj1745 + z.DecStructFieldNotFound(-1, yys1750) + } // end switch yys1750 + } // end for yyj1750 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22948,16 +22996,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1750 int - var yyb1750 bool - var yyhl1750 bool = l >= 0 - yyj1750++ - if yyhl1750 { - yyb1750 = yyj1750 > l + var yyj1755 int + var yyb1755 bool + var yyhl1755 bool = l >= 0 + yyj1755++ + if yyhl1755 { + yyb1755 = yyj1755 > l } else { - yyb1750 = r.CheckBreak() + yyb1755 = r.CheckBreak() } - if yyb1750 { + if yyb1755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22967,13 +23015,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1750++ - if yyhl1750 { - yyb1750 = yyj1750 > l + yyj1755++ + if yyhl1755 { + yyb1755 = yyj1755 > l } else { - yyb1750 = r.CheckBreak() + yyb1755 = r.CheckBreak() } - if yyb1750 { + if yyb1755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22981,21 +23029,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1752 := &x.Selector - yym1753 := z.DecBinary() - _ = yym1753 + yyv1757 := &x.Selector + yym1758 := z.DecBinary() + _ = yym1758 if false { } else { - z.F.DecMapStringStringX(yyv1752, false, d) + z.F.DecMapStringStringX(yyv1757, false, d) } } - yyj1750++ - if yyhl1750 { - yyb1750 = yyj1750 > l + yyj1755++ + if yyhl1755 { + yyb1755 = yyj1755 > l } else { - yyb1750 = r.CheckBreak() + yyb1755 = r.CheckBreak() } - if yyb1750 { + if yyb1755 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23011,17 +23059,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj1750++ - if yyhl1750 { - yyb1750 = yyj1750 > l + yyj1755++ + if yyhl1755 { + yyb1755 = yyj1755 > l } else { - yyb1750 = r.CheckBreak() + yyb1755 = r.CheckBreak() } - if yyb1750 { + if yyb1755 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1750-1, "") + z.DecStructFieldNotFound(yyj1755-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23033,34 +23081,34 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1755 := z.EncBinary() - _ = yym1755 + yym1760 := z.EncBinary() + _ = yym1760 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1756 := !z.EncBinary() - yy2arr1756 := z.EncBasicHandle().StructToArray - var yyq1756 [2]bool - _, _, _ = yysep1756, yyq1756, yy2arr1756 - const yyr1756 bool = false - yyq1756[1] = x.ObservedGeneration != 0 - var yynn1756 int - if yyr1756 || yy2arr1756 { + yysep1761 := !z.EncBinary() + yy2arr1761 := z.EncBasicHandle().StructToArray + var yyq1761 [2]bool + _, _, _ = yysep1761, yyq1761, yy2arr1761 + const yyr1761 bool = false + yyq1761[1] = x.ObservedGeneration != 0 + var yynn1761 int + if yyr1761 || yy2arr1761 { r.EncodeArrayStart(2) } else { - yynn1756 = 1 - for _, b := range yyq1756 { + yynn1761 = 1 + for _, b := range yyq1761 { if b { - yynn1756++ + yynn1761++ } } - r.EncodeMapStart(yynn1756) - yynn1756 = 0 + r.EncodeMapStart(yynn1761) + yynn1761 = 0 } - if yyr1756 || yy2arr1756 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1758 := z.EncBinary() - _ = yym1758 + yym1763 := z.EncBinary() + _ = yym1763 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -23069,18 +23117,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1759 := z.EncBinary() - _ = yym1759 + yym1764 := z.EncBinary() + _ = yym1764 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1756 || yy2arr1756 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1756[1] { - yym1761 := z.EncBinary() - _ = yym1761 + if yyq1761[1] { + yym1766 := z.EncBinary() + _ = yym1766 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -23089,19 +23137,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1756[1] { + if yyq1761[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1762 := z.EncBinary() - _ = yym1762 + yym1767 := z.EncBinary() + _ = yym1767 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1756 || yy2arr1756 { + if yyr1761 || yy2arr1761 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23114,25 +23162,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1763 := z.DecBinary() - _ = yym1763 + yym1768 := z.DecBinary() + _ = yym1768 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1764 := r.ContainerType() - if yyct1764 == codecSelferValueTypeMap1234 { - yyl1764 := r.ReadMapStart() - if yyl1764 == 0 { + yyct1769 := r.ContainerType() + if yyct1769 == codecSelferValueTypeMap1234 { + yyl1769 := r.ReadMapStart() + if yyl1769 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1764, d) + x.codecDecodeSelfFromMap(yyl1769, d) } - } else if yyct1764 == codecSelferValueTypeArray1234 { - yyl1764 := r.ReadArrayStart() - if yyl1764 == 0 { + } else if yyct1769 == codecSelferValueTypeArray1234 { + yyl1769 := r.ReadArrayStart() + if yyl1769 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1764, d) + x.codecDecodeSelfFromArray(yyl1769, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23144,12 +23192,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1765Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1765Slc - var yyhl1765 bool = l >= 0 - for yyj1765 := 0; ; yyj1765++ { - if yyhl1765 { - if yyj1765 >= l { + var yys1770Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1770Slc + var yyhl1770 bool = l >= 0 + for yyj1770 := 0; ; yyj1770++ { + if yyhl1770 { + if yyj1770 >= l { break } } else { @@ -23158,10 +23206,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1765Slc = r.DecodeBytes(yys1765Slc, true, true) - yys1765 := string(yys1765Slc) + yys1770Slc = r.DecodeBytes(yys1770Slc, true, true) + yys1770 := string(yys1770Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1765 { + switch yys1770 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -23175,9 +23223,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1765) - } // end switch yys1765 - } // end for yyj1765 + z.DecStructFieldNotFound(-1, yys1770) + } // end switch yys1770 + } // end for yyj1770 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23185,16 +23233,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1768 int - var yyb1768 bool - var yyhl1768 bool = l >= 0 - yyj1768++ - if yyhl1768 { - yyb1768 = yyj1768 > l + var yyj1773 int + var yyb1773 bool + var yyhl1773 bool = l >= 0 + yyj1773++ + if yyhl1773 { + yyb1773 = yyj1773 > l } else { - yyb1768 = r.CheckBreak() + yyb1773 = r.CheckBreak() } - if yyb1768 { + if yyb1773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23204,13 +23252,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1768++ - if yyhl1768 { - yyb1768 = yyj1768 > l + yyj1773++ + if yyhl1773 { + yyb1773 = yyj1773 > l } else { - yyb1768 = r.CheckBreak() + yyb1773 = r.CheckBreak() } - if yyb1768 { + if yyb1773 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23221,17 +23269,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj1768++ - if yyhl1768 { - yyb1768 = yyj1768 > l + yyj1773++ + if yyhl1773 { + yyb1773 = yyj1773 > l } else { - yyb1768 = r.CheckBreak() + yyb1773 = r.CheckBreak() } - if yyb1768 { + if yyb1773 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1768-1, "") + z.DecStructFieldNotFound(yyj1773-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23243,39 +23291,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1771 := z.EncBinary() - _ = yym1771 + yym1776 := z.EncBinary() + _ = yym1776 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1772 := !z.EncBinary() - yy2arr1772 := z.EncBasicHandle().StructToArray - var yyq1772 [5]bool - _, _, _ = yysep1772, yyq1772, yy2arr1772 - const yyr1772 bool = false - yyq1772[0] = x.Kind != "" - yyq1772[1] = x.APIVersion != "" - yyq1772[2] = true - yyq1772[3] = true - yyq1772[4] = true - var yynn1772 int - if yyr1772 || yy2arr1772 { + yysep1777 := !z.EncBinary() + yy2arr1777 := z.EncBasicHandle().StructToArray + var yyq1777 [5]bool + _, _, _ = yysep1777, yyq1777, yy2arr1777 + const yyr1777 bool = false + yyq1777[0] = x.Kind != "" + yyq1777[1] = x.APIVersion != "" + yyq1777[2] = true + yyq1777[3] = true + yyq1777[4] = true + var yynn1777 int + if yyr1777 || yy2arr1777 { r.EncodeArrayStart(5) } else { - yynn1772 = 0 - for _, b := range yyq1772 { + yynn1777 = 0 + for _, b := range yyq1777 { if b { - yynn1772++ + yynn1777++ } } - r.EncodeMapStart(yynn1772) - yynn1772 = 0 + r.EncodeMapStart(yynn1777) + yynn1777 = 0 } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1772[0] { - yym1774 := z.EncBinary() - _ = yym1774 + if yyq1777[0] { + yym1779 := z.EncBinary() + _ = yym1779 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23284,23 +23332,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1772[0] { + if yyq1777[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1775 := z.EncBinary() - _ = yym1775 + yym1780 := z.EncBinary() + _ = yym1780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1772[1] { - yym1777 := z.EncBinary() - _ = yym1777 + if yyq1777[1] { + yym1782 := z.EncBinary() + _ = yym1782 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23309,70 +23357,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1772[1] { + if yyq1777[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1778 := z.EncBinary() - _ = yym1778 + yym1783 := z.EncBinary() + _ = yym1783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1772[2] { - yy1780 := &x.ObjectMeta - yy1780.CodecEncodeSelf(e) + if yyq1777[2] { + yy1785 := &x.ObjectMeta + yy1785.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1772[2] { + if yyq1777[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1781 := &x.ObjectMeta - yy1781.CodecEncodeSelf(e) + yy1786 := &x.ObjectMeta + yy1786.CodecEncodeSelf(e) } } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1772[3] { - yy1783 := &x.Spec - yy1783.CodecEncodeSelf(e) + if yyq1777[3] { + yy1788 := &x.Spec + yy1788.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1772[3] { + if yyq1777[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1784 := &x.Spec - yy1784.CodecEncodeSelf(e) + yy1789 := &x.Spec + yy1789.CodecEncodeSelf(e) } } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1772[4] { - yy1786 := &x.Status - yy1786.CodecEncodeSelf(e) + if yyq1777[4] { + yy1791 := &x.Status + yy1791.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1772[4] { + if yyq1777[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1787 := &x.Status - yy1787.CodecEncodeSelf(e) + yy1792 := &x.Status + yy1792.CodecEncodeSelf(e) } } - if yyr1772 || yy2arr1772 { + if yyr1777 || yy2arr1777 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23385,25 +23433,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1788 := z.DecBinary() - _ = yym1788 + yym1793 := z.DecBinary() + _ = yym1793 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1789 := r.ContainerType() - if yyct1789 == codecSelferValueTypeMap1234 { - yyl1789 := r.ReadMapStart() - if yyl1789 == 0 { + yyct1794 := r.ContainerType() + if yyct1794 == codecSelferValueTypeMap1234 { + yyl1794 := r.ReadMapStart() + if yyl1794 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1789, d) + x.codecDecodeSelfFromMap(yyl1794, d) } - } else if yyct1789 == codecSelferValueTypeArray1234 { - yyl1789 := r.ReadArrayStart() - if yyl1789 == 0 { + } else if yyct1794 == codecSelferValueTypeArray1234 { + yyl1794 := r.ReadArrayStart() + if yyl1794 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1789, d) + x.codecDecodeSelfFromArray(yyl1794, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23415,12 +23463,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1790Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1790Slc - var yyhl1790 bool = l >= 0 - for yyj1790 := 0; ; yyj1790++ { - if yyhl1790 { - if yyj1790 >= l { + var yys1795Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1795Slc + var yyhl1795 bool = l >= 0 + for yyj1795 := 0; ; yyj1795++ { + if yyhl1795 { + if yyj1795 >= l { break } } else { @@ -23429,10 +23477,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1790Slc = r.DecodeBytes(yys1790Slc, true, true) - yys1790 := string(yys1790Slc) + yys1795Slc = r.DecodeBytes(yys1795Slc, true, true) + yys1795 := string(yys1795Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1790 { + switch yys1795 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23449,27 +23497,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1793 := &x.ObjectMeta - yyv1793.CodecDecodeSelf(d) + yyv1798 := &x.ObjectMeta + yyv1798.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1794 := &x.Spec - yyv1794.CodecDecodeSelf(d) + yyv1799 := &x.Spec + yyv1799.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1795 := &x.Status - yyv1795.CodecDecodeSelf(d) + yyv1800 := &x.Status + yyv1800.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1790) - } // end switch yys1790 - } // end for yyj1790 + z.DecStructFieldNotFound(-1, yys1795) + } // end switch yys1795 + } // end for yyj1795 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23477,16 +23525,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1796 int - var yyb1796 bool - var yyhl1796 bool = l >= 0 - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + var yyj1801 int + var yyb1801 bool + var yyhl1801 bool = l >= 0 + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23496,13 +23544,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23512,13 +23560,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23526,16 +23574,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1799 := &x.ObjectMeta - yyv1799.CodecDecodeSelf(d) + yyv1804 := &x.ObjectMeta + yyv1804.CodecDecodeSelf(d) } - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23543,16 +23591,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1800 := &x.Spec - yyv1800.CodecDecodeSelf(d) + yyv1805 := &x.Spec + yyv1805.CodecDecodeSelf(d) } - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23560,21 +23608,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1801 := &x.Status - yyv1801.CodecDecodeSelf(d) + yyv1806 := &x.Status + yyv1806.CodecDecodeSelf(d) } for { - yyj1796++ - if yyhl1796 { - yyb1796 = yyj1796 > l + yyj1801++ + if yyhl1801 { + yyb1801 = yyj1801 > l } else { - yyb1796 = r.CheckBreak() + yyb1801 = r.CheckBreak() } - if yyb1796 { + if yyb1801 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1796-1, "") + z.DecStructFieldNotFound(yyj1801-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23586,37 +23634,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1802 := z.EncBinary() - _ = yym1802 + yym1807 := z.EncBinary() + _ = yym1807 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1803 := !z.EncBinary() - yy2arr1803 := z.EncBasicHandle().StructToArray - var yyq1803 [4]bool - _, _, _ = yysep1803, yyq1803, yy2arr1803 - const yyr1803 bool = false - yyq1803[0] = x.Kind != "" - yyq1803[1] = x.APIVersion != "" - yyq1803[2] = true - var yynn1803 int - if yyr1803 || yy2arr1803 { + yysep1808 := !z.EncBinary() + yy2arr1808 := z.EncBasicHandle().StructToArray + var yyq1808 [4]bool + _, _, _ = yysep1808, yyq1808, yy2arr1808 + const yyr1808 bool = false + yyq1808[0] = x.Kind != "" + yyq1808[1] = x.APIVersion != "" + yyq1808[2] = true + var yynn1808 int + if yyr1808 || yy2arr1808 { r.EncodeArrayStart(4) } else { - yynn1803 = 1 - for _, b := range yyq1803 { + yynn1808 = 1 + for _, b := range yyq1808 { if b { - yynn1803++ + yynn1808++ } } - r.EncodeMapStart(yynn1803) - yynn1803 = 0 + r.EncodeMapStart(yynn1808) + yynn1808 = 0 } - if yyr1803 || yy2arr1803 { + if yyr1808 || yy2arr1808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1803[0] { - yym1805 := z.EncBinary() - _ = yym1805 + if yyq1808[0] { + yym1810 := z.EncBinary() + _ = yym1810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23625,23 +23673,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1803[0] { + if yyq1808[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1806 := z.EncBinary() - _ = yym1806 + yym1811 := z.EncBinary() + _ = yym1811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1803 || yy2arr1803 { + if yyr1808 || yy2arr1808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1803[1] { - yym1808 := z.EncBinary() - _ = yym1808 + if yyq1808[1] { + yym1813 := z.EncBinary() + _ = yym1813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23650,54 +23698,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1803[1] { + if yyq1808[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1809 := z.EncBinary() - _ = yym1809 + yym1814 := z.EncBinary() + _ = yym1814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1803 || yy2arr1803 { + if yyr1808 || yy2arr1808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1803[2] { - yy1811 := &x.ListMeta - yym1812 := z.EncBinary() - _ = yym1812 + if yyq1808[2] { + yy1816 := &x.ListMeta + yym1817 := z.EncBinary() + _ = yym1817 if false { - } else if z.HasExtensions() && z.EncExt(yy1811) { + } else if z.HasExtensions() && z.EncExt(yy1816) { } else { - z.EncFallback(yy1811) + z.EncFallback(yy1816) } } else { r.EncodeNil() } } else { - if yyq1803[2] { + if yyq1808[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1813 := &x.ListMeta - yym1814 := z.EncBinary() - _ = yym1814 + yy1818 := &x.ListMeta + yym1819 := z.EncBinary() + _ = yym1819 if false { - } else if z.HasExtensions() && z.EncExt(yy1813) { + } else if z.HasExtensions() && z.EncExt(yy1818) { } else { - z.EncFallback(yy1813) + z.EncFallback(yy1818) } } } - if yyr1803 || yy2arr1803 { + if yyr1808 || yy2arr1808 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1816 := z.EncBinary() - _ = yym1816 + yym1821 := z.EncBinary() + _ = yym1821 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -23710,15 +23758,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1817 := z.EncBinary() - _ = yym1817 + yym1822 := z.EncBinary() + _ = yym1822 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1803 || yy2arr1803 { + if yyr1808 || yy2arr1808 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23731,25 +23779,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1818 := z.DecBinary() - _ = yym1818 + yym1823 := z.DecBinary() + _ = yym1823 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1819 := r.ContainerType() - if yyct1819 == codecSelferValueTypeMap1234 { - yyl1819 := r.ReadMapStart() - if yyl1819 == 0 { + yyct1824 := r.ContainerType() + if yyct1824 == codecSelferValueTypeMap1234 { + yyl1824 := r.ReadMapStart() + if yyl1824 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1819, d) + x.codecDecodeSelfFromMap(yyl1824, d) } - } else if yyct1819 == codecSelferValueTypeArray1234 { - yyl1819 := r.ReadArrayStart() - if yyl1819 == 0 { + } else if yyct1824 == codecSelferValueTypeArray1234 { + yyl1824 := r.ReadArrayStart() + if yyl1824 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1819, d) + x.codecDecodeSelfFromArray(yyl1824, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23761,12 +23809,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1820Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1820Slc - var yyhl1820 bool = l >= 0 - for yyj1820 := 0; ; yyj1820++ { - if yyhl1820 { - if yyj1820 >= l { + var yys1825Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1825Slc + var yyhl1825 bool = l >= 0 + for yyj1825 := 0; ; yyj1825++ { + if yyhl1825 { + if yyj1825 >= l { break } } else { @@ -23775,10 +23823,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1820Slc = r.DecodeBytes(yys1820Slc, true, true) - yys1820 := string(yys1820Slc) + yys1825Slc = r.DecodeBytes(yys1825Slc, true, true) + yys1825 := string(yys1825Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1820 { + switch yys1825 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23795,31 +23843,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1823 := &x.ListMeta - yym1824 := z.DecBinary() - _ = yym1824 + yyv1828 := &x.ListMeta + yym1829 := z.DecBinary() + _ = yym1829 if false { - } else if z.HasExtensions() && z.DecExt(yyv1823) { + } else if z.HasExtensions() && z.DecExt(yyv1828) { } else { - z.DecFallback(yyv1823, false) + z.DecFallback(yyv1828, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1825 := &x.Items - yym1826 := z.DecBinary() - _ = yym1826 + yyv1830 := &x.Items + yym1831 := z.DecBinary() + _ = yym1831 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1825), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1830), d) } } default: - z.DecStructFieldNotFound(-1, yys1820) - } // end switch yys1820 - } // end for yyj1820 + z.DecStructFieldNotFound(-1, yys1825) + } // end switch yys1825 + } // end for yyj1825 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23827,16 +23875,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1827 int - var yyb1827 bool - var yyhl1827 bool = l >= 0 - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + var yyj1832 int + var yyb1832 bool + var yyhl1832 bool = l >= 0 + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23846,13 +23894,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23862,13 +23910,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23876,22 +23924,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1830 := &x.ListMeta - yym1831 := z.DecBinary() - _ = yym1831 + yyv1835 := &x.ListMeta + yym1836 := z.DecBinary() + _ = yym1836 if false { - } else if z.HasExtensions() && z.DecExt(yyv1830) { + } else if z.HasExtensions() && z.DecExt(yyv1835) { } else { - z.DecFallback(yyv1830, false) + z.DecFallback(yyv1835, false) } } - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23899,26 +23947,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1832 := &x.Items - yym1833 := z.DecBinary() - _ = yym1833 + yyv1837 := &x.Items + yym1838 := z.DecBinary() + _ = yym1838 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1832), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1837), d) } } for { - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1827-1, "") + z.DecStructFieldNotFound(yyj1832-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23930,37 +23978,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1834 := z.EncBinary() - _ = yym1834 + yym1839 := z.EncBinary() + _ = yym1839 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1835 := !z.EncBinary() - yy2arr1835 := z.EncBasicHandle().StructToArray - var yyq1835 [4]bool - _, _, _ = yysep1835, yyq1835, yy2arr1835 - const yyr1835 bool = false - yyq1835[0] = x.Kind != "" - yyq1835[1] = x.APIVersion != "" - yyq1835[2] = true - var yynn1835 int - if yyr1835 || yy2arr1835 { + yysep1840 := !z.EncBinary() + yy2arr1840 := z.EncBasicHandle().StructToArray + var yyq1840 [4]bool + _, _, _ = yysep1840, yyq1840, yy2arr1840 + const yyr1840 bool = false + yyq1840[0] = x.Kind != "" + yyq1840[1] = x.APIVersion != "" + yyq1840[2] = true + var yynn1840 int + if yyr1840 || yy2arr1840 { r.EncodeArrayStart(4) } else { - yynn1835 = 1 - for _, b := range yyq1835 { + yynn1840 = 1 + for _, b := range yyq1840 { if b { - yynn1835++ + yynn1840++ } } - r.EncodeMapStart(yynn1835) - yynn1835 = 0 + r.EncodeMapStart(yynn1840) + yynn1840 = 0 } - if yyr1835 || yy2arr1835 { + if yyr1840 || yy2arr1840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1835[0] { - yym1837 := z.EncBinary() - _ = yym1837 + if yyq1840[0] { + yym1842 := z.EncBinary() + _ = yym1842 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23969,23 +24017,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1835[0] { + if yyq1840[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1838 := z.EncBinary() - _ = yym1838 + yym1843 := z.EncBinary() + _ = yym1843 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1835 || yy2arr1835 { + if yyr1840 || yy2arr1840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1835[1] { - yym1840 := z.EncBinary() - _ = yym1840 + if yyq1840[1] { + yym1845 := z.EncBinary() + _ = yym1845 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23994,54 +24042,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1835[1] { + if yyq1840[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1841 := z.EncBinary() - _ = yym1841 + yym1846 := z.EncBinary() + _ = yym1846 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1835 || yy2arr1835 { + if yyr1840 || yy2arr1840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1835[2] { - yy1843 := &x.ListMeta - yym1844 := z.EncBinary() - _ = yym1844 + if yyq1840[2] { + yy1848 := &x.ListMeta + yym1849 := z.EncBinary() + _ = yym1849 if false { - } else if z.HasExtensions() && z.EncExt(yy1843) { + } else if z.HasExtensions() && z.EncExt(yy1848) { } else { - z.EncFallback(yy1843) + z.EncFallback(yy1848) } } else { r.EncodeNil() } } else { - if yyq1835[2] { + if yyq1840[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1845 := &x.ListMeta - yym1846 := z.EncBinary() - _ = yym1846 + yy1850 := &x.ListMeta + yym1851 := z.EncBinary() + _ = yym1851 if false { - } else if z.HasExtensions() && z.EncExt(yy1845) { + } else if z.HasExtensions() && z.EncExt(yy1850) { } else { - z.EncFallback(yy1845) + z.EncFallback(yy1850) } } } - if yyr1835 || yy2arr1835 { + if yyr1840 || yy2arr1840 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1848 := z.EncBinary() - _ = yym1848 + yym1853 := z.EncBinary() + _ = yym1853 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -24054,15 +24102,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1849 := z.EncBinary() - _ = yym1849 + yym1854 := z.EncBinary() + _ = yym1854 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr1835 || yy2arr1835 { + if yyr1840 || yy2arr1840 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24075,25 +24123,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1850 := z.DecBinary() - _ = yym1850 + yym1855 := z.DecBinary() + _ = yym1855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1851 := r.ContainerType() - if yyct1851 == codecSelferValueTypeMap1234 { - yyl1851 := r.ReadMapStart() - if yyl1851 == 0 { + yyct1856 := r.ContainerType() + if yyct1856 == codecSelferValueTypeMap1234 { + yyl1856 := r.ReadMapStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1851, d) + x.codecDecodeSelfFromMap(yyl1856, d) } - } else if yyct1851 == codecSelferValueTypeArray1234 { - yyl1851 := r.ReadArrayStart() - if yyl1851 == 0 { + } else if yyct1856 == codecSelferValueTypeArray1234 { + yyl1856 := r.ReadArrayStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1851, d) + x.codecDecodeSelfFromArray(yyl1856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24105,12 +24153,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1852Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1852Slc - var yyhl1852 bool = l >= 0 - for yyj1852 := 0; ; yyj1852++ { - if yyhl1852 { - if yyj1852 >= 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 { @@ -24119,10 +24167,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1852Slc = r.DecodeBytes(yys1852Slc, true, true) - yys1852 := string(yys1852Slc) + yys1857Slc = r.DecodeBytes(yys1857Slc, true, true) + yys1857 := string(yys1857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1852 { + switch yys1857 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -24139,31 +24187,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1855 := &x.ListMeta - yym1856 := z.DecBinary() - _ = yym1856 + yyv1860 := &x.ListMeta + yym1861 := z.DecBinary() + _ = yym1861 if false { - } else if z.HasExtensions() && z.DecExt(yyv1855) { + } else if z.HasExtensions() && z.DecExt(yyv1860) { } else { - z.DecFallback(yyv1855, false) + z.DecFallback(yyv1860, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1857 := &x.Items - yym1858 := z.DecBinary() - _ = yym1858 + yyv1862 := &x.Items + yym1863 := z.DecBinary() + _ = yym1863 if false { } else { - h.decSliceService((*[]Service)(yyv1857), d) + h.decSliceService((*[]Service)(yyv1862), d) } } default: - z.DecStructFieldNotFound(-1, yys1852) - } // end switch yys1852 - } // end for yyj1852 + z.DecStructFieldNotFound(-1, yys1857) + } // end switch yys1857 + } // end for yyj1857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24171,16 +24219,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1859 int - var yyb1859 bool - var yyhl1859 bool = l >= 0 - yyj1859++ - if yyhl1859 { - yyb1859 = yyj1859 > l + var yyj1864 int + var yyb1864 bool + var yyhl1864 bool = l >= 0 + yyj1864++ + if yyhl1864 { + yyb1864 = yyj1864 > l } else { - yyb1859 = r.CheckBreak() + yyb1864 = r.CheckBreak() } - if yyb1859 { + if yyb1864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24190,13 +24238,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1859++ - if yyhl1859 { - yyb1859 = yyj1859 > l + yyj1864++ + if yyhl1864 { + yyb1864 = yyj1864 > l } else { - yyb1859 = r.CheckBreak() + yyb1864 = r.CheckBreak() } - if yyb1859 { + if yyb1864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24206,13 +24254,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1859++ - if yyhl1859 { - yyb1859 = yyj1859 > l + yyj1864++ + if yyhl1864 { + yyb1864 = yyj1864 > l } else { - yyb1859 = r.CheckBreak() + yyb1864 = r.CheckBreak() } - if yyb1859 { + if yyb1864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24220,22 +24268,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1862 := &x.ListMeta - yym1863 := z.DecBinary() - _ = yym1863 + yyv1867 := &x.ListMeta + yym1868 := z.DecBinary() + _ = yym1868 if false { - } else if z.HasExtensions() && z.DecExt(yyv1862) { + } else if z.HasExtensions() && z.DecExt(yyv1867) { } else { - z.DecFallback(yyv1862, false) + z.DecFallback(yyv1867, false) } } - yyj1859++ - if yyhl1859 { - yyb1859 = yyj1859 > l + yyj1864++ + if yyhl1864 { + yyb1864 = yyj1864 > l } else { - yyb1859 = r.CheckBreak() + yyb1864 = r.CheckBreak() } - if yyb1859 { + if yyb1864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24243,26 +24291,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1864 := &x.Items - yym1865 := z.DecBinary() - _ = yym1865 + yyv1869 := &x.Items + yym1870 := z.DecBinary() + _ = yym1870 if false { } else { - h.decSliceService((*[]Service)(yyv1864), d) + h.decSliceService((*[]Service)(yyv1869), d) } } for { - yyj1859++ - if yyhl1859 { - yyb1859 = yyj1859 > l + yyj1864++ + if yyhl1864 { + yyb1864 = yyj1864 > l } else { - yyb1859 = r.CheckBreak() + yyb1864 = r.CheckBreak() } - if yyb1859 { + if yyb1864 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1859-1, "") + z.DecStructFieldNotFound(yyj1864-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24271,8 +24319,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1866 := z.EncBinary() - _ = yym1866 + yym1871 := z.EncBinary() + _ = yym1871 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24284,8 +24332,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1867 := z.DecBinary() - _ = yym1867 + yym1872 := z.DecBinary() + _ = yym1872 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24297,8 +24345,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1868 := z.EncBinary() - _ = yym1868 + yym1873 := z.EncBinary() + _ = yym1873 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -24310,8 +24358,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1869 := z.DecBinary() - _ = yym1869 + yym1874 := z.DecBinary() + _ = yym1874 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -24326,48 +24374,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1870 := z.EncBinary() - _ = yym1870 + yym1875 := z.EncBinary() + _ = yym1875 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1871 := !z.EncBinary() - yy2arr1871 := z.EncBasicHandle().StructToArray - var yyq1871 [1]bool - _, _, _ = yysep1871, yyq1871, yy2arr1871 - const yyr1871 bool = false - yyq1871[0] = true - var yynn1871 int - if yyr1871 || yy2arr1871 { + yysep1876 := !z.EncBinary() + yy2arr1876 := z.EncBasicHandle().StructToArray + var yyq1876 [1]bool + _, _, _ = yysep1876, yyq1876, yy2arr1876 + const yyr1876 bool = false + yyq1876[0] = true + var yynn1876 int + if yyr1876 || yy2arr1876 { r.EncodeArrayStart(1) } else { - yynn1871 = 0 - for _, b := range yyq1871 { + yynn1876 = 0 + for _, b := range yyq1876 { if b { - yynn1871++ + yynn1876++ } } - r.EncodeMapStart(yynn1871) - yynn1871 = 0 + r.EncodeMapStart(yynn1876) + yynn1876 = 0 } - if yyr1871 || yy2arr1871 { + if yyr1876 || yy2arr1876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1871[0] { - yy1873 := &x.LoadBalancer - yy1873.CodecEncodeSelf(e) + if yyq1876[0] { + yy1878 := &x.LoadBalancer + yy1878.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1871[0] { + if yyq1876[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1874 := &x.LoadBalancer - yy1874.CodecEncodeSelf(e) + yy1879 := &x.LoadBalancer + yy1879.CodecEncodeSelf(e) } } - if yyr1871 || yy2arr1871 { + if yyr1876 || yy2arr1876 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24380,25 +24428,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1875 := z.DecBinary() - _ = yym1875 + yym1880 := z.DecBinary() + _ = yym1880 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1876 := r.ContainerType() - if yyct1876 == codecSelferValueTypeMap1234 { - yyl1876 := r.ReadMapStart() - if yyl1876 == 0 { + yyct1881 := r.ContainerType() + if yyct1881 == codecSelferValueTypeMap1234 { + yyl1881 := r.ReadMapStart() + if yyl1881 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1876, d) + x.codecDecodeSelfFromMap(yyl1881, d) } - } else if yyct1876 == codecSelferValueTypeArray1234 { - yyl1876 := r.ReadArrayStart() - if yyl1876 == 0 { + } else if yyct1881 == codecSelferValueTypeArray1234 { + yyl1881 := r.ReadArrayStart() + if yyl1881 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1876, d) + x.codecDecodeSelfFromArray(yyl1881, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24410,12 +24458,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1877Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1877Slc - var yyhl1877 bool = l >= 0 - for yyj1877 := 0; ; yyj1877++ { - if yyhl1877 { - if yyj1877 >= l { + var yys1882Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1882Slc + var yyhl1882 bool = l >= 0 + for yyj1882 := 0; ; yyj1882++ { + if yyhl1882 { + if yyj1882 >= l { break } } else { @@ -24424,21 +24472,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1877Slc = r.DecodeBytes(yys1877Slc, true, true) - yys1877 := string(yys1877Slc) + yys1882Slc = r.DecodeBytes(yys1882Slc, true, true) + yys1882 := string(yys1882Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1877 { + switch yys1882 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1878 := &x.LoadBalancer - yyv1878.CodecDecodeSelf(d) + yyv1883 := &x.LoadBalancer + yyv1883.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1877) - } // end switch yys1877 - } // end for yyj1877 + z.DecStructFieldNotFound(-1, yys1882) + } // end switch yys1882 + } // end for yyj1882 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24446,16 +24494,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1879 int - var yyb1879 bool - var yyhl1879 bool = l >= 0 - yyj1879++ - if yyhl1879 { - yyb1879 = yyj1879 > l + var yyj1884 int + var yyb1884 bool + var yyhl1884 bool = l >= 0 + yyj1884++ + if yyhl1884 { + yyb1884 = yyj1884 > l } else { - yyb1879 = r.CheckBreak() + yyb1884 = r.CheckBreak() } - if yyb1879 { + if yyb1884 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24463,21 +24511,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1880 := &x.LoadBalancer - yyv1880.CodecDecodeSelf(d) + yyv1885 := &x.LoadBalancer + yyv1885.CodecDecodeSelf(d) } for { - yyj1879++ - if yyhl1879 { - yyb1879 = yyj1879 > l + yyj1884++ + if yyhl1884 { + yyb1884 = yyj1884 > l } else { - yyb1879 = r.CheckBreak() + yyb1884 = r.CheckBreak() } - if yyb1879 { + if yyb1884 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1879-1, "") + z.DecStructFieldNotFound(yyj1884-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24489,38 +24537,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1881 := z.EncBinary() - _ = yym1881 + yym1886 := z.EncBinary() + _ = yym1886 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1882 := !z.EncBinary() - yy2arr1882 := z.EncBasicHandle().StructToArray - var yyq1882 [1]bool - _, _, _ = yysep1882, yyq1882, yy2arr1882 - const yyr1882 bool = false - yyq1882[0] = len(x.Ingress) != 0 - var yynn1882 int - if yyr1882 || yy2arr1882 { + yysep1887 := !z.EncBinary() + yy2arr1887 := z.EncBasicHandle().StructToArray + var yyq1887 [1]bool + _, _, _ = yysep1887, yyq1887, yy2arr1887 + const yyr1887 bool = false + yyq1887[0] = len(x.Ingress) != 0 + var yynn1887 int + if yyr1887 || yy2arr1887 { r.EncodeArrayStart(1) } else { - yynn1882 = 0 - for _, b := range yyq1882 { + yynn1887 = 0 + for _, b := range yyq1887 { if b { - yynn1882++ + yynn1887++ } } - r.EncodeMapStart(yynn1882) - yynn1882 = 0 + r.EncodeMapStart(yynn1887) + yynn1887 = 0 } - if yyr1882 || yy2arr1882 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1882[0] { + if yyq1887[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym1884 := z.EncBinary() - _ = yym1884 + yym1889 := z.EncBinary() + _ = yym1889 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -24530,15 +24578,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1882[0] { + if yyq1887[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1885 := z.EncBinary() - _ = yym1885 + yym1890 := z.EncBinary() + _ = yym1890 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -24546,7 +24594,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1882 || yy2arr1882 { + if yyr1887 || yy2arr1887 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24559,25 +24607,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1886 := z.DecBinary() - _ = yym1886 + yym1891 := z.DecBinary() + _ = yym1891 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1887 := r.ContainerType() - if yyct1887 == codecSelferValueTypeMap1234 { - yyl1887 := r.ReadMapStart() - if yyl1887 == 0 { + yyct1892 := r.ContainerType() + if yyct1892 == codecSelferValueTypeMap1234 { + yyl1892 := r.ReadMapStart() + if yyl1892 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1887, d) + x.codecDecodeSelfFromMap(yyl1892, d) } - } else if yyct1887 == codecSelferValueTypeArray1234 { - yyl1887 := r.ReadArrayStart() - if yyl1887 == 0 { + } else if yyct1892 == codecSelferValueTypeArray1234 { + yyl1892 := r.ReadArrayStart() + if yyl1892 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1887, d) + x.codecDecodeSelfFromArray(yyl1892, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24589,12 +24637,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1888Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1888Slc - var yyhl1888 bool = l >= 0 - for yyj1888 := 0; ; yyj1888++ { - if yyhl1888 { - if yyj1888 >= l { + var yys1893Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1893Slc + var yyhl1893 bool = l >= 0 + for yyj1893 := 0; ; yyj1893++ { + if yyhl1893 { + if yyj1893 >= l { break } } else { @@ -24603,26 +24651,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1888Slc = r.DecodeBytes(yys1888Slc, true, true) - yys1888 := string(yys1888Slc) + yys1893Slc = r.DecodeBytes(yys1893Slc, true, true) + yys1893 := string(yys1893Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1888 { + switch yys1893 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1889 := &x.Ingress - yym1890 := z.DecBinary() - _ = yym1890 + yyv1894 := &x.Ingress + yym1895 := z.DecBinary() + _ = yym1895 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1889), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1894), d) } } default: - z.DecStructFieldNotFound(-1, yys1888) - } // end switch yys1888 - } // end for yyj1888 + z.DecStructFieldNotFound(-1, yys1893) + } // end switch yys1893 + } // end for yyj1893 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24630,16 +24678,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1891 int - var yyb1891 bool - var yyhl1891 bool = l >= 0 - yyj1891++ - if yyhl1891 { - yyb1891 = yyj1891 > l + var yyj1896 int + var yyb1896 bool + var yyhl1896 bool = l >= 0 + yyj1896++ + if yyhl1896 { + yyb1896 = yyj1896 > l } else { - yyb1891 = r.CheckBreak() + yyb1896 = r.CheckBreak() } - if yyb1891 { + if yyb1896 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24647,26 +24695,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1892 := &x.Ingress - yym1893 := z.DecBinary() - _ = yym1893 + yyv1897 := &x.Ingress + yym1898 := z.DecBinary() + _ = yym1898 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1892), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1897), d) } } for { - yyj1891++ - if yyhl1891 { - yyb1891 = yyj1891 > l + yyj1896++ + if yyhl1896 { + yyb1896 = yyj1896 > l } else { - yyb1891 = r.CheckBreak() + yyb1896 = r.CheckBreak() } - if yyb1891 { + if yyb1896 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1891-1, "") + z.DecStructFieldNotFound(yyj1896-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24678,36 +24726,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1894 := z.EncBinary() - _ = yym1894 + yym1899 := z.EncBinary() + _ = yym1899 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1895 := !z.EncBinary() - yy2arr1895 := z.EncBasicHandle().StructToArray - var yyq1895 [2]bool - _, _, _ = yysep1895, yyq1895, yy2arr1895 - const yyr1895 bool = false - yyq1895[0] = x.IP != "" - yyq1895[1] = x.Hostname != "" - var yynn1895 int - if yyr1895 || yy2arr1895 { + yysep1900 := !z.EncBinary() + yy2arr1900 := z.EncBasicHandle().StructToArray + var yyq1900 [2]bool + _, _, _ = yysep1900, yyq1900, yy2arr1900 + const yyr1900 bool = false + yyq1900[0] = x.IP != "" + yyq1900[1] = x.Hostname != "" + var yynn1900 int + if yyr1900 || yy2arr1900 { r.EncodeArrayStart(2) } else { - yynn1895 = 0 - for _, b := range yyq1895 { + yynn1900 = 0 + for _, b := range yyq1900 { if b { - yynn1895++ + yynn1900++ } } - r.EncodeMapStart(yynn1895) - yynn1895 = 0 + r.EncodeMapStart(yynn1900) + yynn1900 = 0 } - if yyr1895 || yy2arr1895 { + if yyr1900 || yy2arr1900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1895[0] { - yym1897 := z.EncBinary() - _ = yym1897 + if yyq1900[0] { + yym1902 := z.EncBinary() + _ = yym1902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -24716,23 +24764,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1895[0] { + if yyq1900[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1898 := z.EncBinary() - _ = yym1898 + yym1903 := z.EncBinary() + _ = yym1903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr1895 || yy2arr1895 { + if yyr1900 || yy2arr1900 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1895[1] { - yym1900 := z.EncBinary() - _ = yym1900 + if yyq1900[1] { + yym1905 := z.EncBinary() + _ = yym1905 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -24741,19 +24789,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1895[1] { + if yyq1900[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1901 := z.EncBinary() - _ = yym1901 + yym1906 := z.EncBinary() + _ = yym1906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1895 || yy2arr1895 { + if yyr1900 || yy2arr1900 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24766,25 +24814,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1902 := z.DecBinary() - _ = yym1902 + yym1907 := z.DecBinary() + _ = yym1907 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1903 := r.ContainerType() - if yyct1903 == codecSelferValueTypeMap1234 { - yyl1903 := r.ReadMapStart() - if yyl1903 == 0 { + yyct1908 := r.ContainerType() + if yyct1908 == codecSelferValueTypeMap1234 { + yyl1908 := r.ReadMapStart() + if yyl1908 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1903, d) + x.codecDecodeSelfFromMap(yyl1908, d) } - } else if yyct1903 == codecSelferValueTypeArray1234 { - yyl1903 := r.ReadArrayStart() - if yyl1903 == 0 { + } else if yyct1908 == codecSelferValueTypeArray1234 { + yyl1908 := r.ReadArrayStart() + if yyl1908 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1903, d) + x.codecDecodeSelfFromArray(yyl1908, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24796,12 +24844,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1904Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1904Slc - var yyhl1904 bool = l >= 0 - for yyj1904 := 0; ; yyj1904++ { - if yyhl1904 { - if yyj1904 >= l { + var yys1909Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1909Slc + var yyhl1909 bool = l >= 0 + for yyj1909 := 0; ; yyj1909++ { + if yyhl1909 { + if yyj1909 >= l { break } } else { @@ -24810,10 +24858,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1904Slc = r.DecodeBytes(yys1904Slc, true, true) - yys1904 := string(yys1904Slc) + yys1909Slc = r.DecodeBytes(yys1909Slc, true, true) + yys1909 := string(yys1909Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1904 { + switch yys1909 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -24827,9 +24875,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1904) - } // end switch yys1904 - } // end for yyj1904 + z.DecStructFieldNotFound(-1, yys1909) + } // end switch yys1909 + } // end for yyj1909 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24837,16 +24885,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj1912 int + var yyb1912 bool + var yyhl1912 bool = l >= 0 + yyj1912++ + if yyhl1912 { + yyb1912 = yyj1912 > l } else { - yyb1907 = r.CheckBreak() + yyb1912 = r.CheckBreak() } - if yyb1907 { + if yyb1912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24856,13 +24904,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1912++ + if yyhl1912 { + yyb1912 = yyj1912 > l } else { - yyb1907 = r.CheckBreak() + yyb1912 = r.CheckBreak() } - if yyb1907 { + if yyb1912 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24873,17 +24921,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj1907++ - if yyhl1907 { - yyb1907 = yyj1907 > l + yyj1912++ + if yyhl1912 { + yyb1912 = yyj1912 > l } else { - yyb1907 = r.CheckBreak() + yyb1912 = r.CheckBreak() } - if yyb1907 { + if yyb1912 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1907-1, "") + z.DecStructFieldNotFound(yyj1912-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24895,56 +24943,56 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1910 := z.EncBinary() - _ = yym1910 + yym1915 := z.EncBinary() + _ = yym1915 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1911 := !z.EncBinary() - yy2arr1911 := z.EncBasicHandle().StructToArray - var yyq1911 [7]bool - _, _, _ = yysep1911, yyq1911, yy2arr1911 - const yyr1911 bool = false - yyq1911[0] = x.Type != "" - yyq1911[3] = x.ClusterIP != "" - yyq1911[4] = len(x.ExternalIPs) != 0 - yyq1911[5] = x.LoadBalancerIP != "" - yyq1911[6] = x.SessionAffinity != "" - var yynn1911 int - if yyr1911 || yy2arr1911 { + yysep1916 := !z.EncBinary() + yy2arr1916 := z.EncBasicHandle().StructToArray + var yyq1916 [7]bool + _, _, _ = yysep1916, yyq1916, yy2arr1916 + const yyr1916 bool = false + yyq1916[0] = x.Type != "" + yyq1916[3] = x.ClusterIP != "" + yyq1916[4] = len(x.ExternalIPs) != 0 + yyq1916[5] = x.LoadBalancerIP != "" + yyq1916[6] = x.SessionAffinity != "" + var yynn1916 int + if yyr1916 || yy2arr1916 { r.EncodeArrayStart(7) } else { - yynn1911 = 2 - for _, b := range yyq1911 { + yynn1916 = 2 + for _, b := range yyq1916 { if b { - yynn1911++ + yynn1916++ } } - r.EncodeMapStart(yynn1911) - yynn1911 = 0 + r.EncodeMapStart(yynn1916) + yynn1916 = 0 } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1911[0] { + if yyq1916[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1911[0] { + if yyq1916[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym1914 := z.EncBinary() - _ = yym1914 + yym1919 := z.EncBinary() + _ = yym1919 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -24957,21 +25005,21 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym1915 := z.EncBinary() - _ = yym1915 + yym1920 := z.EncBinary() + _ = yym1920 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Selector == nil { r.EncodeNil() } else { - yym1917 := z.EncBinary() - _ = yym1917 + yym1922 := z.EncBinary() + _ = yym1922 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -24984,19 +25032,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Selector == nil { r.EncodeNil() } else { - yym1918 := z.EncBinary() - _ = yym1918 + yym1923 := z.EncBinary() + _ = yym1923 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1911[3] { - yym1920 := z.EncBinary() - _ = yym1920 + if yyq1916[3] { + yym1925 := z.EncBinary() + _ = yym1925 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -25005,26 +25053,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1911[3] { + if yyq1916[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1921 := z.EncBinary() - _ = yym1921 + yym1926 := z.EncBinary() + _ = yym1926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1911[4] { + if yyq1916[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1923 := z.EncBinary() - _ = yym1923 + yym1928 := z.EncBinary() + _ = yym1928 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25034,15 +25082,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1911[4] { + if yyq1916[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1924 := z.EncBinary() - _ = yym1924 + yym1929 := z.EncBinary() + _ = yym1929 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -25050,11 +25098,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1911[5] { - yym1926 := z.EncBinary() - _ = yym1926 + if yyq1916[5] { + yym1931 := z.EncBinary() + _ = yym1931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -25063,34 +25111,34 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1911[5] { + if yyq1916[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1927 := z.EncBinary() - _ = yym1927 + yym1932 := z.EncBinary() + _ = yym1932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1911[6] { + if yyq1916[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1911[6] { + if yyq1916[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr1911 || yy2arr1911 { + if yyr1916 || yy2arr1916 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25103,25 +25151,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1929 := z.DecBinary() - _ = yym1929 + yym1934 := z.DecBinary() + _ = yym1934 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1930 := r.ContainerType() - if yyct1930 == codecSelferValueTypeMap1234 { - yyl1930 := r.ReadMapStart() - if yyl1930 == 0 { + yyct1935 := r.ContainerType() + if yyct1935 == codecSelferValueTypeMap1234 { + yyl1935 := r.ReadMapStart() + if yyl1935 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1930, d) + x.codecDecodeSelfFromMap(yyl1935, d) } - } else if yyct1930 == codecSelferValueTypeArray1234 { - yyl1930 := r.ReadArrayStart() - if yyl1930 == 0 { + } else if yyct1935 == codecSelferValueTypeArray1234 { + yyl1935 := r.ReadArrayStart() + if yyl1935 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1930, d) + x.codecDecodeSelfFromArray(yyl1935, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25133,12 +25181,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1931Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1931Slc - var yyhl1931 bool = l >= 0 - for yyj1931 := 0; ; yyj1931++ { - if yyhl1931 { - if yyj1931 >= l { + var yys1936Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1936Slc + var yyhl1936 bool = l >= 0 + for yyj1936 := 0; ; yyj1936++ { + if yyhl1936 { + if yyj1936 >= l { break } } else { @@ -25147,10 +25195,10 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1931Slc = r.DecodeBytes(yys1931Slc, true, true) - yys1931 := string(yys1931Slc) + yys1936Slc = r.DecodeBytes(yys1936Slc, true, true) + yys1936 := string(yys1936Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1931 { + switch yys1936 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -25161,24 +25209,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1933 := &x.Ports - yym1934 := z.DecBinary() - _ = yym1934 + yyv1938 := &x.Ports + yym1939 := z.DecBinary() + _ = yym1939 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1933), d) + h.decSliceServicePort((*[]ServicePort)(yyv1938), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1935 := &x.Selector - yym1936 := z.DecBinary() - _ = yym1936 + yyv1940 := &x.Selector + yym1941 := z.DecBinary() + _ = yym1941 if false { } else { - z.F.DecMapStringStringX(yyv1935, false, d) + z.F.DecMapStringStringX(yyv1940, false, d) } } case "clusterIP": @@ -25191,12 +25239,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1938 := &x.ExternalIPs - yym1939 := z.DecBinary() - _ = yym1939 + yyv1943 := &x.ExternalIPs + yym1944 := z.DecBinary() + _ = yym1944 if false { } else { - z.F.DecSliceStringX(yyv1938, false, d) + z.F.DecSliceStringX(yyv1943, false, d) } } case "loadBalancerIP": @@ -25212,9 +25260,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1931) - } // end switch yys1931 - } // end for yyj1931 + z.DecStructFieldNotFound(-1, yys1936) + } // end switch yys1936 + } // end for yyj1936 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25222,16 +25270,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1942 int - var yyb1942 bool - var yyhl1942 bool = l >= 0 - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + var yyj1947 int + var yyb1947 bool + var yyhl1947 bool = l >= 0 + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25241,13 +25289,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25255,21 +25303,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1944 := &x.Ports - yym1945 := z.DecBinary() - _ = yym1945 + yyv1949 := &x.Ports + yym1950 := z.DecBinary() + _ = yym1950 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1944), d) + h.decSliceServicePort((*[]ServicePort)(yyv1949), d) } } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25277,21 +25325,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1946 := &x.Selector - yym1947 := z.DecBinary() - _ = yym1947 + yyv1951 := &x.Selector + yym1952 := z.DecBinary() + _ = yym1952 if false { } else { - z.F.DecMapStringStringX(yyv1946, false, d) + z.F.DecMapStringStringX(yyv1951, false, d) } } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25301,13 +25349,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25315,21 +25363,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1949 := &x.ExternalIPs - yym1950 := z.DecBinary() - _ = yym1950 + yyv1954 := &x.ExternalIPs + yym1955 := z.DecBinary() + _ = yym1955 if false { } else { - z.F.DecSliceStringX(yyv1949, false, d) + z.F.DecSliceStringX(yyv1954, false, d) } } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25339,13 +25387,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25356,17 +25404,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } for { - yyj1942++ - if yyhl1942 { - yyb1942 = yyj1942 > l + yyj1947++ + if yyhl1947 { + yyb1947 = yyj1947 > l } else { - yyb1942 = r.CheckBreak() + yyb1947 = r.CheckBreak() } - if yyb1942 { + if yyb1947 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1942-1, "") + z.DecStructFieldNotFound(yyj1947-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25378,33 +25426,33 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1953 := z.EncBinary() - _ = yym1953 + yym1958 := z.EncBinary() + _ = yym1958 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1954 := !z.EncBinary() - yy2arr1954 := z.EncBasicHandle().StructToArray - var yyq1954 [5]bool - _, _, _ = yysep1954, yyq1954, yy2arr1954 - const yyr1954 bool = false - var yynn1954 int - if yyr1954 || yy2arr1954 { + yysep1959 := !z.EncBinary() + yy2arr1959 := z.EncBasicHandle().StructToArray + var yyq1959 [5]bool + _, _, _ = yysep1959, yyq1959, yy2arr1959 + const yyr1959 bool = false + var yynn1959 int + if yyr1959 || yy2arr1959 { r.EncodeArrayStart(5) } else { - yynn1954 = 5 - for _, b := range yyq1954 { + yynn1959 = 5 + for _, b := range yyq1959 { if b { - yynn1954++ + yynn1959++ } } - r.EncodeMapStart(yynn1954) - yynn1954 = 0 + r.EncodeMapStart(yynn1959) + yynn1959 = 0 } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1956 := z.EncBinary() - _ = yym1956 + yym1961 := z.EncBinary() + _ = yym1961 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -25413,14 +25461,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1957 := z.EncBinary() - _ = yym1957 + yym1962 := z.EncBinary() + _ = yym1962 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -25429,10 +25477,10 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1960 := z.EncBinary() - _ = yym1960 + yym1965 := z.EncBinary() + _ = yym1965 if false { } else { r.EncodeInt(int64(x.Port)) @@ -25441,44 +25489,44 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1961 := z.EncBinary() - _ = yym1961 + yym1966 := z.EncBinary() + _ = yym1966 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy1963 := &x.TargetPort - yym1964 := z.EncBinary() - _ = yym1964 + yy1968 := &x.TargetPort + yym1969 := z.EncBinary() + _ = yym1969 if false { - } else if z.HasExtensions() && z.EncExt(yy1963) { - } else if !yym1964 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1963) + } else if z.HasExtensions() && z.EncExt(yy1968) { + } else if !yym1969 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1968) } else { - z.EncFallback(yy1963) + z.EncFallback(yy1968) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1965 := &x.TargetPort - yym1966 := z.EncBinary() - _ = yym1966 + yy1970 := &x.TargetPort + yym1971 := z.EncBinary() + _ = yym1971 if false { - } else if z.HasExtensions() && z.EncExt(yy1965) { - } else if !yym1966 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1965) + } else if z.HasExtensions() && z.EncExt(yy1970) { + } else if !yym1971 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1970) } else { - z.EncFallback(yy1965) + z.EncFallback(yy1970) } } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1968 := z.EncBinary() - _ = yym1968 + yym1973 := z.EncBinary() + _ = yym1973 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -25487,14 +25535,14 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1969 := z.EncBinary() - _ = yym1969 + yym1974 := z.EncBinary() + _ = yym1974 if false { } else { r.EncodeInt(int64(x.NodePort)) } } - if yyr1954 || yy2arr1954 { + if yyr1959 || yy2arr1959 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25507,25 +25555,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1970 := z.DecBinary() - _ = yym1970 + yym1975 := z.DecBinary() + _ = yym1975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1971 := r.ContainerType() - if yyct1971 == codecSelferValueTypeMap1234 { - yyl1971 := r.ReadMapStart() - if yyl1971 == 0 { + yyct1976 := r.ContainerType() + if yyct1976 == codecSelferValueTypeMap1234 { + yyl1976 := r.ReadMapStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1971, d) + x.codecDecodeSelfFromMap(yyl1976, d) } - } else if yyct1971 == codecSelferValueTypeArray1234 { - yyl1971 := r.ReadArrayStart() - if yyl1971 == 0 { + } else if yyct1976 == codecSelferValueTypeArray1234 { + yyl1976 := r.ReadArrayStart() + if yyl1976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1971, d) + x.codecDecodeSelfFromArray(yyl1976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25537,12 +25585,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1972Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1972Slc - var yyhl1972 bool = l >= 0 - for yyj1972 := 0; ; yyj1972++ { - if yyhl1972 { - if yyj1972 >= l { + var yys1977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1977Slc + var yyhl1977 bool = l >= 0 + for yyj1977 := 0; ; yyj1977++ { + if yyhl1977 { + if yyj1977 >= l { break } } else { @@ -25551,10 +25599,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1972Slc = r.DecodeBytes(yys1972Slc, true, true) - yys1972 := string(yys1972Slc) + yys1977Slc = r.DecodeBytes(yys1977Slc, true, true) + yys1977 := string(yys1977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1972 { + switch yys1977 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -25577,15 +25625,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1976 := &x.TargetPort - yym1977 := z.DecBinary() - _ = yym1977 + yyv1981 := &x.TargetPort + yym1982 := z.DecBinary() + _ = yym1982 if false { - } else if z.HasExtensions() && z.DecExt(yyv1976) { - } else if !yym1977 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1976) + } else if z.HasExtensions() && z.DecExt(yyv1981) { + } else if !yym1982 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1981) } else { - z.DecFallback(yyv1976, false) + z.DecFallback(yyv1981, false) } } case "nodePort": @@ -25595,9 +25643,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys1972) - } // end switch yys1972 - } // end for yyj1972 + z.DecStructFieldNotFound(-1, yys1977) + } // end switch yys1977 + } // end for yyj1977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25605,16 +25653,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1979 int - var yyb1979 bool - var yyhl1979 bool = l >= 0 - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + var yyj1984 int + var yyb1984 bool + var yyhl1984 bool = l >= 0 + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25624,13 +25672,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25640,13 +25688,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25656,13 +25704,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25670,24 +25718,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1983 := &x.TargetPort - yym1984 := z.DecBinary() - _ = yym1984 + yyv1988 := &x.TargetPort + yym1989 := z.DecBinary() + _ = yym1989 if false { - } else if z.HasExtensions() && z.DecExt(yyv1983) { - } else if !yym1984 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1983) + } else if z.HasExtensions() && z.DecExt(yyv1988) { + } else if !yym1989 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1988) } else { - z.DecFallback(yyv1983, false) + z.DecFallback(yyv1988, false) } } - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25698,17 +25746,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj1979++ - if yyhl1979 { - yyb1979 = yyj1979 > l + yyj1984++ + if yyhl1984 { + yyb1984 = yyj1984 > l } else { - yyb1979 = r.CheckBreak() + yyb1984 = r.CheckBreak() } - if yyb1979 { + if yyb1984 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1979-1, "") + z.DecStructFieldNotFound(yyj1984-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25720,39 +25768,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1986 := z.EncBinary() - _ = yym1986 + yym1991 := z.EncBinary() + _ = yym1991 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1987 := !z.EncBinary() - yy2arr1987 := z.EncBasicHandle().StructToArray - var yyq1987 [5]bool - _, _, _ = yysep1987, yyq1987, yy2arr1987 - const yyr1987 bool = false - yyq1987[0] = x.Kind != "" - yyq1987[1] = x.APIVersion != "" - yyq1987[2] = true - yyq1987[3] = true - yyq1987[4] = true - var yynn1987 int - if yyr1987 || yy2arr1987 { + yysep1992 := !z.EncBinary() + yy2arr1992 := z.EncBasicHandle().StructToArray + var yyq1992 [5]bool + _, _, _ = yysep1992, yyq1992, yy2arr1992 + const yyr1992 bool = false + yyq1992[0] = x.Kind != "" + yyq1992[1] = x.APIVersion != "" + yyq1992[2] = true + yyq1992[3] = true + yyq1992[4] = true + var yynn1992 int + if yyr1992 || yy2arr1992 { r.EncodeArrayStart(5) } else { - yynn1987 = 0 - for _, b := range yyq1987 { + yynn1992 = 0 + for _, b := range yyq1992 { if b { - yynn1987++ + yynn1992++ } } - r.EncodeMapStart(yynn1987) - yynn1987 = 0 + r.EncodeMapStart(yynn1992) + yynn1992 = 0 } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[0] { - yym1989 := z.EncBinary() - _ = yym1989 + if yyq1992[0] { + yym1994 := z.EncBinary() + _ = yym1994 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25761,23 +25809,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1987[0] { + if yyq1992[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1990 := z.EncBinary() - _ = yym1990 + yym1995 := z.EncBinary() + _ = yym1995 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[1] { - yym1992 := z.EncBinary() - _ = yym1992 + if yyq1992[1] { + yym1997 := z.EncBinary() + _ = yym1997 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25786,70 +25834,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1987[1] { + if yyq1992[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1993 := z.EncBinary() - _ = yym1993 + yym1998 := z.EncBinary() + _ = yym1998 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[2] { - yy1995 := &x.ObjectMeta - yy1995.CodecEncodeSelf(e) + if yyq1992[2] { + yy2000 := &x.ObjectMeta + yy2000.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1987[2] { + if yyq1992[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1996 := &x.ObjectMeta - yy1996.CodecEncodeSelf(e) + yy2001 := &x.ObjectMeta + yy2001.CodecEncodeSelf(e) } } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[3] { - yy1998 := &x.Spec - yy1998.CodecEncodeSelf(e) + if yyq1992[3] { + yy2003 := &x.Spec + yy2003.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1987[3] { + if yyq1992[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1999 := &x.Spec - yy1999.CodecEncodeSelf(e) + yy2004 := &x.Spec + yy2004.CodecEncodeSelf(e) } } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1987[4] { - yy2001 := &x.Status - yy2001.CodecEncodeSelf(e) + if yyq1992[4] { + yy2006 := &x.Status + yy2006.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1987[4] { + if yyq1992[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2002 := &x.Status - yy2002.CodecEncodeSelf(e) + yy2007 := &x.Status + yy2007.CodecEncodeSelf(e) } } - if yyr1987 || yy2arr1987 { + if yyr1992 || yy2arr1992 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25862,25 +25910,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2003 := z.DecBinary() - _ = yym2003 + yym2008 := z.DecBinary() + _ = yym2008 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2004 := r.ContainerType() - if yyct2004 == codecSelferValueTypeMap1234 { - yyl2004 := r.ReadMapStart() - if yyl2004 == 0 { + yyct2009 := r.ContainerType() + if yyct2009 == codecSelferValueTypeMap1234 { + yyl2009 := r.ReadMapStart() + if yyl2009 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2004, d) + x.codecDecodeSelfFromMap(yyl2009, d) } - } else if yyct2004 == codecSelferValueTypeArray1234 { - yyl2004 := r.ReadArrayStart() - if yyl2004 == 0 { + } else if yyct2009 == codecSelferValueTypeArray1234 { + yyl2009 := r.ReadArrayStart() + if yyl2009 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2004, d) + x.codecDecodeSelfFromArray(yyl2009, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25892,12 +25940,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2005Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2005Slc - var yyhl2005 bool = l >= 0 - for yyj2005 := 0; ; yyj2005++ { - if yyhl2005 { - if yyj2005 >= l { + var yys2010Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2010Slc + var yyhl2010 bool = l >= 0 + for yyj2010 := 0; ; yyj2010++ { + if yyhl2010 { + if yyj2010 >= l { break } } else { @@ -25906,10 +25954,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2005Slc = r.DecodeBytes(yys2005Slc, true, true) - yys2005 := string(yys2005Slc) + yys2010Slc = r.DecodeBytes(yys2010Slc, true, true) + yys2010 := string(yys2010Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2005 { + switch yys2010 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -25926,27 +25974,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2008 := &x.ObjectMeta - yyv2008.CodecDecodeSelf(d) + yyv2013 := &x.ObjectMeta + yyv2013.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2009 := &x.Spec - yyv2009.CodecDecodeSelf(d) + yyv2014 := &x.Spec + yyv2014.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2010 := &x.Status - yyv2010.CodecDecodeSelf(d) + yyv2015 := &x.Status + yyv2015.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2005) - } // end switch yys2005 - } // end for yyj2005 + z.DecStructFieldNotFound(-1, yys2010) + } // end switch yys2010 + } // end for yyj2010 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25954,16 +26002,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2011 int - var yyb2011 bool - var yyhl2011 bool = l >= 0 - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + var yyj2016 int + var yyb2016 bool + var yyhl2016 bool = l >= 0 + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25973,13 +26021,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25989,13 +26037,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26003,16 +26051,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2014 := &x.ObjectMeta - yyv2014.CodecDecodeSelf(d) + yyv2019 := &x.ObjectMeta + yyv2019.CodecDecodeSelf(d) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26020,16 +26068,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2015 := &x.Spec - yyv2015.CodecDecodeSelf(d) + yyv2020 := &x.Spec + yyv2020.CodecDecodeSelf(d) } - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26037,21 +26085,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2016 := &x.Status - yyv2016.CodecDecodeSelf(d) + yyv2021 := &x.Status + yyv2021.CodecDecodeSelf(d) } for { - yyj2011++ - if yyhl2011 { - yyb2011 = yyj2011 > l + yyj2016++ + if yyhl2016 { + yyb2016 = yyj2016 > l } else { - yyb2011 = r.CheckBreak() + yyb2016 = r.CheckBreak() } - if yyb2011 { + if yyb2016 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2011-1, "") + z.DecStructFieldNotFound(yyj2016-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26063,38 +26111,38 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2017 := z.EncBinary() - _ = yym2017 + yym2022 := z.EncBinary() + _ = yym2022 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2018 := !z.EncBinary() - yy2arr2018 := z.EncBasicHandle().StructToArray - var yyq2018 [5]bool - _, _, _ = yysep2018, yyq2018, yy2arr2018 - const yyr2018 bool = false - yyq2018[0] = x.Kind != "" - yyq2018[1] = x.APIVersion != "" - yyq2018[2] = true - yyq2018[4] = len(x.ImagePullSecrets) != 0 - var yynn2018 int - if yyr2018 || yy2arr2018 { + yysep2023 := !z.EncBinary() + yy2arr2023 := z.EncBasicHandle().StructToArray + var yyq2023 [5]bool + _, _, _ = yysep2023, yyq2023, yy2arr2023 + const yyr2023 bool = false + yyq2023[0] = x.Kind != "" + yyq2023[1] = x.APIVersion != "" + yyq2023[2] = true + yyq2023[4] = len(x.ImagePullSecrets) != 0 + var yynn2023 int + if yyr2023 || yy2arr2023 { r.EncodeArrayStart(5) } else { - yynn2018 = 1 - for _, b := range yyq2018 { + yynn2023 = 1 + for _, b := range yyq2023 { if b { - yynn2018++ + yynn2023++ } } - r.EncodeMapStart(yynn2018) - yynn2018 = 0 + r.EncodeMapStart(yynn2023) + yynn2023 = 0 } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2018[0] { - yym2020 := z.EncBinary() - _ = yym2020 + if yyq2023[0] { + yym2025 := z.EncBinary() + _ = yym2025 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26103,23 +26151,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2018[0] { + if yyq2023[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2021 := z.EncBinary() - _ = yym2021 + yym2026 := z.EncBinary() + _ = yym2026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2018[1] { - yym2023 := z.EncBinary() - _ = yym2023 + if yyq2023[1] { + yym2028 := z.EncBinary() + _ = yym2028 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26128,42 +26176,42 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2018[1] { + if yyq2023[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2024 := z.EncBinary() - _ = yym2024 + yym2029 := z.EncBinary() + _ = yym2029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2018[2] { - yy2026 := &x.ObjectMeta - yy2026.CodecEncodeSelf(e) + if yyq2023[2] { + yy2031 := &x.ObjectMeta + yy2031.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2018[2] { + if yyq2023[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2027 := &x.ObjectMeta - yy2027.CodecEncodeSelf(e) + yy2032 := &x.ObjectMeta + yy2032.CodecEncodeSelf(e) } } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2029 := z.EncBinary() - _ = yym2029 + yym2034 := z.EncBinary() + _ = yym2034 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -26176,22 +26224,22 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x.Secrets == nil { r.EncodeNil() } else { - yym2030 := z.EncBinary() - _ = yym2030 + yym2035 := z.EncBinary() + _ = yym2035 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) } } } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2018[4] { + if yyq2023[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2032 := z.EncBinary() - _ = yym2032 + yym2037 := z.EncBinary() + _ = yym2037 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26201,15 +26249,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2018[4] { + if yyq2023[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2033 := z.EncBinary() - _ = yym2033 + yym2038 := z.EncBinary() + _ = yym2038 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26217,7 +26265,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2018 || yy2arr2018 { + if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26230,25 +26278,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2034 := z.DecBinary() - _ = yym2034 + yym2039 := z.DecBinary() + _ = yym2039 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2035 := r.ContainerType() - if yyct2035 == codecSelferValueTypeMap1234 { - yyl2035 := r.ReadMapStart() - if yyl2035 == 0 { + yyct2040 := r.ContainerType() + if yyct2040 == codecSelferValueTypeMap1234 { + yyl2040 := r.ReadMapStart() + if yyl2040 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2035, d) + x.codecDecodeSelfFromMap(yyl2040, d) } - } else if yyct2035 == codecSelferValueTypeArray1234 { - yyl2035 := r.ReadArrayStart() - if yyl2035 == 0 { + } else if yyct2040 == codecSelferValueTypeArray1234 { + yyl2040 := r.ReadArrayStart() + if yyl2040 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2035, d) + x.codecDecodeSelfFromArray(yyl2040, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26260,12 +26308,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2036Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2036Slc - var yyhl2036 bool = l >= 0 - for yyj2036 := 0; ; yyj2036++ { - if yyhl2036 { - if yyj2036 >= l { + var yys2041Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2041Slc + var yyhl2041 bool = l >= 0 + for yyj2041 := 0; ; yyj2041++ { + if yyhl2041 { + if yyj2041 >= l { break } } else { @@ -26274,10 +26322,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2036Slc = r.DecodeBytes(yys2036Slc, true, true) - yys2036 := string(yys2036Slc) + yys2041Slc = r.DecodeBytes(yys2041Slc, true, true) + yys2041 := string(yys2041Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2036 { + switch yys2041 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26294,37 +26342,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2039 := &x.ObjectMeta - yyv2039.CodecDecodeSelf(d) + yyv2044 := &x.ObjectMeta + yyv2044.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2040 := &x.Secrets - yym2041 := z.DecBinary() - _ = yym2041 + yyv2045 := &x.Secrets + yym2046 := z.DecBinary() + _ = yym2046 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2040), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2045), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2042 := &x.ImagePullSecrets - yym2043 := z.DecBinary() - _ = yym2043 + yyv2047 := &x.ImagePullSecrets + yym2048 := z.DecBinary() + _ = yym2048 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2042), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2047), d) } } default: - z.DecStructFieldNotFound(-1, yys2036) - } // end switch yys2036 - } // end for yyj2036 + z.DecStructFieldNotFound(-1, yys2041) + } // end switch yys2041 + } // end for yyj2041 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26332,16 +26380,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2044 int - var yyb2044 bool - var yyhl2044 bool = l >= 0 - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + var yyj2049 int + var yyb2049 bool + var yyhl2049 bool = l >= 0 + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26351,13 +26399,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26367,13 +26415,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26381,16 +26429,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2047 := &x.ObjectMeta - yyv2047.CodecDecodeSelf(d) + yyv2052 := &x.ObjectMeta + yyv2052.CodecDecodeSelf(d) } - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26398,21 +26446,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2048 := &x.Secrets - yym2049 := z.DecBinary() - _ = yym2049 + yyv2053 := &x.Secrets + yym2054 := z.DecBinary() + _ = yym2054 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2048), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2053), d) } } - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26420,26 +26468,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2050 := &x.ImagePullSecrets - yym2051 := z.DecBinary() - _ = yym2051 + yyv2055 := &x.ImagePullSecrets + yym2056 := z.DecBinary() + _ = yym2056 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2050), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2055), d) } } for { - yyj2044++ - if yyhl2044 { - yyb2044 = yyj2044 > l + yyj2049++ + if yyhl2049 { + yyb2049 = yyj2049 > l } else { - yyb2044 = r.CheckBreak() + yyb2049 = r.CheckBreak() } - if yyb2044 { + if yyb2049 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2044-1, "") + z.DecStructFieldNotFound(yyj2049-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26451,37 +26499,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2052 := z.EncBinary() - _ = yym2052 + yym2057 := z.EncBinary() + _ = yym2057 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2053 := !z.EncBinary() - yy2arr2053 := z.EncBasicHandle().StructToArray - var yyq2053 [4]bool - _, _, _ = yysep2053, yyq2053, yy2arr2053 - const yyr2053 bool = false - yyq2053[0] = x.Kind != "" - yyq2053[1] = x.APIVersion != "" - yyq2053[2] = true - var yynn2053 int - if yyr2053 || yy2arr2053 { + yysep2058 := !z.EncBinary() + yy2arr2058 := z.EncBasicHandle().StructToArray + var yyq2058 [4]bool + _, _, _ = yysep2058, yyq2058, yy2arr2058 + const yyr2058 bool = false + yyq2058[0] = x.Kind != "" + yyq2058[1] = x.APIVersion != "" + yyq2058[2] = true + var yynn2058 int + if yyr2058 || yy2arr2058 { r.EncodeArrayStart(4) } else { - yynn2053 = 1 - for _, b := range yyq2053 { + yynn2058 = 1 + for _, b := range yyq2058 { if b { - yynn2053++ + yynn2058++ } } - r.EncodeMapStart(yynn2053) - yynn2053 = 0 + r.EncodeMapStart(yynn2058) + yynn2058 = 0 } - if yyr2053 || yy2arr2053 { + if yyr2058 || yy2arr2058 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[0] { - yym2055 := z.EncBinary() - _ = yym2055 + if yyq2058[0] { + yym2060 := z.EncBinary() + _ = yym2060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26490,23 +26538,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2053[0] { + if yyq2058[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2056 := z.EncBinary() - _ = yym2056 + yym2061 := z.EncBinary() + _ = yym2061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2053 || yy2arr2053 { + if yyr2058 || yy2arr2058 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[1] { - yym2058 := z.EncBinary() - _ = yym2058 + if yyq2058[1] { + yym2063 := z.EncBinary() + _ = yym2063 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26515,54 +26563,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2053[1] { + if yyq2058[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2059 := z.EncBinary() - _ = yym2059 + yym2064 := z.EncBinary() + _ = yym2064 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2053 || yy2arr2053 { + if yyr2058 || yy2arr2058 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2053[2] { - yy2061 := &x.ListMeta - yym2062 := z.EncBinary() - _ = yym2062 + if yyq2058[2] { + yy2066 := &x.ListMeta + yym2067 := z.EncBinary() + _ = yym2067 if false { - } else if z.HasExtensions() && z.EncExt(yy2061) { + } else if z.HasExtensions() && z.EncExt(yy2066) { } else { - z.EncFallback(yy2061) + z.EncFallback(yy2066) } } else { r.EncodeNil() } } else { - if yyq2053[2] { + if yyq2058[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2063 := &x.ListMeta - yym2064 := z.EncBinary() - _ = yym2064 + yy2068 := &x.ListMeta + yym2069 := z.EncBinary() + _ = yym2069 if false { - } else if z.HasExtensions() && z.EncExt(yy2063) { + } else if z.HasExtensions() && z.EncExt(yy2068) { } else { - z.EncFallback(yy2063) + z.EncFallback(yy2068) } } } - if yyr2053 || yy2arr2053 { + if yyr2058 || yy2arr2058 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2066 := z.EncBinary() - _ = yym2066 + yym2071 := z.EncBinary() + _ = yym2071 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -26575,15 +26623,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2067 := z.EncBinary() - _ = yym2067 + yym2072 := z.EncBinary() + _ = yym2072 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2053 || yy2arr2053 { + if yyr2058 || yy2arr2058 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26596,25 +26644,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2068 := z.DecBinary() - _ = yym2068 + yym2073 := z.DecBinary() + _ = yym2073 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2069 := r.ContainerType() - if yyct2069 == codecSelferValueTypeMap1234 { - yyl2069 := r.ReadMapStart() - if yyl2069 == 0 { + yyct2074 := r.ContainerType() + if yyct2074 == codecSelferValueTypeMap1234 { + yyl2074 := r.ReadMapStart() + if yyl2074 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2069, d) + x.codecDecodeSelfFromMap(yyl2074, d) } - } else if yyct2069 == codecSelferValueTypeArray1234 { - yyl2069 := r.ReadArrayStart() - if yyl2069 == 0 { + } else if yyct2074 == codecSelferValueTypeArray1234 { + yyl2074 := r.ReadArrayStart() + if yyl2074 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2069, d) + x.codecDecodeSelfFromArray(yyl2074, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26626,12 +26674,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2070Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2070Slc - var yyhl2070 bool = l >= 0 - for yyj2070 := 0; ; yyj2070++ { - if yyhl2070 { - if yyj2070 >= l { + var yys2075Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2075Slc + var yyhl2075 bool = l >= 0 + for yyj2075 := 0; ; yyj2075++ { + if yyhl2075 { + if yyj2075 >= l { break } } else { @@ -26640,10 +26688,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2070Slc = r.DecodeBytes(yys2070Slc, true, true) - yys2070 := string(yys2070Slc) + yys2075Slc = r.DecodeBytes(yys2075Slc, true, true) + yys2075 := string(yys2075Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2070 { + switch yys2075 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26660,31 +26708,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2073 := &x.ListMeta - yym2074 := z.DecBinary() - _ = yym2074 + yyv2078 := &x.ListMeta + yym2079 := z.DecBinary() + _ = yym2079 if false { - } else if z.HasExtensions() && z.DecExt(yyv2073) { + } else if z.HasExtensions() && z.DecExt(yyv2078) { } else { - z.DecFallback(yyv2073, false) + z.DecFallback(yyv2078, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2075 := &x.Items - yym2076 := z.DecBinary() - _ = yym2076 + yyv2080 := &x.Items + yym2081 := z.DecBinary() + _ = yym2081 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2075), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2080), d) } } default: - z.DecStructFieldNotFound(-1, yys2070) - } // end switch yys2070 - } // end for yyj2070 + z.DecStructFieldNotFound(-1, yys2075) + } // end switch yys2075 + } // end for yyj2075 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26692,16 +26740,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2077 int - var yyb2077 bool - var yyhl2077 bool = l >= 0 - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + var yyj2082 int + var yyb2082 bool + var yyhl2082 bool = l >= 0 + yyj2082++ + if yyhl2082 { + yyb2082 = yyj2082 > l } else { - yyb2077 = r.CheckBreak() + yyb2082 = r.CheckBreak() } - if yyb2077 { + if yyb2082 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26711,13 +26759,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2082++ + if yyhl2082 { + yyb2082 = yyj2082 > l } else { - yyb2077 = r.CheckBreak() + yyb2082 = r.CheckBreak() } - if yyb2077 { + if yyb2082 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26727,13 +26775,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2082++ + if yyhl2082 { + yyb2082 = yyj2082 > l } else { - yyb2077 = r.CheckBreak() + yyb2082 = r.CheckBreak() } - if yyb2077 { + if yyb2082 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26741,22 +26789,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2080 := &x.ListMeta - yym2081 := z.DecBinary() - _ = yym2081 + yyv2085 := &x.ListMeta + yym2086 := z.DecBinary() + _ = yym2086 if false { - } else if z.HasExtensions() && z.DecExt(yyv2080) { + } else if z.HasExtensions() && z.DecExt(yyv2085) { } else { - z.DecFallback(yyv2080, false) + z.DecFallback(yyv2085, false) } } - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2082++ + if yyhl2082 { + yyb2082 = yyj2082 > l } else { - yyb2077 = r.CheckBreak() + yyb2082 = r.CheckBreak() } - if yyb2077 { + if yyb2082 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26764,26 +26812,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2082 := &x.Items - yym2083 := z.DecBinary() - _ = yym2083 + yyv2087 := &x.Items + yym2088 := z.DecBinary() + _ = yym2088 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2082), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2087), d) } } for { - yyj2077++ - if yyhl2077 { - yyb2077 = yyj2077 > l + yyj2082++ + if yyhl2082 { + yyb2082 = yyj2082 > l } else { - yyb2077 = r.CheckBreak() + yyb2082 = r.CheckBreak() } - if yyb2077 { + if yyb2082 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2077-1, "") + z.DecStructFieldNotFound(yyj2082-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26795,37 +26843,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2084 := z.EncBinary() - _ = yym2084 + yym2089 := z.EncBinary() + _ = yym2089 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2085 := !z.EncBinary() - yy2arr2085 := z.EncBasicHandle().StructToArray - var yyq2085 [4]bool - _, _, _ = yysep2085, yyq2085, yy2arr2085 - const yyr2085 bool = false - yyq2085[0] = x.Kind != "" - yyq2085[1] = x.APIVersion != "" - yyq2085[2] = true - var yynn2085 int - if yyr2085 || yy2arr2085 { + yysep2090 := !z.EncBinary() + yy2arr2090 := z.EncBasicHandle().StructToArray + var yyq2090 [4]bool + _, _, _ = yysep2090, yyq2090, yy2arr2090 + const yyr2090 bool = false + yyq2090[0] = x.Kind != "" + yyq2090[1] = x.APIVersion != "" + yyq2090[2] = true + var yynn2090 int + if yyr2090 || yy2arr2090 { r.EncodeArrayStart(4) } else { - yynn2085 = 1 - for _, b := range yyq2085 { + yynn2090 = 1 + for _, b := range yyq2090 { if b { - yynn2085++ + yynn2090++ } } - r.EncodeMapStart(yynn2085) - yynn2085 = 0 + r.EncodeMapStart(yynn2090) + yynn2090 = 0 } - if yyr2085 || yy2arr2085 { + if yyr2090 || yy2arr2090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2085[0] { - yym2087 := z.EncBinary() - _ = yym2087 + if yyq2090[0] { + yym2092 := z.EncBinary() + _ = yym2092 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26834,23 +26882,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2085[0] { + if yyq2090[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2088 := z.EncBinary() - _ = yym2088 + yym2093 := z.EncBinary() + _ = yym2093 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2085 || yy2arr2085 { + if yyr2090 || yy2arr2090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2085[1] { - yym2090 := z.EncBinary() - _ = yym2090 + if yyq2090[1] { + yym2095 := z.EncBinary() + _ = yym2095 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26859,42 +26907,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2085[1] { + if yyq2090[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2091 := z.EncBinary() - _ = yym2091 + yym2096 := z.EncBinary() + _ = yym2096 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2085 || yy2arr2085 { + if yyr2090 || yy2arr2090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2085[2] { - yy2093 := &x.ObjectMeta - yy2093.CodecEncodeSelf(e) + if yyq2090[2] { + yy2098 := &x.ObjectMeta + yy2098.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2085[2] { + if yyq2090[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2094 := &x.ObjectMeta - yy2094.CodecEncodeSelf(e) + yy2099 := &x.ObjectMeta + yy2099.CodecEncodeSelf(e) } } - if yyr2085 || yy2arr2085 { + if yyr2090 || yy2arr2090 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2096 := z.EncBinary() - _ = yym2096 + yym2101 := z.EncBinary() + _ = yym2101 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -26907,15 +26955,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2097 := z.EncBinary() - _ = yym2097 + yym2102 := z.EncBinary() + _ = yym2102 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2085 || yy2arr2085 { + if yyr2090 || yy2arr2090 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26928,25 +26976,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2098 := z.DecBinary() - _ = yym2098 + yym2103 := z.DecBinary() + _ = yym2103 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2099 := r.ContainerType() - if yyct2099 == codecSelferValueTypeMap1234 { - yyl2099 := r.ReadMapStart() - if yyl2099 == 0 { + yyct2104 := r.ContainerType() + if yyct2104 == codecSelferValueTypeMap1234 { + yyl2104 := r.ReadMapStart() + if yyl2104 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2099, d) + x.codecDecodeSelfFromMap(yyl2104, d) } - } else if yyct2099 == codecSelferValueTypeArray1234 { - yyl2099 := r.ReadArrayStart() - if yyl2099 == 0 { + } else if yyct2104 == codecSelferValueTypeArray1234 { + yyl2104 := r.ReadArrayStart() + if yyl2104 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2099, d) + x.codecDecodeSelfFromArray(yyl2104, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26958,12 +27006,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2100Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2100Slc - var yyhl2100 bool = l >= 0 - for yyj2100 := 0; ; yyj2100++ { - if yyhl2100 { - if yyj2100 >= l { + var yys2105Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2105Slc + var yyhl2105 bool = l >= 0 + for yyj2105 := 0; ; yyj2105++ { + if yyhl2105 { + if yyj2105 >= l { break } } else { @@ -26972,10 +27020,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2100Slc = r.DecodeBytes(yys2100Slc, true, true) - yys2100 := string(yys2100Slc) + yys2105Slc = r.DecodeBytes(yys2105Slc, true, true) + yys2105 := string(yys2105Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2100 { + switch yys2105 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26992,25 +27040,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2103 := &x.ObjectMeta - yyv2103.CodecDecodeSelf(d) + yyv2108 := &x.ObjectMeta + yyv2108.CodecDecodeSelf(d) } case "Subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2104 := &x.Subsets - yym2105 := z.DecBinary() - _ = yym2105 + yyv2109 := &x.Subsets + yym2110 := z.DecBinary() + _ = yym2110 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2104), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2109), d) } } default: - z.DecStructFieldNotFound(-1, yys2100) - } // end switch yys2100 - } // end for yyj2100 + z.DecStructFieldNotFound(-1, yys2105) + } // end switch yys2105 + } // end for yyj2105 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27018,16 +27066,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2106 int - var yyb2106 bool - var yyhl2106 bool = l >= 0 - yyj2106++ - if yyhl2106 { - yyb2106 = yyj2106 > l + var yyj2111 int + var yyb2111 bool + var yyhl2111 bool = l >= 0 + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2106 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2106 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27037,13 +27085,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2106++ - if yyhl2106 { - yyb2106 = yyj2106 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2106 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2106 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27053,13 +27101,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2106++ - if yyhl2106 { - yyb2106 = yyj2106 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2106 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2106 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27067,16 +27115,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2109 := &x.ObjectMeta - yyv2109.CodecDecodeSelf(d) + yyv2114 := &x.ObjectMeta + yyv2114.CodecDecodeSelf(d) } - yyj2106++ - if yyhl2106 { - yyb2106 = yyj2106 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2106 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2106 { + if yyb2111 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27084,26 +27132,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2110 := &x.Subsets - yym2111 := z.DecBinary() - _ = yym2111 + yyv2115 := &x.Subsets + yym2116 := z.DecBinary() + _ = yym2116 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2110), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2115), d) } } for { - yyj2106++ - if yyhl2106 { - yyb2106 = yyj2106 > l + yyj2111++ + if yyhl2111 { + yyb2111 = yyj2111 > l } else { - yyb2106 = r.CheckBreak() + yyb2111 = r.CheckBreak() } - if yyb2106 { + if yyb2111 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2106-1, "") + z.DecStructFieldNotFound(yyj2111-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27115,36 +27163,36 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2112 := z.EncBinary() - _ = yym2112 + yym2117 := z.EncBinary() + _ = yym2117 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2113 := !z.EncBinary() - yy2arr2113 := z.EncBasicHandle().StructToArray - var yyq2113 [3]bool - _, _, _ = yysep2113, yyq2113, yy2arr2113 - const yyr2113 bool = false - var yynn2113 int - if yyr2113 || yy2arr2113 { + yysep2118 := !z.EncBinary() + yy2arr2118 := z.EncBasicHandle().StructToArray + var yyq2118 [3]bool + _, _, _ = yysep2118, yyq2118, yy2arr2118 + const yyr2118 bool = false + var yynn2118 int + if yyr2118 || yy2arr2118 { r.EncodeArrayStart(3) } else { - yynn2113 = 3 - for _, b := range yyq2113 { + yynn2118 = 3 + for _, b := range yyq2118 { if b { - yynn2113++ + yynn2118++ } } - r.EncodeMapStart(yynn2113) - yynn2113 = 0 + r.EncodeMapStart(yynn2118) + yynn2118 = 0 } - if yyr2113 || yy2arr2113 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2115 := z.EncBinary() - _ = yym2115 + yym2120 := z.EncBinary() + _ = yym2120 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -27157,21 +27205,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Addresses == nil { r.EncodeNil() } else { - yym2116 := z.EncBinary() - _ = yym2116 + yym2121 := z.EncBinary() + _ = yym2121 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } - if yyr2113 || yy2arr2113 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2118 := z.EncBinary() - _ = yym2118 + yym2123 := z.EncBinary() + _ = yym2123 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27184,21 +27232,21 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2119 := z.EncBinary() - _ = yym2119 + yym2124 := z.EncBinary() + _ = yym2124 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } - if yyr2113 || yy2arr2113 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym2121 := z.EncBinary() - _ = yym2121 + yym2126 := z.EncBinary() + _ = yym2126 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27211,15 +27259,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym2122 := z.EncBinary() - _ = yym2122 + yym2127 := z.EncBinary() + _ = yym2127 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) } } } - if yyr2113 || yy2arr2113 { + if yyr2118 || yy2arr2118 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27232,25 +27280,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2123 := z.DecBinary() - _ = yym2123 + yym2128 := z.DecBinary() + _ = yym2128 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2124 := r.ContainerType() - if yyct2124 == codecSelferValueTypeMap1234 { - yyl2124 := r.ReadMapStart() - if yyl2124 == 0 { + yyct2129 := r.ContainerType() + if yyct2129 == codecSelferValueTypeMap1234 { + yyl2129 := r.ReadMapStart() + if yyl2129 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2124, d) + x.codecDecodeSelfFromMap(yyl2129, d) } - } else if yyct2124 == codecSelferValueTypeArray1234 { - yyl2124 := r.ReadArrayStart() - if yyl2124 == 0 { + } else if yyct2129 == codecSelferValueTypeArray1234 { + yyl2129 := r.ReadArrayStart() + if yyl2129 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2124, d) + x.codecDecodeSelfFromArray(yyl2129, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27262,12 +27310,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2125Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2125Slc - var yyhl2125 bool = l >= 0 - for yyj2125 := 0; ; yyj2125++ { - if yyhl2125 { - if yyj2125 >= l { + var yys2130Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2130Slc + var yyhl2130 bool = l >= 0 + for yyj2130 := 0; ; yyj2130++ { + if yyhl2130 { + if yyj2130 >= l { break } } else { @@ -27276,50 +27324,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2125Slc = r.DecodeBytes(yys2125Slc, true, true) - yys2125 := string(yys2125Slc) + yys2130Slc = r.DecodeBytes(yys2130Slc, true, true) + yys2130 := string(yys2130Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2125 { + switch yys2130 { case "Addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2126 := &x.Addresses - yym2127 := z.DecBinary() - _ = yym2127 + yyv2131 := &x.Addresses + yym2132 := z.DecBinary() + _ = yym2132 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2126), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2131), d) } } case "NotReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2128 := &x.NotReadyAddresses - yym2129 := z.DecBinary() - _ = yym2129 + yyv2133 := &x.NotReadyAddresses + yym2134 := z.DecBinary() + _ = yym2134 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2128), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2133), d) } } case "Ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2130 := &x.Ports - yym2131 := z.DecBinary() - _ = yym2131 + yyv2135 := &x.Ports + yym2136 := z.DecBinary() + _ = yym2136 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2130), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2135), d) } } default: - z.DecStructFieldNotFound(-1, yys2125) - } // end switch yys2125 - } // end for yyj2125 + z.DecStructFieldNotFound(-1, yys2130) + } // end switch yys2130 + } // end for yyj2130 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27327,16 +27375,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2132 int - var yyb2132 bool - var yyhl2132 bool = l >= 0 - yyj2132++ - if yyhl2132 { - yyb2132 = yyj2132 > l + var yyj2137 int + var yyb2137 bool + var yyhl2137 bool = l >= 0 + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2132 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2132 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27344,21 +27392,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2133 := &x.Addresses - yym2134 := z.DecBinary() - _ = yym2134 + yyv2138 := &x.Addresses + yym2139 := z.DecBinary() + _ = yym2139 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2133), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2138), d) } } - yyj2132++ - if yyhl2132 { - yyb2132 = yyj2132 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2132 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2132 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27366,21 +27414,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2135 := &x.NotReadyAddresses - yym2136 := z.DecBinary() - _ = yym2136 + yyv2140 := &x.NotReadyAddresses + yym2141 := z.DecBinary() + _ = yym2141 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2135), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2140), d) } } - yyj2132++ - if yyhl2132 { - yyb2132 = yyj2132 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2132 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2132 { + if yyb2137 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27388,26 +27436,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2137 := &x.Ports - yym2138 := z.DecBinary() - _ = yym2138 + yyv2142 := &x.Ports + yym2143 := z.DecBinary() + _ = yym2143 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2137), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2142), d) } } for { - yyj2132++ - if yyhl2132 { - yyb2132 = yyj2132 > l + yyj2137++ + if yyhl2137 { + yyb2137 = yyj2137 > l } else { - yyb2132 = r.CheckBreak() + yyb2137 = r.CheckBreak() } - if yyb2132 { + if yyb2137 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2132-1, "") + z.DecStructFieldNotFound(yyj2137-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27419,33 +27467,33 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2139 := z.EncBinary() - _ = yym2139 + yym2144 := z.EncBinary() + _ = yym2144 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2140 := !z.EncBinary() - yy2arr2140 := z.EncBasicHandle().StructToArray - var yyq2140 [2]bool - _, _, _ = yysep2140, yyq2140, yy2arr2140 - const yyr2140 bool = false - var yynn2140 int - if yyr2140 || yy2arr2140 { + yysep2145 := !z.EncBinary() + yy2arr2145 := z.EncBasicHandle().StructToArray + var yyq2145 [2]bool + _, _, _ = yysep2145, yyq2145, yy2arr2145 + const yyr2145 bool = false + var yynn2145 int + if yyr2145 || yy2arr2145 { r.EncodeArrayStart(2) } else { - yynn2140 = 2 - for _, b := range yyq2140 { + yynn2145 = 2 + for _, b := range yyq2145 { if b { - yynn2140++ + yynn2145++ } } - r.EncodeMapStart(yynn2140) - yynn2140 = 0 + r.EncodeMapStart(yynn2145) + yynn2145 = 0 } - if yyr2140 || yy2arr2140 { + if yyr2145 || yy2arr2145 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2142 := z.EncBinary() - _ = yym2142 + yym2147 := z.EncBinary() + _ = yym2147 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -27454,14 +27502,14 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("IP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2143 := z.EncBinary() - _ = yym2143 + yym2148 := z.EncBinary() + _ = yym2148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2140 || yy2arr2140 { + if yyr2145 || yy2arr2145 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetRef == nil { r.EncodeNil() @@ -27478,7 +27526,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { x.TargetRef.CodecEncodeSelf(e) } } - if yyr2140 || yy2arr2140 { + if yyr2145 || yy2arr2145 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27491,25 +27539,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2145 := z.DecBinary() - _ = yym2145 + yym2150 := z.DecBinary() + _ = yym2150 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2146 := r.ContainerType() - if yyct2146 == codecSelferValueTypeMap1234 { - yyl2146 := r.ReadMapStart() - if yyl2146 == 0 { + yyct2151 := r.ContainerType() + if yyct2151 == codecSelferValueTypeMap1234 { + yyl2151 := r.ReadMapStart() + if yyl2151 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2146, d) + x.codecDecodeSelfFromMap(yyl2151, d) } - } else if yyct2146 == codecSelferValueTypeArray1234 { - yyl2146 := r.ReadArrayStart() - if yyl2146 == 0 { + } else if yyct2151 == codecSelferValueTypeArray1234 { + yyl2151 := r.ReadArrayStart() + if yyl2151 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2146, d) + x.codecDecodeSelfFromArray(yyl2151, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27521,12 +27569,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2147Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2147Slc - var yyhl2147 bool = l >= 0 - for yyj2147 := 0; ; yyj2147++ { - if yyhl2147 { - if yyj2147 >= l { + var yys2152Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2152Slc + var yyhl2152 bool = l >= 0 + for yyj2152 := 0; ; yyj2152++ { + if yyhl2152 { + if yyj2152 >= l { break } } else { @@ -27535,10 +27583,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2147Slc = r.DecodeBytes(yys2147Slc, true, true) - yys2147 := string(yys2147Slc) + yys2152Slc = r.DecodeBytes(yys2152Slc, true, true) + yys2152 := string(yys2152Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2147 { + switch yys2152 { case "IP": if r.TryDecodeAsNil() { x.IP = "" @@ -27557,9 +27605,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2147) - } // end switch yys2147 - } // end for yyj2147 + z.DecStructFieldNotFound(-1, yys2152) + } // end switch yys2152 + } // end for yyj2152 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27567,16 +27615,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2150 int - var yyb2150 bool - var yyhl2150 bool = l >= 0 - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + var yyj2155 int + var yyb2155 bool + var yyhl2155 bool = l >= 0 + yyj2155++ + if yyhl2155 { + yyb2155 = yyj2155 > l } else { - yyb2150 = r.CheckBreak() + yyb2155 = r.CheckBreak() } - if yyb2150 { + if yyb2155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27586,13 +27634,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2155++ + if yyhl2155 { + yyb2155 = yyj2155 > l } else { - yyb2150 = r.CheckBreak() + yyb2155 = r.CheckBreak() } - if yyb2150 { + if yyb2155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27608,17 +27656,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2150++ - if yyhl2150 { - yyb2150 = yyj2150 > l + yyj2155++ + if yyhl2155 { + yyb2155 = yyj2155 > l } else { - yyb2150 = r.CheckBreak() + yyb2155 = r.CheckBreak() } - if yyb2150 { + if yyb2155 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2150-1, "") + z.DecStructFieldNotFound(yyj2155-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27630,33 +27678,33 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2153 := z.EncBinary() - _ = yym2153 + yym2158 := z.EncBinary() + _ = yym2158 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2154 := !z.EncBinary() - yy2arr2154 := z.EncBasicHandle().StructToArray - var yyq2154 [3]bool - _, _, _ = yysep2154, yyq2154, yy2arr2154 - const yyr2154 bool = false - var yynn2154 int - if yyr2154 || yy2arr2154 { + yysep2159 := !z.EncBinary() + yy2arr2159 := z.EncBasicHandle().StructToArray + var yyq2159 [3]bool + _, _, _ = yysep2159, yyq2159, yy2arr2159 + const yyr2159 bool = false + var yynn2159 int + if yyr2159 || yy2arr2159 { r.EncodeArrayStart(3) } else { - yynn2154 = 3 - for _, b := range yyq2154 { + yynn2159 = 3 + for _, b := range yyq2159 { if b { - yynn2154++ + yynn2159++ } } - r.EncodeMapStart(yynn2154) - yynn2154 = 0 + r.EncodeMapStart(yynn2159) + yynn2159 = 0 } - if yyr2154 || yy2arr2154 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2156 := z.EncBinary() - _ = yym2156 + yym2161 := z.EncBinary() + _ = yym2161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -27665,17 +27713,17 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2157 := z.EncBinary() - _ = yym2157 + yym2162 := z.EncBinary() + _ = yym2162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2154 || yy2arr2154 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2159 := z.EncBinary() - _ = yym2159 + yym2164 := z.EncBinary() + _ = yym2164 if false { } else { r.EncodeInt(int64(x.Port)) @@ -27684,14 +27732,14 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2160 := z.EncBinary() - _ = yym2160 + yym2165 := z.EncBinary() + _ = yym2165 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2154 || yy2arr2154 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Protocol.CodecEncodeSelf(e) } else { @@ -27700,7 +27748,7 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } - if yyr2154 || yy2arr2154 { + if yyr2159 || yy2arr2159 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27713,25 +27761,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2162 := z.DecBinary() - _ = yym2162 + yym2167 := z.DecBinary() + _ = yym2167 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2163 := r.ContainerType() - if yyct2163 == codecSelferValueTypeMap1234 { - yyl2163 := r.ReadMapStart() - if yyl2163 == 0 { + yyct2168 := r.ContainerType() + if yyct2168 == codecSelferValueTypeMap1234 { + yyl2168 := r.ReadMapStart() + if yyl2168 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2163, d) + x.codecDecodeSelfFromMap(yyl2168, d) } - } else if yyct2163 == codecSelferValueTypeArray1234 { - yyl2163 := r.ReadArrayStart() - if yyl2163 == 0 { + } else if yyct2168 == codecSelferValueTypeArray1234 { + yyl2168 := r.ReadArrayStart() + if yyl2168 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2163, d) + x.codecDecodeSelfFromArray(yyl2168, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27743,12 +27791,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2164Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2164Slc - var yyhl2164 bool = l >= 0 - for yyj2164 := 0; ; yyj2164++ { - if yyhl2164 { - if yyj2164 >= l { + var yys2169Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2169Slc + var yyhl2169 bool = l >= 0 + for yyj2169 := 0; ; yyj2169++ { + if yyhl2169 { + if yyj2169 >= l { break } } else { @@ -27757,10 +27805,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2164Slc = r.DecodeBytes(yys2164Slc, true, true) - yys2164 := string(yys2164Slc) + yys2169Slc = r.DecodeBytes(yys2169Slc, true, true) + yys2169 := string(yys2169Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2164 { + switch yys2169 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -27780,9 +27828,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2164) - } // end switch yys2164 - } // end for yyj2164 + z.DecStructFieldNotFound(-1, yys2169) + } // end switch yys2169 + } // end for yyj2169 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27790,16 +27838,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2168 int - var yyb2168 bool - var yyhl2168 bool = l >= 0 - yyj2168++ - if yyhl2168 { - yyb2168 = yyj2168 > l + var yyj2173 int + var yyb2173 bool + var yyhl2173 bool = l >= 0 + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2168 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2168 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27809,13 +27857,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2168++ - if yyhl2168 { - yyb2168 = yyj2168 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2168 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2168 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27825,13 +27873,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2168++ - if yyhl2168 { - yyb2168 = yyj2168 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2168 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2168 { + if yyb2173 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27842,17 +27890,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2168++ - if yyhl2168 { - yyb2168 = yyj2168 > l + yyj2173++ + if yyhl2173 { + yyb2173 = yyj2173 > l } else { - yyb2168 = r.CheckBreak() + yyb2173 = r.CheckBreak() } - if yyb2168 { + if yyb2173 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2168-1, "") + z.DecStructFieldNotFound(yyj2173-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27864,37 +27912,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2172 := z.EncBinary() - _ = yym2172 + yym2177 := z.EncBinary() + _ = yym2177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2173 := !z.EncBinary() - yy2arr2173 := z.EncBasicHandle().StructToArray - var yyq2173 [4]bool - _, _, _ = yysep2173, yyq2173, yy2arr2173 - const yyr2173 bool = false - yyq2173[0] = x.Kind != "" - yyq2173[1] = x.APIVersion != "" - yyq2173[2] = true - var yynn2173 int - if yyr2173 || yy2arr2173 { + yysep2178 := !z.EncBinary() + yy2arr2178 := z.EncBasicHandle().StructToArray + var yyq2178 [4]bool + _, _, _ = yysep2178, yyq2178, yy2arr2178 + const yyr2178 bool = false + yyq2178[0] = x.Kind != "" + yyq2178[1] = x.APIVersion != "" + yyq2178[2] = true + var yynn2178 int + if yyr2178 || yy2arr2178 { r.EncodeArrayStart(4) } else { - yynn2173 = 1 - for _, b := range yyq2173 { + yynn2178 = 1 + for _, b := range yyq2178 { if b { - yynn2173++ + yynn2178++ } } - r.EncodeMapStart(yynn2173) - yynn2173 = 0 + r.EncodeMapStart(yynn2178) + yynn2178 = 0 } - if yyr2173 || yy2arr2173 { + if yyr2178 || yy2arr2178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2173[0] { - yym2175 := z.EncBinary() - _ = yym2175 + if yyq2178[0] { + yym2180 := z.EncBinary() + _ = yym2180 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27903,23 +27951,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2173[0] { + if yyq2178[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2176 := z.EncBinary() - _ = yym2176 + yym2181 := z.EncBinary() + _ = yym2181 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2173 || yy2arr2173 { + if yyr2178 || yy2arr2178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2173[1] { - yym2178 := z.EncBinary() - _ = yym2178 + if yyq2178[1] { + yym2183 := z.EncBinary() + _ = yym2183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27928,54 +27976,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2173[1] { + if yyq2178[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2179 := z.EncBinary() - _ = yym2179 + yym2184 := z.EncBinary() + _ = yym2184 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2173 || yy2arr2173 { + if yyr2178 || yy2arr2178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2173[2] { - yy2181 := &x.ListMeta - yym2182 := z.EncBinary() - _ = yym2182 + if yyq2178[2] { + yy2186 := &x.ListMeta + yym2187 := z.EncBinary() + _ = yym2187 if false { - } else if z.HasExtensions() && z.EncExt(yy2181) { + } else if z.HasExtensions() && z.EncExt(yy2186) { } else { - z.EncFallback(yy2181) + z.EncFallback(yy2186) } } else { r.EncodeNil() } } else { - if yyq2173[2] { + if yyq2178[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2183 := &x.ListMeta - yym2184 := z.EncBinary() - _ = yym2184 + yy2188 := &x.ListMeta + yym2189 := z.EncBinary() + _ = yym2189 if false { - } else if z.HasExtensions() && z.EncExt(yy2183) { + } else if z.HasExtensions() && z.EncExt(yy2188) { } else { - z.EncFallback(yy2183) + z.EncFallback(yy2188) } } } - if yyr2173 || yy2arr2173 { + if yyr2178 || yy2arr2178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2186 := z.EncBinary() - _ = yym2186 + yym2191 := z.EncBinary() + _ = yym2191 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -27988,15 +28036,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2187 := z.EncBinary() - _ = yym2187 + yym2192 := z.EncBinary() + _ = yym2192 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2173 || yy2arr2173 { + if yyr2178 || yy2arr2178 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28009,25 +28057,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2188 := z.DecBinary() - _ = yym2188 + yym2193 := z.DecBinary() + _ = yym2193 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2189 := r.ContainerType() - if yyct2189 == codecSelferValueTypeMap1234 { - yyl2189 := r.ReadMapStart() - if yyl2189 == 0 { + yyct2194 := r.ContainerType() + if yyct2194 == codecSelferValueTypeMap1234 { + yyl2194 := r.ReadMapStart() + if yyl2194 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2189, d) + x.codecDecodeSelfFromMap(yyl2194, d) } - } else if yyct2189 == codecSelferValueTypeArray1234 { - yyl2189 := r.ReadArrayStart() - if yyl2189 == 0 { + } else if yyct2194 == codecSelferValueTypeArray1234 { + yyl2194 := r.ReadArrayStart() + if yyl2194 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2189, d) + x.codecDecodeSelfFromArray(yyl2194, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28039,12 +28087,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2190Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2190Slc - var yyhl2190 bool = l >= 0 - for yyj2190 := 0; ; yyj2190++ { - if yyhl2190 { - if yyj2190 >= l { + var yys2195Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2195Slc + var yyhl2195 bool = l >= 0 + for yyj2195 := 0; ; yyj2195++ { + if yyhl2195 { + if yyj2195 >= l { break } } else { @@ -28053,10 +28101,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2190Slc = r.DecodeBytes(yys2190Slc, true, true) - yys2190 := string(yys2190Slc) + yys2195Slc = r.DecodeBytes(yys2195Slc, true, true) + yys2195 := string(yys2195Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2190 { + switch yys2195 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -28073,31 +28121,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2193 := &x.ListMeta - yym2194 := z.DecBinary() - _ = yym2194 + yyv2198 := &x.ListMeta + yym2199 := z.DecBinary() + _ = yym2199 if false { - } else if z.HasExtensions() && z.DecExt(yyv2193) { + } else if z.HasExtensions() && z.DecExt(yyv2198) { } else { - z.DecFallback(yyv2193, false) + z.DecFallback(yyv2198, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2195 := &x.Items - yym2196 := z.DecBinary() - _ = yym2196 + yyv2200 := &x.Items + yym2201 := z.DecBinary() + _ = yym2201 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2195), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2200), d) } } default: - z.DecStructFieldNotFound(-1, yys2190) - } // end switch yys2190 - } // end for yyj2190 + z.DecStructFieldNotFound(-1, yys2195) + } // end switch yys2195 + } // end for yyj2195 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28105,16 +28153,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2197 int - var yyb2197 bool - var yyhl2197 bool = l >= 0 - yyj2197++ - if yyhl2197 { - yyb2197 = yyj2197 > l + var yyj2202 int + var yyb2202 bool + var yyhl2202 bool = l >= 0 + yyj2202++ + if yyhl2202 { + yyb2202 = yyj2202 > l } else { - yyb2197 = r.CheckBreak() + yyb2202 = r.CheckBreak() } - if yyb2197 { + if yyb2202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28124,13 +28172,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2197++ - if yyhl2197 { - yyb2197 = yyj2197 > l + yyj2202++ + if yyhl2202 { + yyb2202 = yyj2202 > l } else { - yyb2197 = r.CheckBreak() + yyb2202 = r.CheckBreak() } - if yyb2197 { + if yyb2202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28140,13 +28188,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2197++ - if yyhl2197 { - yyb2197 = yyj2197 > l + yyj2202++ + if yyhl2202 { + yyb2202 = yyj2202 > l } else { - yyb2197 = r.CheckBreak() + yyb2202 = r.CheckBreak() } - if yyb2197 { + if yyb2202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28154,22 +28202,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2200 := &x.ListMeta - yym2201 := z.DecBinary() - _ = yym2201 + yyv2205 := &x.ListMeta + yym2206 := z.DecBinary() + _ = yym2206 if false { - } else if z.HasExtensions() && z.DecExt(yyv2200) { + } else if z.HasExtensions() && z.DecExt(yyv2205) { } else { - z.DecFallback(yyv2200, false) + z.DecFallback(yyv2205, false) } } - yyj2197++ - if yyhl2197 { - yyb2197 = yyj2197 > l + yyj2202++ + if yyhl2202 { + yyb2202 = yyj2202 > l } else { - yyb2197 = r.CheckBreak() + yyb2202 = r.CheckBreak() } - if yyb2197 { + if yyb2202 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28177,26 +28225,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2202 := &x.Items - yym2203 := z.DecBinary() - _ = yym2203 + yyv2207 := &x.Items + yym2208 := z.DecBinary() + _ = yym2208 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2202), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2207), d) } } for { - yyj2197++ - if yyhl2197 { - yyb2197 = yyj2197 > l + yyj2202++ + if yyhl2202 { + yyb2202 = yyj2202 > l } else { - yyb2197 = r.CheckBreak() + yyb2202 = r.CheckBreak() } - if yyb2197 { + if yyb2202 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2197-1, "") + z.DecStructFieldNotFound(yyj2202-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28208,38 +28256,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2204 := z.EncBinary() - _ = yym2204 + yym2209 := z.EncBinary() + _ = yym2209 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2205 := !z.EncBinary() - yy2arr2205 := z.EncBasicHandle().StructToArray - var yyq2205 [4]bool - _, _, _ = yysep2205, yyq2205, yy2arr2205 - const yyr2205 bool = false - yyq2205[0] = x.PodCIDR != "" - yyq2205[1] = x.ExternalID != "" - yyq2205[2] = x.ProviderID != "" - yyq2205[3] = x.Unschedulable != false - var yynn2205 int - if yyr2205 || yy2arr2205 { + yysep2210 := !z.EncBinary() + yy2arr2210 := z.EncBasicHandle().StructToArray + var yyq2210 [4]bool + _, _, _ = yysep2210, yyq2210, yy2arr2210 + const yyr2210 bool = false + yyq2210[0] = x.PodCIDR != "" + yyq2210[1] = x.ExternalID != "" + yyq2210[2] = x.ProviderID != "" + yyq2210[3] = x.Unschedulable != false + var yynn2210 int + if yyr2210 || yy2arr2210 { r.EncodeArrayStart(4) } else { - yynn2205 = 0 - for _, b := range yyq2205 { + yynn2210 = 0 + for _, b := range yyq2210 { if b { - yynn2205++ + yynn2210++ } } - r.EncodeMapStart(yynn2205) - yynn2205 = 0 + r.EncodeMapStart(yynn2210) + yynn2210 = 0 } - if yyr2205 || yy2arr2205 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2205[0] { - yym2207 := z.EncBinary() - _ = yym2207 + if yyq2210[0] { + yym2212 := z.EncBinary() + _ = yym2212 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -28248,23 +28296,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2205[0] { + if yyq2210[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2208 := z.EncBinary() - _ = yym2208 + yym2213 := z.EncBinary() + _ = yym2213 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2205 || yy2arr2205 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2205[1] { - yym2210 := z.EncBinary() - _ = yym2210 + if yyq2210[1] { + yym2215 := z.EncBinary() + _ = yym2215 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -28273,23 +28321,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2205[1] { + if yyq2210[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2211 := z.EncBinary() - _ = yym2211 + yym2216 := z.EncBinary() + _ = yym2216 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2205 || yy2arr2205 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2205[2] { - yym2213 := z.EncBinary() - _ = yym2213 + if yyq2210[2] { + yym2218 := z.EncBinary() + _ = yym2218 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -28298,23 +28346,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2205[2] { + if yyq2210[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2214 := z.EncBinary() - _ = yym2214 + yym2219 := z.EncBinary() + _ = yym2219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2205 || yy2arr2205 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2205[3] { - yym2216 := z.EncBinary() - _ = yym2216 + if yyq2210[3] { + yym2221 := z.EncBinary() + _ = yym2221 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -28323,19 +28371,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2205[3] { + if yyq2210[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2217 := z.EncBinary() - _ = yym2217 + yym2222 := z.EncBinary() + _ = yym2222 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2205 || yy2arr2205 { + if yyr2210 || yy2arr2210 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28348,25 +28396,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2218 := z.DecBinary() - _ = yym2218 + yym2223 := z.DecBinary() + _ = yym2223 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2219 := r.ContainerType() - if yyct2219 == codecSelferValueTypeMap1234 { - yyl2219 := r.ReadMapStart() - if yyl2219 == 0 { + yyct2224 := r.ContainerType() + if yyct2224 == codecSelferValueTypeMap1234 { + yyl2224 := r.ReadMapStart() + if yyl2224 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2219, d) + x.codecDecodeSelfFromMap(yyl2224, d) } - } else if yyct2219 == codecSelferValueTypeArray1234 { - yyl2219 := r.ReadArrayStart() - if yyl2219 == 0 { + } else if yyct2224 == codecSelferValueTypeArray1234 { + yyl2224 := r.ReadArrayStart() + if yyl2224 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2219, d) + x.codecDecodeSelfFromArray(yyl2224, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28378,12 +28426,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2220Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2220Slc - var yyhl2220 bool = l >= 0 - for yyj2220 := 0; ; yyj2220++ { - if yyhl2220 { - if yyj2220 >= l { + var yys2225Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2225Slc + var yyhl2225 bool = l >= 0 + for yyj2225 := 0; ; yyj2225++ { + if yyhl2225 { + if yyj2225 >= l { break } } else { @@ -28392,10 +28440,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2220Slc = r.DecodeBytes(yys2220Slc, true, true) - yys2220 := string(yys2220Slc) + yys2225Slc = r.DecodeBytes(yys2225Slc, true, true) + yys2225 := string(yys2225Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2220 { + switch yys2225 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -28421,9 +28469,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2220) - } // end switch yys2220 - } // end for yyj2220 + z.DecStructFieldNotFound(-1, yys2225) + } // end switch yys2225 + } // end for yyj2225 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28431,16 +28479,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2225 int - var yyb2225 bool - var yyhl2225 bool = l >= 0 - yyj2225++ - if yyhl2225 { - yyb2225 = yyj2225 > l + var yyj2230 int + var yyb2230 bool + var yyhl2230 bool = l >= 0 + yyj2230++ + if yyhl2230 { + yyb2230 = yyj2230 > l } else { - yyb2225 = r.CheckBreak() + yyb2230 = r.CheckBreak() } - if yyb2225 { + if yyb2230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28450,13 +28498,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2225++ - if yyhl2225 { - yyb2225 = yyj2225 > l + yyj2230++ + if yyhl2230 { + yyb2230 = yyj2230 > l } else { - yyb2225 = r.CheckBreak() + yyb2230 = r.CheckBreak() } - if yyb2225 { + if yyb2230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28466,13 +28514,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2225++ - if yyhl2225 { - yyb2225 = yyj2225 > l + yyj2230++ + if yyhl2230 { + yyb2230 = yyj2230 > l } else { - yyb2225 = r.CheckBreak() + yyb2230 = r.CheckBreak() } - if yyb2225 { + if yyb2230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28482,13 +28530,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2225++ - if yyhl2225 { - yyb2225 = yyj2225 > l + yyj2230++ + if yyhl2230 { + yyb2230 = yyj2230 > l } else { - yyb2225 = r.CheckBreak() + yyb2230 = r.CheckBreak() } - if yyb2225 { + if yyb2230 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28499,17 +28547,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2225++ - if yyhl2225 { - yyb2225 = yyj2225 > l + yyj2230++ + if yyhl2230 { + yyb2230 = yyj2230 > l } else { - yyb2225 = r.CheckBreak() + yyb2230 = r.CheckBreak() } - if yyb2225 { + if yyb2230 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2225-1, "") + z.DecStructFieldNotFound(yyj2230-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28521,33 +28569,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2230 := z.EncBinary() - _ = yym2230 + yym2235 := z.EncBinary() + _ = yym2235 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2231 := !z.EncBinary() - yy2arr2231 := z.EncBasicHandle().StructToArray - var yyq2231 [1]bool - _, _, _ = yysep2231, yyq2231, yy2arr2231 - const yyr2231 bool = false - var yynn2231 int - if yyr2231 || yy2arr2231 { + yysep2236 := !z.EncBinary() + yy2arr2236 := z.EncBasicHandle().StructToArray + var yyq2236 [1]bool + _, _, _ = yysep2236, yyq2236, yy2arr2236 + const yyr2236 bool = false + var yynn2236 int + if yyr2236 || yy2arr2236 { r.EncodeArrayStart(1) } else { - yynn2231 = 1 - for _, b := range yyq2231 { + yynn2236 = 1 + for _, b := range yyq2236 { if b { - yynn2231++ + yynn2236++ } } - r.EncodeMapStart(yynn2231) - yynn2231 = 0 + r.EncodeMapStart(yynn2236) + yynn2236 = 0 } - if yyr2231 || yy2arr2231 { + if yyr2236 || yy2arr2236 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2233 := z.EncBinary() - _ = yym2233 + yym2238 := z.EncBinary() + _ = yym2238 if false { } else { r.EncodeInt(int64(x.Port)) @@ -28556,14 +28604,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2234 := z.EncBinary() - _ = yym2234 + yym2239 := z.EncBinary() + _ = yym2239 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2231 || yy2arr2231 { + if yyr2236 || yy2arr2236 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28576,25 +28624,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2235 := z.DecBinary() - _ = yym2235 + yym2240 := z.DecBinary() + _ = yym2240 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2236 := r.ContainerType() - if yyct2236 == codecSelferValueTypeMap1234 { - yyl2236 := r.ReadMapStart() - if yyl2236 == 0 { + yyct2241 := r.ContainerType() + if yyct2241 == codecSelferValueTypeMap1234 { + yyl2241 := r.ReadMapStart() + if yyl2241 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2236, d) + x.codecDecodeSelfFromMap(yyl2241, d) } - } else if yyct2236 == codecSelferValueTypeArray1234 { - yyl2236 := r.ReadArrayStart() - if yyl2236 == 0 { + } else if yyct2241 == codecSelferValueTypeArray1234 { + yyl2241 := r.ReadArrayStart() + if yyl2241 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2236, d) + x.codecDecodeSelfFromArray(yyl2241, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28606,12 +28654,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2237Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2237Slc - var yyhl2237 bool = l >= 0 - for yyj2237 := 0; ; yyj2237++ { - if yyhl2237 { - if yyj2237 >= l { + var yys2242Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2242Slc + var yyhl2242 bool = l >= 0 + for yyj2242 := 0; ; yyj2242++ { + if yyhl2242 { + if yyj2242 >= l { break } } else { @@ -28620,10 +28668,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2237Slc = r.DecodeBytes(yys2237Slc, true, true) - yys2237 := string(yys2237Slc) + yys2242Slc = r.DecodeBytes(yys2242Slc, true, true) + yys2242 := string(yys2242Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2237 { + switch yys2242 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -28631,9 +28679,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } default: - z.DecStructFieldNotFound(-1, yys2237) - } // end switch yys2237 - } // end for yyj2237 + z.DecStructFieldNotFound(-1, yys2242) + } // end switch yys2242 + } // end for yyj2242 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28641,16 +28689,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2239 int - var yyb2239 bool - var yyhl2239 bool = l >= 0 - yyj2239++ - if yyhl2239 { - yyb2239 = yyj2239 > l + var yyj2244 int + var yyb2244 bool + var yyhl2244 bool = l >= 0 + yyj2244++ + if yyhl2244 { + yyb2244 = yyj2244 > l } else { - yyb2239 = r.CheckBreak() + yyb2244 = r.CheckBreak() } - if yyb2239 { + if yyb2244 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28661,17 +28709,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int(r.DecodeInt(codecSelferBitsize1234)) } for { - yyj2239++ - if yyhl2239 { - yyb2239 = yyj2239 > l + yyj2244++ + if yyhl2244 { + yyb2244 = yyj2244 > l } else { - yyb2239 = r.CheckBreak() + yyb2244 = r.CheckBreak() } - if yyb2239 { + if yyb2244 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2239-1, "") + z.DecStructFieldNotFound(yyj2244-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28683,48 +28731,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2241 := z.EncBinary() - _ = yym2241 + yym2246 := z.EncBinary() + _ = yym2246 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2242 := !z.EncBinary() - yy2arr2242 := z.EncBasicHandle().StructToArray - var yyq2242 [1]bool - _, _, _ = yysep2242, yyq2242, yy2arr2242 - const yyr2242 bool = false - yyq2242[0] = true - var yynn2242 int - if yyr2242 || yy2arr2242 { + yysep2247 := !z.EncBinary() + yy2arr2247 := z.EncBasicHandle().StructToArray + var yyq2247 [1]bool + _, _, _ = yysep2247, yyq2247, yy2arr2247 + const yyr2247 bool = false + yyq2247[0] = true + var yynn2247 int + if yyr2247 || yy2arr2247 { r.EncodeArrayStart(1) } else { - yynn2242 = 0 - for _, b := range yyq2242 { + yynn2247 = 0 + for _, b := range yyq2247 { if b { - yynn2242++ + yynn2247++ } } - r.EncodeMapStart(yynn2242) - yynn2242 = 0 + r.EncodeMapStart(yynn2247) + yynn2247 = 0 } - if yyr2242 || yy2arr2242 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2242[0] { - yy2244 := &x.KubeletEndpoint - yy2244.CodecEncodeSelf(e) + if yyq2247[0] { + yy2249 := &x.KubeletEndpoint + yy2249.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2242[0] { + if yyq2247[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2245 := &x.KubeletEndpoint - yy2245.CodecEncodeSelf(e) + yy2250 := &x.KubeletEndpoint + yy2250.CodecEncodeSelf(e) } } - if yyr2242 || yy2arr2242 { + if yyr2247 || yy2arr2247 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28737,25 +28785,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2246 := z.DecBinary() - _ = yym2246 + yym2251 := z.DecBinary() + _ = yym2251 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2247 := r.ContainerType() - if yyct2247 == codecSelferValueTypeMap1234 { - yyl2247 := r.ReadMapStart() - if yyl2247 == 0 { + yyct2252 := r.ContainerType() + if yyct2252 == codecSelferValueTypeMap1234 { + yyl2252 := r.ReadMapStart() + if yyl2252 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2247, d) + x.codecDecodeSelfFromMap(yyl2252, d) } - } else if yyct2247 == codecSelferValueTypeArray1234 { - yyl2247 := r.ReadArrayStart() - if yyl2247 == 0 { + } else if yyct2252 == codecSelferValueTypeArray1234 { + yyl2252 := r.ReadArrayStart() + if yyl2252 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2247, d) + x.codecDecodeSelfFromArray(yyl2252, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28767,12 +28815,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2248Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2248Slc - var yyhl2248 bool = l >= 0 - for yyj2248 := 0; ; yyj2248++ { - if yyhl2248 { - if yyj2248 >= l { + var yys2253Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2253Slc + var yyhl2253 bool = l >= 0 + for yyj2253 := 0; ; yyj2253++ { + if yyhl2253 { + if yyj2253 >= l { break } } else { @@ -28781,21 +28829,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2248Slc = r.DecodeBytes(yys2248Slc, true, true) - yys2248 := string(yys2248Slc) + yys2253Slc = r.DecodeBytes(yys2253Slc, true, true) + yys2253 := string(yys2253Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2248 { + switch yys2253 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2249 := &x.KubeletEndpoint - yyv2249.CodecDecodeSelf(d) + yyv2254 := &x.KubeletEndpoint + yyv2254.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2248) - } // end switch yys2248 - } // end for yyj2248 + z.DecStructFieldNotFound(-1, yys2253) + } // end switch yys2253 + } // end for yyj2253 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28803,16 +28851,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2250 int - var yyb2250 bool - var yyhl2250 bool = l >= 0 - yyj2250++ - if yyhl2250 { - yyb2250 = yyj2250 > l + var yyj2255 int + var yyb2255 bool + var yyhl2255 bool = l >= 0 + yyj2255++ + if yyhl2255 { + yyb2255 = yyj2255 > l } else { - yyb2250 = r.CheckBreak() + yyb2255 = r.CheckBreak() } - if yyb2250 { + if yyb2255 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28820,21 +28868,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2251 := &x.KubeletEndpoint - yyv2251.CodecDecodeSelf(d) + yyv2256 := &x.KubeletEndpoint + yyv2256.CodecDecodeSelf(d) } for { - yyj2250++ - if yyhl2250 { - yyb2250 = yyj2250 > l + yyj2255++ + if yyhl2255 { + yyb2255 = yyj2255 > l } else { - yyb2250 = r.CheckBreak() + yyb2255 = r.CheckBreak() } - if yyb2250 { + if yyb2255 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2250-1, "") + z.DecStructFieldNotFound(yyj2255-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28846,33 +28894,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2252 := z.EncBinary() - _ = yym2252 + yym2257 := z.EncBinary() + _ = yym2257 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2253 := !z.EncBinary() - yy2arr2253 := z.EncBasicHandle().StructToArray - var yyq2253 [8]bool - _, _, _ = yysep2253, yyq2253, yy2arr2253 - const yyr2253 bool = false - var yynn2253 int - if yyr2253 || yy2arr2253 { + yysep2258 := !z.EncBinary() + yy2arr2258 := z.EncBasicHandle().StructToArray + var yyq2258 [8]bool + _, _, _ = yysep2258, yyq2258, yy2arr2258 + const yyr2258 bool = false + var yynn2258 int + if yyr2258 || yy2arr2258 { r.EncodeArrayStart(8) } else { - yynn2253 = 8 - for _, b := range yyq2253 { + yynn2258 = 8 + for _, b := range yyq2258 { if b { - yynn2253++ + yynn2258++ } } - r.EncodeMapStart(yynn2253) - yynn2253 = 0 + r.EncodeMapStart(yynn2258) + yynn2258 = 0 } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2255 := z.EncBinary() - _ = yym2255 + yym2260 := z.EncBinary() + _ = yym2260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -28881,17 +28929,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2256 := z.EncBinary() - _ = yym2256 + yym2261 := z.EncBinary() + _ = yym2261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2258 := z.EncBinary() - _ = yym2258 + yym2263 := z.EncBinary() + _ = yym2263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -28900,17 +28948,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2259 := z.EncBinary() - _ = yym2259 + yym2264 := z.EncBinary() + _ = yym2264 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2261 := z.EncBinary() - _ = yym2261 + yym2266 := z.EncBinary() + _ = yym2266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -28919,17 +28967,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2262 := z.EncBinary() - _ = yym2262 + yym2267 := z.EncBinary() + _ = yym2267 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2264 := z.EncBinary() - _ = yym2264 + yym2269 := z.EncBinary() + _ = yym2269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -28938,17 +28986,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2265 := z.EncBinary() - _ = yym2265 + yym2270 := z.EncBinary() + _ = yym2270 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2267 := z.EncBinary() - _ = yym2267 + yym2272 := z.EncBinary() + _ = yym2272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OsImage)) @@ -28957,17 +29005,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2268 := z.EncBinary() - _ = yym2268 + yym2273 := z.EncBinary() + _ = yym2273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OsImage)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2270 := z.EncBinary() - _ = yym2270 + yym2275 := z.EncBinary() + _ = yym2275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -28976,17 +29024,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2271 := z.EncBinary() - _ = yym2271 + yym2276 := z.EncBinary() + _ = yym2276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2273 := z.EncBinary() - _ = yym2273 + yym2278 := z.EncBinary() + _ = yym2278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -28995,17 +29043,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2274 := z.EncBinary() - _ = yym2274 + yym2279 := z.EncBinary() + _ = yym2279 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2276 := z.EncBinary() - _ = yym2276 + yym2281 := z.EncBinary() + _ = yym2281 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -29014,14 +29062,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2277 := z.EncBinary() - _ = yym2277 + yym2282 := z.EncBinary() + _ = yym2282 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2253 || yy2arr2253 { + if yyr2258 || yy2arr2258 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29034,25 +29082,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2278 := z.DecBinary() - _ = yym2278 + yym2283 := z.DecBinary() + _ = yym2283 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2279 := r.ContainerType() - if yyct2279 == codecSelferValueTypeMap1234 { - yyl2279 := r.ReadMapStart() - if yyl2279 == 0 { + yyct2284 := r.ContainerType() + if yyct2284 == codecSelferValueTypeMap1234 { + yyl2284 := r.ReadMapStart() + if yyl2284 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2279, d) + x.codecDecodeSelfFromMap(yyl2284, d) } - } else if yyct2279 == codecSelferValueTypeArray1234 { - yyl2279 := r.ReadArrayStart() - if yyl2279 == 0 { + } else if yyct2284 == codecSelferValueTypeArray1234 { + yyl2284 := r.ReadArrayStart() + if yyl2284 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2279, d) + x.codecDecodeSelfFromArray(yyl2284, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29064,12 +29112,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2280Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2280Slc - var yyhl2280 bool = l >= 0 - for yyj2280 := 0; ; yyj2280++ { - if yyhl2280 { - if yyj2280 >= l { + var yys2285Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2285Slc + var yyhl2285 bool = l >= 0 + for yyj2285 := 0; ; yyj2285++ { + if yyhl2285 { + if yyj2285 >= l { break } } else { @@ -29078,10 +29126,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2280Slc = r.DecodeBytes(yys2280Slc, true, true) - yys2280 := string(yys2280Slc) + yys2285Slc = r.DecodeBytes(yys2285Slc, true, true) + yys2285 := string(yys2285Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2280 { + switch yys2285 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -29131,9 +29179,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2280) - } // end switch yys2280 - } // end for yyj2280 + z.DecStructFieldNotFound(-1, yys2285) + } // end switch yys2285 + } // end for yyj2285 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29141,16 +29189,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2289 int - var yyb2289 bool - var yyhl2289 bool = l >= 0 - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + var yyj2294 int + var yyb2294 bool + var yyhl2294 bool = l >= 0 + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29160,13 +29208,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29176,13 +29224,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29192,13 +29240,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29208,13 +29256,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29224,13 +29272,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OsImage = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29240,13 +29288,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29256,13 +29304,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29273,17 +29321,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2289++ - if yyhl2289 { - yyb2289 = yyj2289 > l + yyj2294++ + if yyhl2294 { + yyb2294 = yyj2294 > l } else { - yyb2289 = r.CheckBreak() + yyb2294 = r.CheckBreak() } - if yyb2289 { + if yyb2294 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2289-1, "") + z.DecStructFieldNotFound(yyj2294-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29295,38 +29343,38 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2298 := z.EncBinary() - _ = yym2298 + yym2303 := z.EncBinary() + _ = yym2303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2299 := !z.EncBinary() - yy2arr2299 := z.EncBasicHandle().StructToArray - var yyq2299 [6]bool - _, _, _ = yysep2299, yyq2299, yy2arr2299 - const yyr2299 bool = false - yyq2299[0] = len(x.Capacity) != 0 - yyq2299[1] = x.Phase != "" - yyq2299[2] = len(x.Conditions) != 0 - yyq2299[3] = len(x.Addresses) != 0 - yyq2299[4] = true - yyq2299[5] = true - var yynn2299 int - if yyr2299 || yy2arr2299 { + yysep2304 := !z.EncBinary() + yy2arr2304 := z.EncBasicHandle().StructToArray + var yyq2304 [6]bool + _, _, _ = yysep2304, yyq2304, yy2arr2304 + const yyr2304 bool = false + yyq2304[0] = len(x.Capacity) != 0 + yyq2304[1] = x.Phase != "" + yyq2304[2] = len(x.Conditions) != 0 + yyq2304[3] = len(x.Addresses) != 0 + yyq2304[4] = true + yyq2304[5] = true + var yynn2304 int + if yyr2304 || yy2arr2304 { r.EncodeArrayStart(6) } else { - yynn2299 = 0 - for _, b := range yyq2299 { + yynn2304 = 0 + for _, b := range yyq2304 { if b { - yynn2299++ + yynn2304++ } } - r.EncodeMapStart(yynn2299) - yynn2299 = 0 + r.EncodeMapStart(yynn2304) + yynn2304 = 0 } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[0] { + if yyq2304[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -29336,7 +29384,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2299[0] { + if yyq2304[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29347,29 +29395,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[1] { + if yyq2304[1] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2299[1] { + if yyq2304[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[2] { + if yyq2304[2] { if x.Conditions == nil { r.EncodeNil() } else { - yym2303 := z.EncBinary() - _ = yym2303 + yym2308 := z.EncBinary() + _ = yym2308 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29379,15 +29427,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2299[2] { + if yyq2304[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2304 := z.EncBinary() - _ = yym2304 + yym2309 := z.EncBinary() + _ = yym2309 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29395,14 +29443,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[3] { + if yyq2304[3] { if x.Addresses == nil { r.EncodeNil() } else { - yym2306 := z.EncBinary() - _ = yym2306 + yym2311 := z.EncBinary() + _ = yym2311 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29412,15 +29460,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2299[3] { + if yyq2304[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2307 := z.EncBinary() - _ = yym2307 + yym2312 := z.EncBinary() + _ = yym2312 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29428,41 +29476,41 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[4] { - yy2309 := &x.DaemonEndpoints - yy2309.CodecEncodeSelf(e) + if yyq2304[4] { + yy2314 := &x.DaemonEndpoints + yy2314.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2299[4] { + if yyq2304[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2310 := &x.DaemonEndpoints - yy2310.CodecEncodeSelf(e) + yy2315 := &x.DaemonEndpoints + yy2315.CodecEncodeSelf(e) } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2299[5] { - yy2312 := &x.NodeInfo - yy2312.CodecEncodeSelf(e) + if yyq2304[5] { + yy2317 := &x.NodeInfo + yy2317.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2299[5] { + if yyq2304[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2313 := &x.NodeInfo - yy2313.CodecEncodeSelf(e) + yy2318 := &x.NodeInfo + yy2318.CodecEncodeSelf(e) } } - if yyr2299 || yy2arr2299 { + if yyr2304 || yy2arr2304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29475,25 +29523,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2314 := z.DecBinary() - _ = yym2314 + yym2319 := z.DecBinary() + _ = yym2319 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2315 := r.ContainerType() - if yyct2315 == codecSelferValueTypeMap1234 { - yyl2315 := r.ReadMapStart() - if yyl2315 == 0 { + yyct2320 := r.ContainerType() + if yyct2320 == codecSelferValueTypeMap1234 { + yyl2320 := r.ReadMapStart() + if yyl2320 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2315, d) + x.codecDecodeSelfFromMap(yyl2320, d) } - } else if yyct2315 == codecSelferValueTypeArray1234 { - yyl2315 := r.ReadArrayStart() - if yyl2315 == 0 { + } else if yyct2320 == codecSelferValueTypeArray1234 { + yyl2320 := r.ReadArrayStart() + if yyl2320 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2315, d) + x.codecDecodeSelfFromArray(yyl2320, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29505,12 +29553,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2316Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2316Slc - var yyhl2316 bool = l >= 0 - for yyj2316 := 0; ; yyj2316++ { - if yyhl2316 { - if yyj2316 >= l { + var yys2321Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2321Slc + var yyhl2321 bool = l >= 0 + for yyj2321 := 0; ; yyj2321++ { + if yyhl2321 { + if yyj2321 >= l { break } } else { @@ -29519,16 +29567,16 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2316Slc = r.DecodeBytes(yys2316Slc, true, true) - yys2316 := string(yys2316Slc) + yys2321Slc = r.DecodeBytes(yys2321Slc, true, true) + yys2321 := string(yys2321Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2316 { + switch yys2321 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2317 := &x.Capacity - yyv2317.CodecDecodeSelf(d) + yyv2322 := &x.Capacity + yyv2322.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -29540,44 +29588,44 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2319 := &x.Conditions - yym2320 := z.DecBinary() - _ = yym2320 + yyv2324 := &x.Conditions + yym2325 := z.DecBinary() + _ = yym2325 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2319), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2324), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2321 := &x.Addresses - yym2322 := z.DecBinary() - _ = yym2322 + yyv2326 := &x.Addresses + yym2327 := z.DecBinary() + _ = yym2327 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2321), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2326), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2323 := &x.DaemonEndpoints - yyv2323.CodecDecodeSelf(d) + yyv2328 := &x.DaemonEndpoints + yyv2328.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2324 := &x.NodeInfo - yyv2324.CodecDecodeSelf(d) + yyv2329 := &x.NodeInfo + yyv2329.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2316) - } // end switch yys2316 - } // end for yyj2316 + z.DecStructFieldNotFound(-1, yys2321) + } // end switch yys2321 + } // end for yyj2321 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29585,16 +29633,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2325 int - var yyb2325 bool - var yyhl2325 bool = l >= 0 - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + var yyj2330 int + var yyb2330 bool + var yyhl2330 bool = l >= 0 + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29602,16 +29650,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2326 := &x.Capacity - yyv2326.CodecDecodeSelf(d) + yyv2331 := &x.Capacity + yyv2331.CodecDecodeSelf(d) } - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29621,13 +29669,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29635,21 +29683,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2328 := &x.Conditions - yym2329 := z.DecBinary() - _ = yym2329 + yyv2333 := &x.Conditions + yym2334 := z.DecBinary() + _ = yym2334 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2328), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2333), d) } } - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29657,21 +29705,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2330 := &x.Addresses - yym2331 := z.DecBinary() - _ = yym2331 + yyv2335 := &x.Addresses + yym2336 := z.DecBinary() + _ = yym2336 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2330), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2335), d) } } - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29679,16 +29727,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2332 := &x.DaemonEndpoints - yyv2332.CodecDecodeSelf(d) + yyv2337 := &x.DaemonEndpoints + yyv2337.CodecDecodeSelf(d) } - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29696,21 +29744,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2333 := &x.NodeInfo - yyv2333.CodecDecodeSelf(d) + yyv2338 := &x.NodeInfo + yyv2338.CodecDecodeSelf(d) } for { - yyj2325++ - if yyhl2325 { - yyb2325 = yyj2325 > l + yyj2330++ + if yyhl2330 { + yyb2330 = yyj2330 > l } else { - yyb2325 = r.CheckBreak() + yyb2330 = r.CheckBreak() } - if yyb2325 { + if yyb2330 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2325-1, "") + z.DecStructFieldNotFound(yyj2330-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29719,8 +29767,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2334 := z.EncBinary() - _ = yym2334 + yym2339 := z.EncBinary() + _ = yym2339 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29732,8 +29780,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2335 := z.DecBinary() - _ = yym2335 + yym2340 := z.DecBinary() + _ = yym2340 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29745,8 +29793,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2336 := z.EncBinary() - _ = yym2336 + yym2341 := z.EncBinary() + _ = yym2341 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29758,8 +29806,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2337 := z.DecBinary() - _ = yym2337 + yym2342 := z.DecBinary() + _ = yym2342 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29774,34 +29822,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2338 := z.EncBinary() - _ = yym2338 + yym2343 := z.EncBinary() + _ = yym2343 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2339 := !z.EncBinary() - yy2arr2339 := z.EncBasicHandle().StructToArray - var yyq2339 [6]bool - _, _, _ = yysep2339, yyq2339, yy2arr2339 - const yyr2339 bool = false - yyq2339[2] = true - yyq2339[3] = true - yyq2339[4] = x.Reason != "" - yyq2339[5] = x.Message != "" - var yynn2339 int - if yyr2339 || yy2arr2339 { + yysep2344 := !z.EncBinary() + yy2arr2344 := z.EncBasicHandle().StructToArray + var yyq2344 [6]bool + _, _, _ = yysep2344, yyq2344, yy2arr2344 + const yyr2344 bool = false + yyq2344[2] = true + yyq2344[3] = true + yyq2344[4] = x.Reason != "" + yyq2344[5] = x.Message != "" + var yynn2344 int + if yyr2344 || yy2arr2344 { r.EncodeArrayStart(6) } else { - yynn2339 = 2 - for _, b := range yyq2339 { + yynn2344 = 2 + for _, b := range yyq2344 { if b { - yynn2339++ + yynn2344++ } } - r.EncodeMapStart(yynn2339) - yynn2339 = 0 + r.EncodeMapStart(yynn2344) + yynn2344 = 0 } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -29810,7 +29858,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -29819,47 +29867,10 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2339 || yy2arr2339 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2339[2] { - yy2343 := &x.LastHeartbeatTime - yym2344 := z.EncBinary() - _ = yym2344 - if false { - } else if z.HasExtensions() && z.EncExt(yy2343) { - } else if yym2344 { - z.EncBinaryMarshal(yy2343) - } else if !yym2344 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2343) - } else { - z.EncFallback(yy2343) - } - } else { - r.EncodeNil() - } - } else { - if yyq2339[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2345 := &x.LastHeartbeatTime - yym2346 := z.EncBinary() - _ = yym2346 - if false { - } else if z.HasExtensions() && z.EncExt(yy2345) { - } else if yym2346 { - z.EncBinaryMarshal(yy2345) - } else if !yym2346 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2345) - } else { - z.EncFallback(yy2345) - } - } - } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2339[3] { - yy2348 := &x.LastTransitionTime + if yyq2344[2] { + yy2348 := &x.LastHeartbeatTime yym2349 := z.EncBinary() _ = yym2349 if false { @@ -29875,11 +29886,11 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2339[3] { + if yyq2344[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) + r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2350 := &x.LastTransitionTime + yy2350 := &x.LastHeartbeatTime yym2351 := z.EncBinary() _ = yym2351 if false { @@ -29893,57 +29904,94 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2339[4] { - yym2353 := z.EncBinary() - _ = yym2353 + if yyq2344[3] { + yy2353 := &x.LastTransitionTime + yym2354 := z.EncBinary() + _ = yym2354 if false { + } else if z.HasExtensions() && z.EncExt(yy2353) { + } else if yym2354 { + z.EncBinaryMarshal(yy2353) + } else if !yym2354 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2353) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + z.EncFallback(yy2353) } } else { - r.EncodeString(codecSelferC_UTF81234, "") + r.EncodeNil() } } else { - if yyq2339[4] { + if yyq2344[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) + r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2354 := z.EncBinary() - _ = yym2354 + yy2355 := &x.LastTransitionTime + yym2356 := z.EncBinary() + _ = yym2356 if false { + } else if z.HasExtensions() && z.EncExt(yy2355) { + } else if yym2356 { + z.EncBinaryMarshal(yy2355) + } else if !yym2356 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2355) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + z.EncFallback(yy2355) } } } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2339[5] { - yym2356 := z.EncBinary() - _ = yym2356 + if yyq2344[4] { + yym2358 := z.EncBinary() + _ = yym2358 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2339[5] { + if yyq2344[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2357 := z.EncBinary() - _ = yym2357 + yym2359 := z.EncBinary() + _ = yym2359 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr2344 || yy2arr2344 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2344[5] { + yym2361 := z.EncBinary() + _ = yym2361 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2344[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2362 := z.EncBinary() + _ = yym2362 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2339 || yy2arr2339 { + if yyr2344 || yy2arr2344 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29956,25 +30004,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2358 := z.DecBinary() - _ = yym2358 + yym2363 := z.DecBinary() + _ = yym2363 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2359 := r.ContainerType() - if yyct2359 == codecSelferValueTypeMap1234 { - yyl2359 := r.ReadMapStart() - if yyl2359 == 0 { + yyct2364 := r.ContainerType() + if yyct2364 == codecSelferValueTypeMap1234 { + yyl2364 := r.ReadMapStart() + if yyl2364 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2359, d) + x.codecDecodeSelfFromMap(yyl2364, d) } - } else if yyct2359 == codecSelferValueTypeArray1234 { - yyl2359 := r.ReadArrayStart() - if yyl2359 == 0 { + } else if yyct2364 == codecSelferValueTypeArray1234 { + yyl2364 := r.ReadArrayStart() + if yyl2364 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2359, d) + x.codecDecodeSelfFromArray(yyl2364, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29986,12 +30034,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2360Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2360Slc - var yyhl2360 bool = l >= 0 - for yyj2360 := 0; ; yyj2360++ { - if yyhl2360 { - if yyj2360 >= l { + var yys2365Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2365Slc + var yyhl2365 bool = l >= 0 + for yyj2365 := 0; ; yyj2365++ { + if yyhl2365 { + if yyj2365 >= l { break } } else { @@ -30000,10 +30048,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2360Slc = r.DecodeBytes(yys2360Slc, true, true) - yys2360 := string(yys2360Slc) + yys2365Slc = r.DecodeBytes(yys2365Slc, true, true) + yys2365 := string(yys2365Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2360 { + switch yys2365 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -30020,34 +30068,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2363 := &x.LastHeartbeatTime - yym2364 := z.DecBinary() - _ = yym2364 + yyv2368 := &x.LastHeartbeatTime + yym2369 := z.DecBinary() + _ = yym2369 if false { - } else if z.HasExtensions() && z.DecExt(yyv2363) { - } else if yym2364 { - z.DecBinaryUnmarshal(yyv2363) - } else if !yym2364 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2363) + } else if z.HasExtensions() && z.DecExt(yyv2368) { + } else if yym2369 { + z.DecBinaryUnmarshal(yyv2368) + } else if !yym2369 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2368) } else { - z.DecFallback(yyv2363, false) + z.DecFallback(yyv2368, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2365 := &x.LastTransitionTime - yym2366 := z.DecBinary() - _ = yym2366 + yyv2370 := &x.LastTransitionTime + yym2371 := z.DecBinary() + _ = yym2371 if false { - } else if z.HasExtensions() && z.DecExt(yyv2365) { - } else if yym2366 { - z.DecBinaryUnmarshal(yyv2365) - } else if !yym2366 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2365) + } else if z.HasExtensions() && z.DecExt(yyv2370) { + } else if yym2371 { + z.DecBinaryUnmarshal(yyv2370) + } else if !yym2371 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2370) } else { - z.DecFallback(yyv2365, false) + z.DecFallback(yyv2370, false) } } case "reason": @@ -30063,9 +30111,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2360) - } // end switch yys2360 - } // end for yyj2360 + z.DecStructFieldNotFound(-1, yys2365) + } // end switch yys2365 + } // end for yyj2365 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30073,16 +30121,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2369 int - var yyb2369 bool - var yyhl2369 bool = l >= 0 - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + var yyj2374 int + var yyb2374 bool + var yyhl2374 bool = l >= 0 + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30092,13 +30140,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30108,13 +30156,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30122,26 +30170,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2372 := &x.LastHeartbeatTime - yym2373 := z.DecBinary() - _ = yym2373 + yyv2377 := &x.LastHeartbeatTime + yym2378 := z.DecBinary() + _ = yym2378 if false { - } else if z.HasExtensions() && z.DecExt(yyv2372) { - } else if yym2373 { - z.DecBinaryUnmarshal(yyv2372) - } else if !yym2373 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2372) + } else if z.HasExtensions() && z.DecExt(yyv2377) { + } else if yym2378 { + z.DecBinaryUnmarshal(yyv2377) + } else if !yym2378 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2377) } else { - z.DecFallback(yyv2372, false) + z.DecFallback(yyv2377, false) } } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30149,26 +30197,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2374 := &x.LastTransitionTime - yym2375 := z.DecBinary() - _ = yym2375 + yyv2379 := &x.LastTransitionTime + yym2380 := z.DecBinary() + _ = yym2380 if false { - } else if z.HasExtensions() && z.DecExt(yyv2374) { - } else if yym2375 { - z.DecBinaryUnmarshal(yyv2374) - } else if !yym2375 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2374) + } else if z.HasExtensions() && z.DecExt(yyv2379) { + } else if yym2380 { + z.DecBinaryUnmarshal(yyv2379) + } else if !yym2380 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2379) } else { - z.DecFallback(yyv2374, false) + z.DecFallback(yyv2379, false) } } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30178,13 +30226,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30195,17 +30243,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2369++ - if yyhl2369 { - yyb2369 = yyj2369 > l + yyj2374++ + if yyhl2374 { + yyb2374 = yyj2374 > l } else { - yyb2369 = r.CheckBreak() + yyb2374 = r.CheckBreak() } - if yyb2369 { + if yyb2374 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2369-1, "") + z.DecStructFieldNotFound(yyj2374-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30214,8 +30262,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2378 := z.EncBinary() - _ = yym2378 + yym2383 := z.EncBinary() + _ = yym2383 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30227,8 +30275,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2379 := z.DecBinary() - _ = yym2379 + yym2384 := z.DecBinary() + _ = yym2384 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30243,30 +30291,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2380 := z.EncBinary() - _ = yym2380 + yym2385 := z.EncBinary() + _ = yym2385 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2381 := !z.EncBinary() - yy2arr2381 := z.EncBasicHandle().StructToArray - var yyq2381 [2]bool - _, _, _ = yysep2381, yyq2381, yy2arr2381 - const yyr2381 bool = false - var yynn2381 int - if yyr2381 || yy2arr2381 { + yysep2386 := !z.EncBinary() + yy2arr2386 := z.EncBasicHandle().StructToArray + var yyq2386 [2]bool + _, _, _ = yysep2386, yyq2386, yy2arr2386 + const yyr2386 bool = false + var yynn2386 int + if yyr2386 || yy2arr2386 { r.EncodeArrayStart(2) } else { - yynn2381 = 2 - for _, b := range yyq2381 { + yynn2386 = 2 + for _, b := range yyq2386 { if b { - yynn2381++ + yynn2386++ } } - r.EncodeMapStart(yynn2381) - yynn2381 = 0 + r.EncodeMapStart(yynn2386) + yynn2386 = 0 } - if yyr2381 || yy2arr2381 { + if yyr2386 || yy2arr2386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -30275,10 +30323,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2381 || yy2arr2381 { + if yyr2386 || yy2arr2386 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2384 := z.EncBinary() - _ = yym2384 + yym2389 := z.EncBinary() + _ = yym2389 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -30287,14 +30335,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2385 := z.EncBinary() - _ = yym2385 + yym2390 := z.EncBinary() + _ = yym2390 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2381 || yy2arr2381 { + if yyr2386 || yy2arr2386 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30307,25 +30355,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2386 := z.DecBinary() - _ = yym2386 + yym2391 := z.DecBinary() + _ = yym2391 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2387 := r.ContainerType() - if yyct2387 == codecSelferValueTypeMap1234 { - yyl2387 := r.ReadMapStart() - if yyl2387 == 0 { + yyct2392 := r.ContainerType() + if yyct2392 == codecSelferValueTypeMap1234 { + yyl2392 := r.ReadMapStart() + if yyl2392 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2387, d) + x.codecDecodeSelfFromMap(yyl2392, d) } - } else if yyct2387 == codecSelferValueTypeArray1234 { - yyl2387 := r.ReadArrayStart() - if yyl2387 == 0 { + } else if yyct2392 == codecSelferValueTypeArray1234 { + yyl2392 := r.ReadArrayStart() + if yyl2392 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2387, d) + x.codecDecodeSelfFromArray(yyl2392, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30337,12 +30385,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2388Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2388Slc - var yyhl2388 bool = l >= 0 - for yyj2388 := 0; ; yyj2388++ { - if yyhl2388 { - if yyj2388 >= l { + var yys2393Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2393Slc + var yyhl2393 bool = l >= 0 + for yyj2393 := 0; ; yyj2393++ { + if yyhl2393 { + if yyj2393 >= l { break } } else { @@ -30351,10 +30399,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2388Slc = r.DecodeBytes(yys2388Slc, true, true) - yys2388 := string(yys2388Slc) + yys2393Slc = r.DecodeBytes(yys2393Slc, true, true) + yys2393 := string(yys2393Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2388 { + switch yys2393 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -30368,9 +30416,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2388) - } // end switch yys2388 - } // end for yyj2388 + z.DecStructFieldNotFound(-1, yys2393) + } // end switch yys2393 + } // end for yyj2393 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30378,16 +30426,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2391 int - var yyb2391 bool - var yyhl2391 bool = l >= 0 - yyj2391++ - if yyhl2391 { - yyb2391 = yyj2391 > l + var yyj2396 int + var yyb2396 bool + var yyhl2396 bool = l >= 0 + yyj2396++ + if yyhl2396 { + yyb2396 = yyj2396 > l } else { - yyb2391 = r.CheckBreak() + yyb2396 = r.CheckBreak() } - if yyb2391 { + if yyb2396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30397,13 +30445,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2391++ - if yyhl2391 { - yyb2391 = yyj2391 > l + yyj2396++ + if yyhl2396 { + yyb2396 = yyj2396 > l } else { - yyb2391 = r.CheckBreak() + yyb2396 = r.CheckBreak() } - if yyb2391 { + if yyb2396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30414,17 +30462,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2391++ - if yyhl2391 { - yyb2391 = yyj2391 > l + yyj2396++ + if yyhl2396 { + yyb2396 = yyj2396 > l } else { - yyb2391 = r.CheckBreak() + yyb2396 = r.CheckBreak() } - if yyb2391 { + if yyb2396 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2391-1, "") + z.DecStructFieldNotFound(yyj2396-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30436,33 +30484,33 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2394 := z.EncBinary() - _ = yym2394 + yym2399 := z.EncBinary() + _ = yym2399 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2395 := !z.EncBinary() - yy2arr2395 := z.EncBasicHandle().StructToArray - var yyq2395 [1]bool - _, _, _ = yysep2395, yyq2395, yy2arr2395 - const yyr2395 bool = false - yyq2395[0] = len(x.Capacity) != 0 - var yynn2395 int - if yyr2395 || yy2arr2395 { + yysep2400 := !z.EncBinary() + yy2arr2400 := z.EncBasicHandle().StructToArray + var yyq2400 [1]bool + _, _, _ = yysep2400, yyq2400, yy2arr2400 + const yyr2400 bool = false + yyq2400[0] = len(x.Capacity) != 0 + var yynn2400 int + if yyr2400 || yy2arr2400 { r.EncodeArrayStart(1) } else { - yynn2395 = 0 - for _, b := range yyq2395 { + yynn2400 = 0 + for _, b := range yyq2400 { if b { - yynn2395++ + yynn2400++ } } - r.EncodeMapStart(yynn2395) - yynn2395 = 0 + r.EncodeMapStart(yynn2400) + yynn2400 = 0 } - if yyr2395 || yy2arr2395 { + if yyr2400 || yy2arr2400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2395[0] { + if yyq2400[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -30472,7 +30520,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2395[0] { + if yyq2400[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -30483,7 +30531,7 @@ func (x *NodeResources) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2395 || yy2arr2395 { + if yyr2400 || yy2arr2400 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30496,25 +30544,25 @@ func (x *NodeResources) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2397 := z.DecBinary() - _ = yym2397 + yym2402 := z.DecBinary() + _ = yym2402 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2398 := r.ContainerType() - if yyct2398 == codecSelferValueTypeMap1234 { - yyl2398 := r.ReadMapStart() - if yyl2398 == 0 { + yyct2403 := r.ContainerType() + if yyct2403 == codecSelferValueTypeMap1234 { + yyl2403 := r.ReadMapStart() + if yyl2403 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2398, d) + x.codecDecodeSelfFromMap(yyl2403, d) } - } else if yyct2398 == codecSelferValueTypeArray1234 { - yyl2398 := r.ReadArrayStart() - if yyl2398 == 0 { + } else if yyct2403 == codecSelferValueTypeArray1234 { + yyl2403 := r.ReadArrayStart() + if yyl2403 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2398, d) + x.codecDecodeSelfFromArray(yyl2403, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30526,12 +30574,12 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2399Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2399Slc - var yyhl2399 bool = l >= 0 - for yyj2399 := 0; ; yyj2399++ { - if yyhl2399 { - if yyj2399 >= l { + var yys2404Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2404Slc + var yyhl2404 bool = l >= 0 + for yyj2404 := 0; ; yyj2404++ { + if yyhl2404 { + if yyj2404 >= l { break } } else { @@ -30540,21 +30588,21 @@ func (x *NodeResources) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2399Slc = r.DecodeBytes(yys2399Slc, true, true) - yys2399 := string(yys2399Slc) + yys2404Slc = r.DecodeBytes(yys2404Slc, true, true) + yys2404 := string(yys2404Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2399 { + switch yys2404 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2400 := &x.Capacity - yyv2400.CodecDecodeSelf(d) + yyv2405 := &x.Capacity + yyv2405.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2399) - } // end switch yys2399 - } // end for yyj2399 + z.DecStructFieldNotFound(-1, yys2404) + } // end switch yys2404 + } // end for yyj2404 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30562,16 +30610,16 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2401 int - var yyb2401 bool - var yyhl2401 bool = l >= 0 - yyj2401++ - if yyhl2401 { - yyb2401 = yyj2401 > l + var yyj2406 int + var yyb2406 bool + var yyhl2406 bool = l >= 0 + yyj2406++ + if yyhl2406 { + yyb2406 = yyj2406 > l } else { - yyb2401 = r.CheckBreak() + yyb2406 = r.CheckBreak() } - if yyb2401 { + if yyb2406 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30579,21 +30627,21 @@ func (x *NodeResources) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2402 := &x.Capacity - yyv2402.CodecDecodeSelf(d) + yyv2407 := &x.Capacity + yyv2407.CodecDecodeSelf(d) } for { - yyj2401++ - if yyhl2401 { - yyb2401 = yyj2401 > l + yyj2406++ + if yyhl2406 { + yyb2406 = yyj2406 > l } else { - yyb2401 = r.CheckBreak() + yyb2406 = r.CheckBreak() } - if yyb2401 { + if yyb2406 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2401-1, "") + z.DecStructFieldNotFound(yyj2406-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30602,8 +30650,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2403 := z.EncBinary() - _ = yym2403 + yym2408 := z.EncBinary() + _ = yym2408 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30615,8 +30663,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2404 := z.DecBinary() - _ = yym2404 + yym2409 := z.DecBinary() + _ = yym2409 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30631,8 +30679,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2405 := z.EncBinary() - _ = yym2405 + yym2410 := z.EncBinary() + _ = yym2410 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30645,8 +30693,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2406 := z.DecBinary() - _ = yym2406 + yym2411 := z.DecBinary() + _ = yym2411 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30661,39 +30709,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2407 := z.EncBinary() - _ = yym2407 + yym2412 := z.EncBinary() + _ = yym2412 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2408 := !z.EncBinary() - yy2arr2408 := z.EncBasicHandle().StructToArray - var yyq2408 [5]bool - _, _, _ = yysep2408, yyq2408, yy2arr2408 - const yyr2408 bool = false - yyq2408[0] = x.Kind != "" - yyq2408[1] = x.APIVersion != "" - yyq2408[2] = true - yyq2408[3] = true - yyq2408[4] = true - var yynn2408 int - if yyr2408 || yy2arr2408 { + yysep2413 := !z.EncBinary() + yy2arr2413 := z.EncBasicHandle().StructToArray + var yyq2413 [5]bool + _, _, _ = yysep2413, yyq2413, yy2arr2413 + const yyr2413 bool = false + yyq2413[0] = x.Kind != "" + yyq2413[1] = x.APIVersion != "" + yyq2413[2] = true + yyq2413[3] = true + yyq2413[4] = true + var yynn2413 int + if yyr2413 || yy2arr2413 { r.EncodeArrayStart(5) } else { - yynn2408 = 0 - for _, b := range yyq2408 { + yynn2413 = 0 + for _, b := range yyq2413 { if b { - yynn2408++ + yynn2413++ } } - r.EncodeMapStart(yynn2408) - yynn2408 = 0 + r.EncodeMapStart(yynn2413) + yynn2413 = 0 } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2408[0] { - yym2410 := z.EncBinary() - _ = yym2410 + if yyq2413[0] { + yym2415 := z.EncBinary() + _ = yym2415 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30702,23 +30750,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2408[0] { + if yyq2413[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2411 := z.EncBinary() - _ = yym2411 + yym2416 := z.EncBinary() + _ = yym2416 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2408[1] { - yym2413 := z.EncBinary() - _ = yym2413 + if yyq2413[1] { + yym2418 := z.EncBinary() + _ = yym2418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30727,70 +30775,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2408[1] { + if yyq2413[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2414 := z.EncBinary() - _ = yym2414 + yym2419 := z.EncBinary() + _ = yym2419 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2408[2] { - yy2416 := &x.ObjectMeta - yy2416.CodecEncodeSelf(e) + if yyq2413[2] { + yy2421 := &x.ObjectMeta + yy2421.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2408[2] { + if yyq2413[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2417 := &x.ObjectMeta - yy2417.CodecEncodeSelf(e) + yy2422 := &x.ObjectMeta + yy2422.CodecEncodeSelf(e) } } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2408[3] { - yy2419 := &x.Spec - yy2419.CodecEncodeSelf(e) + if yyq2413[3] { + yy2424 := &x.Spec + yy2424.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2408[3] { + if yyq2413[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2420 := &x.Spec - yy2420.CodecEncodeSelf(e) + yy2425 := &x.Spec + yy2425.CodecEncodeSelf(e) } } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2408[4] { - yy2422 := &x.Status - yy2422.CodecEncodeSelf(e) + if yyq2413[4] { + yy2427 := &x.Status + yy2427.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2408[4] { + if yyq2413[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2423 := &x.Status - yy2423.CodecEncodeSelf(e) + yy2428 := &x.Status + yy2428.CodecEncodeSelf(e) } } - if yyr2408 || yy2arr2408 { + if yyr2413 || yy2arr2413 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30803,25 +30851,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2424 := z.DecBinary() - _ = yym2424 + yym2429 := z.DecBinary() + _ = yym2429 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2425 := r.ContainerType() - if yyct2425 == codecSelferValueTypeMap1234 { - yyl2425 := r.ReadMapStart() - if yyl2425 == 0 { + yyct2430 := r.ContainerType() + if yyct2430 == codecSelferValueTypeMap1234 { + yyl2430 := r.ReadMapStart() + if yyl2430 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2425, d) + x.codecDecodeSelfFromMap(yyl2430, d) } - } else if yyct2425 == codecSelferValueTypeArray1234 { - yyl2425 := r.ReadArrayStart() - if yyl2425 == 0 { + } else if yyct2430 == codecSelferValueTypeArray1234 { + yyl2430 := r.ReadArrayStart() + if yyl2430 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2425, d) + x.codecDecodeSelfFromArray(yyl2430, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30833,12 +30881,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2426Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2426Slc - var yyhl2426 bool = l >= 0 - for yyj2426 := 0; ; yyj2426++ { - if yyhl2426 { - if yyj2426 >= l { + var yys2431Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2431Slc + var yyhl2431 bool = l >= 0 + for yyj2431 := 0; ; yyj2431++ { + if yyhl2431 { + if yyj2431 >= l { break } } else { @@ -30847,10 +30895,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2426Slc = r.DecodeBytes(yys2426Slc, true, true) - yys2426 := string(yys2426Slc) + yys2431Slc = r.DecodeBytes(yys2431Slc, true, true) + yys2431 := string(yys2431Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2426 { + switch yys2431 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30867,27 +30915,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2429 := &x.ObjectMeta - yyv2429.CodecDecodeSelf(d) + yyv2434 := &x.ObjectMeta + yyv2434.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2430 := &x.Spec - yyv2430.CodecDecodeSelf(d) + yyv2435 := &x.Spec + yyv2435.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2431 := &x.Status - yyv2431.CodecDecodeSelf(d) + yyv2436 := &x.Status + yyv2436.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2426) - } // end switch yys2426 - } // end for yyj2426 + z.DecStructFieldNotFound(-1, yys2431) + } // end switch yys2431 + } // end for yyj2431 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30895,16 +30943,16 @@ func (x *Node) 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 yyj2437 int + var yyb2437 bool + var yyhl2437 bool = l >= 0 + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30914,13 +30962,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30930,13 +30978,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30944,16 +30992,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2435 := &x.ObjectMeta - yyv2435.CodecDecodeSelf(d) + yyv2440 := &x.ObjectMeta + yyv2440.CodecDecodeSelf(d) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30961,16 +31009,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2436 := &x.Spec - yyv2436.CodecDecodeSelf(d) + yyv2441 := &x.Spec + yyv2441.CodecDecodeSelf(d) } - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30978,21 +31026,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2437 := &x.Status - yyv2437.CodecDecodeSelf(d) + yyv2442 := &x.Status + yyv2442.CodecDecodeSelf(d) } for { - yyj2432++ - if yyhl2432 { - yyb2432 = yyj2432 > l + yyj2437++ + if yyhl2437 { + yyb2437 = yyj2437 > l } else { - yyb2432 = r.CheckBreak() + yyb2437 = r.CheckBreak() } - if yyb2432 { + if yyb2437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2432-1, "") + z.DecStructFieldNotFound(yyj2437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31004,37 +31052,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2438 := z.EncBinary() - _ = yym2438 + yym2443 := z.EncBinary() + _ = yym2443 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2439 := !z.EncBinary() - yy2arr2439 := z.EncBasicHandle().StructToArray - var yyq2439 [4]bool - _, _, _ = yysep2439, yyq2439, yy2arr2439 - const yyr2439 bool = false - yyq2439[0] = x.Kind != "" - yyq2439[1] = x.APIVersion != "" - yyq2439[2] = true - var yynn2439 int - if yyr2439 || yy2arr2439 { + yysep2444 := !z.EncBinary() + yy2arr2444 := z.EncBasicHandle().StructToArray + var yyq2444 [4]bool + _, _, _ = yysep2444, yyq2444, yy2arr2444 + const yyr2444 bool = false + yyq2444[0] = x.Kind != "" + yyq2444[1] = x.APIVersion != "" + yyq2444[2] = true + var yynn2444 int + if yyr2444 || yy2arr2444 { r.EncodeArrayStart(4) } else { - yynn2439 = 1 - for _, b := range yyq2439 { + yynn2444 = 1 + for _, b := range yyq2444 { if b { - yynn2439++ + yynn2444++ } } - r.EncodeMapStart(yynn2439) - yynn2439 = 0 + r.EncodeMapStart(yynn2444) + yynn2444 = 0 } - if yyr2439 || yy2arr2439 { + if yyr2444 || yy2arr2444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2439[0] { - yym2441 := z.EncBinary() - _ = yym2441 + if yyq2444[0] { + yym2446 := z.EncBinary() + _ = yym2446 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31043,23 +31091,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2439[0] { + if yyq2444[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2442 := z.EncBinary() - _ = yym2442 + yym2447 := z.EncBinary() + _ = yym2447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2439 || yy2arr2439 { + if yyr2444 || yy2arr2444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2439[1] { - yym2444 := z.EncBinary() - _ = yym2444 + if yyq2444[1] { + yym2449 := z.EncBinary() + _ = yym2449 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31068,54 +31116,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2439[1] { + if yyq2444[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2445 := z.EncBinary() - _ = yym2445 + yym2450 := z.EncBinary() + _ = yym2450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2439 || yy2arr2439 { + if yyr2444 || yy2arr2444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2439[2] { - yy2447 := &x.ListMeta - yym2448 := z.EncBinary() - _ = yym2448 + if yyq2444[2] { + yy2452 := &x.ListMeta + yym2453 := z.EncBinary() + _ = yym2453 if false { - } else if z.HasExtensions() && z.EncExt(yy2447) { + } else if z.HasExtensions() && z.EncExt(yy2452) { } else { - z.EncFallback(yy2447) + z.EncFallback(yy2452) } } else { r.EncodeNil() } } else { - if yyq2439[2] { + if yyq2444[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2449 := &x.ListMeta - yym2450 := z.EncBinary() - _ = yym2450 + yy2454 := &x.ListMeta + yym2455 := z.EncBinary() + _ = yym2455 if false { - } else if z.HasExtensions() && z.EncExt(yy2449) { + } else if z.HasExtensions() && z.EncExt(yy2454) { } else { - z.EncFallback(yy2449) + z.EncFallback(yy2454) } } } - if yyr2439 || yy2arr2439 { + if yyr2444 || yy2arr2444 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2452 := z.EncBinary() - _ = yym2452 + yym2457 := z.EncBinary() + _ = yym2457 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -31128,15 +31176,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2453 := z.EncBinary() - _ = yym2453 + yym2458 := z.EncBinary() + _ = yym2458 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2439 || yy2arr2439 { + if yyr2444 || yy2arr2444 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31149,25 +31197,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2454 := z.DecBinary() - _ = yym2454 + yym2459 := z.DecBinary() + _ = yym2459 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2455 := r.ContainerType() - if yyct2455 == codecSelferValueTypeMap1234 { - yyl2455 := r.ReadMapStart() - if yyl2455 == 0 { + yyct2460 := r.ContainerType() + if yyct2460 == codecSelferValueTypeMap1234 { + yyl2460 := r.ReadMapStart() + if yyl2460 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2455, d) + x.codecDecodeSelfFromMap(yyl2460, d) } - } else if yyct2455 == codecSelferValueTypeArray1234 { - yyl2455 := r.ReadArrayStart() - if yyl2455 == 0 { + } else if yyct2460 == codecSelferValueTypeArray1234 { + yyl2460 := r.ReadArrayStart() + if yyl2460 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2455, d) + x.codecDecodeSelfFromArray(yyl2460, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31179,12 +31227,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2456Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2456Slc - var yyhl2456 bool = l >= 0 - for yyj2456 := 0; ; yyj2456++ { - if yyhl2456 { - if yyj2456 >= l { + var yys2461Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2461Slc + var yyhl2461 bool = l >= 0 + for yyj2461 := 0; ; yyj2461++ { + if yyhl2461 { + if yyj2461 >= l { break } } else { @@ -31193,10 +31241,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2456Slc = r.DecodeBytes(yys2456Slc, true, true) - yys2456 := string(yys2456Slc) + yys2461Slc = r.DecodeBytes(yys2461Slc, true, true) + yys2461 := string(yys2461Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2456 { + switch yys2461 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31213,31 +31261,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2459 := &x.ListMeta - yym2460 := z.DecBinary() - _ = yym2460 + yyv2464 := &x.ListMeta + yym2465 := z.DecBinary() + _ = yym2465 if false { - } else if z.HasExtensions() && z.DecExt(yyv2459) { + } else if z.HasExtensions() && z.DecExt(yyv2464) { } else { - z.DecFallback(yyv2459, false) + z.DecFallback(yyv2464, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2461 := &x.Items - yym2462 := z.DecBinary() - _ = yym2462 + yyv2466 := &x.Items + yym2467 := z.DecBinary() + _ = yym2467 if false { } else { - h.decSliceNode((*[]Node)(yyv2461), d) + h.decSliceNode((*[]Node)(yyv2466), d) } } default: - z.DecStructFieldNotFound(-1, yys2456) - } // end switch yys2456 - } // end for yyj2456 + z.DecStructFieldNotFound(-1, yys2461) + } // end switch yys2461 + } // end for yyj2461 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31245,16 +31293,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2463 int - var yyb2463 bool - var yyhl2463 bool = l >= 0 - yyj2463++ - if yyhl2463 { - yyb2463 = yyj2463 > l + var yyj2468 int + var yyb2468 bool + var yyhl2468 bool = l >= 0 + yyj2468++ + if yyhl2468 { + yyb2468 = yyj2468 > l } else { - yyb2463 = r.CheckBreak() + yyb2468 = r.CheckBreak() } - if yyb2463 { + if yyb2468 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31264,13 +31312,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2463++ - if yyhl2463 { - yyb2463 = yyj2463 > l + yyj2468++ + if yyhl2468 { + yyb2468 = yyj2468 > l } else { - yyb2463 = r.CheckBreak() + yyb2468 = r.CheckBreak() } - if yyb2463 { + if yyb2468 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31280,13 +31328,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2463++ - if yyhl2463 { - yyb2463 = yyj2463 > l + yyj2468++ + if yyhl2468 { + yyb2468 = yyj2468 > l } else { - yyb2463 = r.CheckBreak() + yyb2468 = r.CheckBreak() } - if yyb2463 { + if yyb2468 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31294,22 +31342,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2466 := &x.ListMeta - yym2467 := z.DecBinary() - _ = yym2467 + yyv2471 := &x.ListMeta + yym2472 := z.DecBinary() + _ = yym2472 if false { - } else if z.HasExtensions() && z.DecExt(yyv2466) { + } else if z.HasExtensions() && z.DecExt(yyv2471) { } else { - z.DecFallback(yyv2466, false) + z.DecFallback(yyv2471, false) } } - yyj2463++ - if yyhl2463 { - yyb2463 = yyj2463 > l + yyj2468++ + if yyhl2468 { + yyb2468 = yyj2468 > l } else { - yyb2463 = r.CheckBreak() + yyb2468 = r.CheckBreak() } - if yyb2463 { + if yyb2468 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31317,26 +31365,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2468 := &x.Items - yym2469 := z.DecBinary() - _ = yym2469 + yyv2473 := &x.Items + yym2474 := z.DecBinary() + _ = yym2474 if false { } else { - h.decSliceNode((*[]Node)(yyv2468), d) + h.decSliceNode((*[]Node)(yyv2473), d) } } for { - yyj2463++ - if yyhl2463 { - yyb2463 = yyj2463 > l + yyj2468++ + if yyhl2468 { + yyb2468 = yyj2468 > l } else { - yyb2463 = r.CheckBreak() + yyb2468 = r.CheckBreak() } - if yyb2463 { + if yyb2468 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2463-1, "") + z.DecStructFieldNotFound(yyj2468-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31348,36 +31396,36 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2470 := z.EncBinary() - _ = yym2470 + yym2475 := z.EncBinary() + _ = yym2475 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 - var yynn2471 int - if yyr2471 || yy2arr2471 { + yysep2476 := !z.EncBinary() + yy2arr2476 := z.EncBasicHandle().StructToArray + var yyq2476 [1]bool + _, _, _ = yysep2476, yyq2476, yy2arr2476 + const yyr2476 bool = false + var yynn2476 int + if yyr2476 || yy2arr2476 { r.EncodeArrayStart(1) } else { - yynn2471 = 1 - for _, b := range yyq2471 { + yynn2476 = 1 + for _, b := range yyq2476 { if b { - yynn2471++ + yynn2476++ } } - r.EncodeMapStart(yynn2471) - yynn2471 = 0 + r.EncodeMapStart(yynn2476) + yynn2476 = 0 } - if yyr2471 || yy2arr2471 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym2473 := z.EncBinary() - _ = yym2473 + yym2478 := z.EncBinary() + _ = yym2478 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -31390,15 +31438,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Finalizers == nil { r.EncodeNil() } else { - yym2474 := z.EncBinary() - _ = yym2474 + yym2479 := z.EncBinary() + _ = yym2479 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) } } } - if yyr2471 || yy2arr2471 { + if yyr2476 || yy2arr2476 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31411,25 +31459,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2475 := z.DecBinary() - _ = yym2475 + yym2480 := z.DecBinary() + _ = yym2480 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2476 := r.ContainerType() - if yyct2476 == codecSelferValueTypeMap1234 { - yyl2476 := r.ReadMapStart() - if yyl2476 == 0 { + yyct2481 := r.ContainerType() + if yyct2481 == codecSelferValueTypeMap1234 { + yyl2481 := r.ReadMapStart() + if yyl2481 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2476, d) + x.codecDecodeSelfFromMap(yyl2481, d) } - } else if yyct2476 == codecSelferValueTypeArray1234 { - yyl2476 := r.ReadArrayStart() - if yyl2476 == 0 { + } else if yyct2481 == codecSelferValueTypeArray1234 { + yyl2481 := r.ReadArrayStart() + if yyl2481 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2476, d) + x.codecDecodeSelfFromArray(yyl2481, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31441,12 +31489,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2477Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2477Slc - var yyhl2477 bool = l >= 0 - for yyj2477 := 0; ; yyj2477++ { - if yyhl2477 { - if yyj2477 >= l { + var yys2482Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2482Slc + var yyhl2482 bool = l >= 0 + for yyj2482 := 0; ; yyj2482++ { + if yyhl2482 { + if yyj2482 >= l { break } } else { @@ -31455,26 +31503,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2477Slc = r.DecodeBytes(yys2477Slc, true, true) - yys2477 := string(yys2477Slc) + yys2482Slc = r.DecodeBytes(yys2482Slc, true, true) + yys2482 := string(yys2482Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2477 { + switch yys2482 { case "Finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2478 := &x.Finalizers - yym2479 := z.DecBinary() - _ = yym2479 + yyv2483 := &x.Finalizers + yym2484 := z.DecBinary() + _ = yym2484 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2478), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2483), d) } } default: - z.DecStructFieldNotFound(-1, yys2477) - } // end switch yys2477 - } // end for yyj2477 + z.DecStructFieldNotFound(-1, yys2482) + } // end switch yys2482 + } // end for yyj2482 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31482,16 +31530,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2480 int - var yyb2480 bool - var yyhl2480 bool = l >= 0 - yyj2480++ - if yyhl2480 { - yyb2480 = yyj2480 > l + var yyj2485 int + var yyb2485 bool + var yyhl2485 bool = l >= 0 + yyj2485++ + if yyhl2485 { + yyb2485 = yyj2485 > l } else { - yyb2480 = r.CheckBreak() + yyb2485 = r.CheckBreak() } - if yyb2480 { + if yyb2485 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31499,26 +31547,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2481 := &x.Finalizers - yym2482 := z.DecBinary() - _ = yym2482 + yyv2486 := &x.Finalizers + yym2487 := z.DecBinary() + _ = yym2487 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2481), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2486), d) } } for { - yyj2480++ - if yyhl2480 { - yyb2480 = yyj2480 > l + yyj2485++ + if yyhl2485 { + yyb2485 = yyj2485 > l } else { - yyb2480 = r.CheckBreak() + yyb2485 = r.CheckBreak() } - if yyb2480 { + if yyb2485 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2480-1, "") + z.DecStructFieldNotFound(yyj2485-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31527,8 +31575,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2483 := z.EncBinary() - _ = yym2483 + yym2488 := z.EncBinary() + _ = yym2488 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31540,8 +31588,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2484 := z.DecBinary() - _ = yym2484 + yym2489 := z.DecBinary() + _ = yym2489 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31556,46 +31604,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2485 := z.EncBinary() - _ = yym2485 + yym2490 := z.EncBinary() + _ = yym2490 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2486 := !z.EncBinary() - yy2arr2486 := z.EncBasicHandle().StructToArray - var yyq2486 [1]bool - _, _, _ = yysep2486, yyq2486, yy2arr2486 - const yyr2486 bool = false - yyq2486[0] = x.Phase != "" - var yynn2486 int - if yyr2486 || yy2arr2486 { + yysep2491 := !z.EncBinary() + yy2arr2491 := z.EncBasicHandle().StructToArray + var yyq2491 [1]bool + _, _, _ = yysep2491, yyq2491, yy2arr2491 + const yyr2491 bool = false + yyq2491[0] = x.Phase != "" + var yynn2491 int + if yyr2491 || yy2arr2491 { r.EncodeArrayStart(1) } else { - yynn2486 = 0 - for _, b := range yyq2486 { + yynn2491 = 0 + for _, b := range yyq2491 { if b { - yynn2486++ + yynn2491++ } } - r.EncodeMapStart(yynn2486) - yynn2486 = 0 + r.EncodeMapStart(yynn2491) + yynn2491 = 0 } - if yyr2486 || yy2arr2486 { + if yyr2491 || yy2arr2491 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[0] { + if yyq2491[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2486[0] { + if yyq2491[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2486 || yy2arr2486 { + if yyr2491 || yy2arr2491 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31608,25 +31656,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2488 := z.DecBinary() - _ = yym2488 + yym2493 := z.DecBinary() + _ = yym2493 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2489 := r.ContainerType() - if yyct2489 == codecSelferValueTypeMap1234 { - yyl2489 := r.ReadMapStart() - if yyl2489 == 0 { + yyct2494 := r.ContainerType() + if yyct2494 == codecSelferValueTypeMap1234 { + yyl2494 := r.ReadMapStart() + if yyl2494 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2489, d) + x.codecDecodeSelfFromMap(yyl2494, d) } - } else if yyct2489 == codecSelferValueTypeArray1234 { - yyl2489 := r.ReadArrayStart() - if yyl2489 == 0 { + } else if yyct2494 == codecSelferValueTypeArray1234 { + yyl2494 := r.ReadArrayStart() + if yyl2494 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2489, d) + x.codecDecodeSelfFromArray(yyl2494, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31638,12 +31686,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2490Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2490Slc - var yyhl2490 bool = l >= 0 - for yyj2490 := 0; ; yyj2490++ { - if yyhl2490 { - if yyj2490 >= l { + var yys2495Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2495Slc + var yyhl2495 bool = l >= 0 + for yyj2495 := 0; ; yyj2495++ { + if yyhl2495 { + if yyj2495 >= l { break } } else { @@ -31652,10 +31700,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2490Slc = r.DecodeBytes(yys2490Slc, true, true) - yys2490 := string(yys2490Slc) + yys2495Slc = r.DecodeBytes(yys2495Slc, true, true) + yys2495 := string(yys2495Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2490 { + switch yys2495 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -31663,9 +31711,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2490) - } // end switch yys2490 - } // end for yyj2490 + z.DecStructFieldNotFound(-1, yys2495) + } // end switch yys2495 + } // end for yyj2495 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31673,16 +31721,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2492 int - var yyb2492 bool - var yyhl2492 bool = l >= 0 - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + var yyj2497 int + var yyb2497 bool + var yyhl2497 bool = l >= 0 + yyj2497++ + if yyhl2497 { + yyb2497 = yyj2497 > l } else { - yyb2492 = r.CheckBreak() + yyb2497 = r.CheckBreak() } - if yyb2492 { + if yyb2497 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31693,17 +31741,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj2492++ - if yyhl2492 { - yyb2492 = yyj2492 > l + yyj2497++ + if yyhl2497 { + yyb2497 = yyj2497 > l } else { - yyb2492 = r.CheckBreak() + yyb2497 = r.CheckBreak() } - if yyb2492 { + if yyb2497 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2492-1, "") + z.DecStructFieldNotFound(yyj2497-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31712,8 +31760,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2494 := z.EncBinary() - _ = yym2494 + yym2499 := z.EncBinary() + _ = yym2499 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31725,8 +31773,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2495 := z.DecBinary() - _ = yym2495 + yym2500 := z.DecBinary() + _ = yym2500 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31741,39 +31789,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2496 := z.EncBinary() - _ = yym2496 + yym2501 := z.EncBinary() + _ = yym2501 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2497 := !z.EncBinary() - yy2arr2497 := z.EncBasicHandle().StructToArray - var yyq2497 [5]bool - _, _, _ = yysep2497, yyq2497, yy2arr2497 - const yyr2497 bool = false - yyq2497[0] = x.Kind != "" - yyq2497[1] = x.APIVersion != "" - yyq2497[2] = true - yyq2497[3] = true - yyq2497[4] = true - var yynn2497 int - if yyr2497 || yy2arr2497 { + yysep2502 := !z.EncBinary() + yy2arr2502 := z.EncBasicHandle().StructToArray + var yyq2502 [5]bool + _, _, _ = yysep2502, yyq2502, yy2arr2502 + const yyr2502 bool = false + yyq2502[0] = x.Kind != "" + yyq2502[1] = x.APIVersion != "" + yyq2502[2] = true + yyq2502[3] = true + yyq2502[4] = true + var yynn2502 int + if yyr2502 || yy2arr2502 { r.EncodeArrayStart(5) } else { - yynn2497 = 0 - for _, b := range yyq2497 { + yynn2502 = 0 + for _, b := range yyq2502 { if b { - yynn2497++ + yynn2502++ } } - r.EncodeMapStart(yynn2497) - yynn2497 = 0 + r.EncodeMapStart(yynn2502) + yynn2502 = 0 } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2497[0] { - yym2499 := z.EncBinary() - _ = yym2499 + if yyq2502[0] { + yym2504 := z.EncBinary() + _ = yym2504 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31782,23 +31830,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2497[0] { + if yyq2502[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2500 := z.EncBinary() - _ = yym2500 + yym2505 := z.EncBinary() + _ = yym2505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2497[1] { - yym2502 := z.EncBinary() - _ = yym2502 + if yyq2502[1] { + yym2507 := z.EncBinary() + _ = yym2507 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31807,70 +31855,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2497[1] { + if yyq2502[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2503 := z.EncBinary() - _ = yym2503 + yym2508 := z.EncBinary() + _ = yym2508 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2497[2] { - yy2505 := &x.ObjectMeta - yy2505.CodecEncodeSelf(e) + if yyq2502[2] { + yy2510 := &x.ObjectMeta + yy2510.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2497[2] { + if yyq2502[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2506 := &x.ObjectMeta - yy2506.CodecEncodeSelf(e) + yy2511 := &x.ObjectMeta + yy2511.CodecEncodeSelf(e) } } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2497[3] { - yy2508 := &x.Spec - yy2508.CodecEncodeSelf(e) + if yyq2502[3] { + yy2513 := &x.Spec + yy2513.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2497[3] { + if yyq2502[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2509 := &x.Spec - yy2509.CodecEncodeSelf(e) + yy2514 := &x.Spec + yy2514.CodecEncodeSelf(e) } } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2497[4] { - yy2511 := &x.Status - yy2511.CodecEncodeSelf(e) + if yyq2502[4] { + yy2516 := &x.Status + yy2516.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2497[4] { + if yyq2502[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2512 := &x.Status - yy2512.CodecEncodeSelf(e) + yy2517 := &x.Status + yy2517.CodecEncodeSelf(e) } } - if yyr2497 || yy2arr2497 { + if yyr2502 || yy2arr2502 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31883,25 +31931,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2513 := z.DecBinary() - _ = yym2513 + yym2518 := z.DecBinary() + _ = yym2518 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2514 := r.ContainerType() - if yyct2514 == codecSelferValueTypeMap1234 { - yyl2514 := r.ReadMapStart() - if yyl2514 == 0 { + yyct2519 := r.ContainerType() + if yyct2519 == codecSelferValueTypeMap1234 { + yyl2519 := r.ReadMapStart() + if yyl2519 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2514, d) + x.codecDecodeSelfFromMap(yyl2519, d) } - } else if yyct2514 == codecSelferValueTypeArray1234 { - yyl2514 := r.ReadArrayStart() - if yyl2514 == 0 { + } else if yyct2519 == codecSelferValueTypeArray1234 { + yyl2519 := r.ReadArrayStart() + if yyl2519 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2514, d) + x.codecDecodeSelfFromArray(yyl2519, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31913,12 +31961,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2515Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2515Slc - var yyhl2515 bool = l >= 0 - for yyj2515 := 0; ; yyj2515++ { - if yyhl2515 { - if yyj2515 >= l { + var yys2520Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2520Slc + var yyhl2520 bool = l >= 0 + for yyj2520 := 0; ; yyj2520++ { + if yyhl2520 { + if yyj2520 >= l { break } } else { @@ -31927,10 +31975,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2515Slc = r.DecodeBytes(yys2515Slc, true, true) - yys2515 := string(yys2515Slc) + yys2520Slc = r.DecodeBytes(yys2520Slc, true, true) + yys2520 := string(yys2520Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2515 { + switch yys2520 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31947,27 +31995,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2518 := &x.ObjectMeta - yyv2518.CodecDecodeSelf(d) + yyv2523 := &x.ObjectMeta + yyv2523.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2519 := &x.Spec - yyv2519.CodecDecodeSelf(d) + yyv2524 := &x.Spec + yyv2524.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2520 := &x.Status - yyv2520.CodecDecodeSelf(d) + yyv2525 := &x.Status + yyv2525.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2515) - } // end switch yys2515 - } // end for yyj2515 + z.DecStructFieldNotFound(-1, yys2520) + } // end switch yys2520 + } // end for yyj2520 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31975,16 +32023,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2521 int - var yyb2521 bool - var yyhl2521 bool = l >= 0 - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + var yyj2526 int + var yyb2526 bool + var yyhl2526 bool = l >= 0 + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31994,13 +32042,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32010,13 +32058,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32024,16 +32072,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2524 := &x.ObjectMeta - yyv2524.CodecDecodeSelf(d) + yyv2529 := &x.ObjectMeta + yyv2529.CodecDecodeSelf(d) } - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32041,16 +32089,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2525 := &x.Spec - yyv2525.CodecDecodeSelf(d) + yyv2530 := &x.Spec + yyv2530.CodecDecodeSelf(d) } - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32058,21 +32106,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2526 := &x.Status - yyv2526.CodecDecodeSelf(d) + yyv2531 := &x.Status + yyv2531.CodecDecodeSelf(d) } for { - yyj2521++ - if yyhl2521 { - yyb2521 = yyj2521 > l + yyj2526++ + if yyhl2526 { + yyb2526 = yyj2526 > l } else { - yyb2521 = r.CheckBreak() + yyb2526 = r.CheckBreak() } - if yyb2521 { + if yyb2526 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2521-1, "") + z.DecStructFieldNotFound(yyj2526-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32084,37 +32132,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2527 := z.EncBinary() - _ = yym2527 + yym2532 := z.EncBinary() + _ = yym2532 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2528 := !z.EncBinary() - yy2arr2528 := z.EncBasicHandle().StructToArray - var yyq2528 [4]bool - _, _, _ = yysep2528, yyq2528, yy2arr2528 - const yyr2528 bool = false - yyq2528[0] = x.Kind != "" - yyq2528[1] = x.APIVersion != "" - yyq2528[2] = true - var yynn2528 int - if yyr2528 || yy2arr2528 { + yysep2533 := !z.EncBinary() + yy2arr2533 := z.EncBasicHandle().StructToArray + var yyq2533 [4]bool + _, _, _ = yysep2533, yyq2533, yy2arr2533 + const yyr2533 bool = false + yyq2533[0] = x.Kind != "" + yyq2533[1] = x.APIVersion != "" + yyq2533[2] = true + var yynn2533 int + if yyr2533 || yy2arr2533 { r.EncodeArrayStart(4) } else { - yynn2528 = 1 - for _, b := range yyq2528 { + yynn2533 = 1 + for _, b := range yyq2533 { if b { - yynn2528++ + yynn2533++ } } - r.EncodeMapStart(yynn2528) - yynn2528 = 0 + r.EncodeMapStart(yynn2533) + yynn2533 = 0 } - if yyr2528 || yy2arr2528 { + if yyr2533 || yy2arr2533 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2528[0] { - yym2530 := z.EncBinary() - _ = yym2530 + if yyq2533[0] { + yym2535 := z.EncBinary() + _ = yym2535 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32123,23 +32171,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2528[0] { + if yyq2533[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2531 := z.EncBinary() - _ = yym2531 + yym2536 := z.EncBinary() + _ = yym2536 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2528 || yy2arr2528 { + if yyr2533 || yy2arr2533 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2528[1] { - yym2533 := z.EncBinary() - _ = yym2533 + if yyq2533[1] { + yym2538 := z.EncBinary() + _ = yym2538 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32148,54 +32196,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2528[1] { + if yyq2533[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2534 := z.EncBinary() - _ = yym2534 + yym2539 := z.EncBinary() + _ = yym2539 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2528 || yy2arr2528 { + if yyr2533 || yy2arr2533 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2528[2] { - yy2536 := &x.ListMeta - yym2537 := z.EncBinary() - _ = yym2537 + if yyq2533[2] { + yy2541 := &x.ListMeta + yym2542 := z.EncBinary() + _ = yym2542 if false { - } else if z.HasExtensions() && z.EncExt(yy2536) { + } else if z.HasExtensions() && z.EncExt(yy2541) { } else { - z.EncFallback(yy2536) + z.EncFallback(yy2541) } } else { r.EncodeNil() } } else { - if yyq2528[2] { + if yyq2533[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2538 := &x.ListMeta - yym2539 := z.EncBinary() - _ = yym2539 + yy2543 := &x.ListMeta + yym2544 := z.EncBinary() + _ = yym2544 if false { - } else if z.HasExtensions() && z.EncExt(yy2538) { + } else if z.HasExtensions() && z.EncExt(yy2543) { } else { - z.EncFallback(yy2538) + z.EncFallback(yy2543) } } } - if yyr2528 || yy2arr2528 { + if yyr2533 || yy2arr2533 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2541 := z.EncBinary() - _ = yym2541 + yym2546 := z.EncBinary() + _ = yym2546 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -32208,15 +32256,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2542 := z.EncBinary() - _ = yym2542 + yym2547 := z.EncBinary() + _ = yym2547 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr2528 || yy2arr2528 { + if yyr2533 || yy2arr2533 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32229,25 +32277,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2543 := z.DecBinary() - _ = yym2543 + yym2548 := z.DecBinary() + _ = yym2548 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2544 := r.ContainerType() - if yyct2544 == codecSelferValueTypeMap1234 { - yyl2544 := r.ReadMapStart() - if yyl2544 == 0 { + yyct2549 := r.ContainerType() + if yyct2549 == codecSelferValueTypeMap1234 { + yyl2549 := r.ReadMapStart() + if yyl2549 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2544, d) + x.codecDecodeSelfFromMap(yyl2549, d) } - } else if yyct2544 == codecSelferValueTypeArray1234 { - yyl2544 := r.ReadArrayStart() - if yyl2544 == 0 { + } else if yyct2549 == codecSelferValueTypeArray1234 { + yyl2549 := r.ReadArrayStart() + if yyl2549 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2544, d) + x.codecDecodeSelfFromArray(yyl2549, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32259,12 +32307,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2545Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2545Slc - var yyhl2545 bool = l >= 0 - for yyj2545 := 0; ; yyj2545++ { - if yyhl2545 { - if yyj2545 >= l { + var yys2550Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2550Slc + var yyhl2550 bool = l >= 0 + for yyj2550 := 0; ; yyj2550++ { + if yyhl2550 { + if yyj2550 >= l { break } } else { @@ -32273,10 +32321,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2545Slc = r.DecodeBytes(yys2545Slc, true, true) - yys2545 := string(yys2545Slc) + yys2550Slc = r.DecodeBytes(yys2550Slc, true, true) + yys2550 := string(yys2550Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2545 { + switch yys2550 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32293,31 +32341,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2548 := &x.ListMeta - yym2549 := z.DecBinary() - _ = yym2549 + yyv2553 := &x.ListMeta + yym2554 := z.DecBinary() + _ = yym2554 if false { - } else if z.HasExtensions() && z.DecExt(yyv2548) { + } else if z.HasExtensions() && z.DecExt(yyv2553) { } else { - z.DecFallback(yyv2548, false) + z.DecFallback(yyv2553, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2550 := &x.Items - yym2551 := z.DecBinary() - _ = yym2551 + yyv2555 := &x.Items + yym2556 := z.DecBinary() + _ = yym2556 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2550), d) + h.decSliceNamespace((*[]Namespace)(yyv2555), d) } } default: - z.DecStructFieldNotFound(-1, yys2545) - } // end switch yys2545 - } // end for yyj2545 + z.DecStructFieldNotFound(-1, yys2550) + } // end switch yys2550 + } // end for yyj2550 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32325,16 +32373,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2552 int - var yyb2552 bool - var yyhl2552 bool = l >= 0 - yyj2552++ - if yyhl2552 { - yyb2552 = yyj2552 > l + var yyj2557 int + var yyb2557 bool + var yyhl2557 bool = l >= 0 + yyj2557++ + if yyhl2557 { + yyb2557 = yyj2557 > l } else { - yyb2552 = r.CheckBreak() + yyb2557 = r.CheckBreak() } - if yyb2552 { + if yyb2557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32344,13 +32392,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2552++ - if yyhl2552 { - yyb2552 = yyj2552 > l + yyj2557++ + if yyhl2557 { + yyb2557 = yyj2557 > l } else { - yyb2552 = r.CheckBreak() + yyb2557 = r.CheckBreak() } - if yyb2552 { + if yyb2557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32360,13 +32408,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2552++ - if yyhl2552 { - yyb2552 = yyj2552 > l + yyj2557++ + if yyhl2557 { + yyb2557 = yyj2557 > l } else { - yyb2552 = r.CheckBreak() + yyb2557 = r.CheckBreak() } - if yyb2552 { + if yyb2557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32374,22 +32422,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2555 := &x.ListMeta - yym2556 := z.DecBinary() - _ = yym2556 + yyv2560 := &x.ListMeta + yym2561 := z.DecBinary() + _ = yym2561 if false { - } else if z.HasExtensions() && z.DecExt(yyv2555) { + } else if z.HasExtensions() && z.DecExt(yyv2560) { } else { - z.DecFallback(yyv2555, false) + z.DecFallback(yyv2560, false) } } - yyj2552++ - if yyhl2552 { - yyb2552 = yyj2552 > l + yyj2557++ + if yyhl2557 { + yyb2557 = yyj2557 > l } else { - yyb2552 = r.CheckBreak() + yyb2557 = r.CheckBreak() } - if yyb2552 { + if yyb2557 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32397,26 +32445,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2557 := &x.Items - yym2558 := z.DecBinary() - _ = yym2558 + yyv2562 := &x.Items + yym2563 := z.DecBinary() + _ = yym2563 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2557), d) + h.decSliceNamespace((*[]Namespace)(yyv2562), d) } } for { - yyj2552++ - if yyhl2552 { - yyb2552 = yyj2552 > l + yyj2557++ + if yyhl2557 { + yyb2557 = yyj2557 > l } else { - yyb2552 = r.CheckBreak() + yyb2557 = r.CheckBreak() } - if yyb2552 { + if yyb2557 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2552-1, "") + z.DecStructFieldNotFound(yyj2557-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32428,37 +32476,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2559 := z.EncBinary() - _ = yym2559 + yym2564 := z.EncBinary() + _ = yym2564 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2560 := !z.EncBinary() - yy2arr2560 := z.EncBasicHandle().StructToArray - var yyq2560 [4]bool - _, _, _ = yysep2560, yyq2560, yy2arr2560 - const yyr2560 bool = false - yyq2560[0] = x.Kind != "" - yyq2560[1] = x.APIVersion != "" - yyq2560[2] = true - var yynn2560 int - if yyr2560 || yy2arr2560 { + yysep2565 := !z.EncBinary() + yy2arr2565 := z.EncBasicHandle().StructToArray + var yyq2565 [4]bool + _, _, _ = yysep2565, yyq2565, yy2arr2565 + const yyr2565 bool = false + yyq2565[0] = x.Kind != "" + yyq2565[1] = x.APIVersion != "" + yyq2565[2] = true + var yynn2565 int + if yyr2565 || yy2arr2565 { r.EncodeArrayStart(4) } else { - yynn2560 = 1 - for _, b := range yyq2560 { + yynn2565 = 1 + for _, b := range yyq2565 { if b { - yynn2560++ + yynn2565++ } } - r.EncodeMapStart(yynn2560) - yynn2560 = 0 + r.EncodeMapStart(yynn2565) + yynn2565 = 0 } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[0] { - yym2562 := z.EncBinary() - _ = yym2562 + if yyq2565[0] { + yym2567 := z.EncBinary() + _ = yym2567 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32467,23 +32515,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2560[0] { + if yyq2565[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2563 := z.EncBinary() - _ = yym2563 + yym2568 := z.EncBinary() + _ = yym2568 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[1] { - yym2565 := z.EncBinary() - _ = yym2565 + if yyq2565[1] { + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32492,47 +32540,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2560[1] { + if yyq2565[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2566 := z.EncBinary() - _ = yym2566 + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2560[2] { - yy2568 := &x.ObjectMeta - yy2568.CodecEncodeSelf(e) + if yyq2565[2] { + yy2573 := &x.ObjectMeta + yy2573.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2560[2] { + if yyq2565[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2569 := &x.ObjectMeta - yy2569.CodecEncodeSelf(e) + yy2574 := &x.ObjectMeta + yy2574.CodecEncodeSelf(e) } } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2571 := &x.Target - yy2571.CodecEncodeSelf(e) + yy2576 := &x.Target + yy2576.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2572 := &x.Target - yy2572.CodecEncodeSelf(e) + yy2577 := &x.Target + yy2577.CodecEncodeSelf(e) } - if yyr2560 || yy2arr2560 { + if yyr2565 || yy2arr2565 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32545,25 +32593,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2573 := z.DecBinary() - _ = yym2573 + yym2578 := z.DecBinary() + _ = yym2578 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2574 := r.ContainerType() - if yyct2574 == codecSelferValueTypeMap1234 { - yyl2574 := r.ReadMapStart() - if yyl2574 == 0 { + yyct2579 := r.ContainerType() + if yyct2579 == codecSelferValueTypeMap1234 { + yyl2579 := r.ReadMapStart() + if yyl2579 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2574, d) + x.codecDecodeSelfFromMap(yyl2579, d) } - } else if yyct2574 == codecSelferValueTypeArray1234 { - yyl2574 := r.ReadArrayStart() - if yyl2574 == 0 { + } else if yyct2579 == codecSelferValueTypeArray1234 { + yyl2579 := r.ReadArrayStart() + if yyl2579 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2574, d) + x.codecDecodeSelfFromArray(yyl2579, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32575,12 +32623,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2575Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2575Slc - var yyhl2575 bool = l >= 0 - for yyj2575 := 0; ; yyj2575++ { - if yyhl2575 { - if yyj2575 >= l { + var yys2580Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2580Slc + var yyhl2580 bool = l >= 0 + for yyj2580 := 0; ; yyj2580++ { + if yyhl2580 { + if yyj2580 >= l { break } } else { @@ -32589,10 +32637,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2575Slc = r.DecodeBytes(yys2575Slc, true, true) - yys2575 := string(yys2575Slc) + yys2580Slc = r.DecodeBytes(yys2580Slc, true, true) + yys2580 := string(yys2580Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2575 { + switch yys2580 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32609,20 +32657,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2578 := &x.ObjectMeta - yyv2578.CodecDecodeSelf(d) + yyv2583 := &x.ObjectMeta + yyv2583.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2579 := &x.Target - yyv2579.CodecDecodeSelf(d) + yyv2584 := &x.Target + yyv2584.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2575) - } // end switch yys2575 - } // end for yyj2575 + z.DecStructFieldNotFound(-1, yys2580) + } // end switch yys2580 + } // end for yyj2580 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32630,16 +32678,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2580 int - var yyb2580 bool - var yyhl2580 bool = l >= 0 - yyj2580++ - if yyhl2580 { - yyb2580 = yyj2580 > l + var yyj2585 int + var yyb2585 bool + var yyhl2585 bool = l >= 0 + yyj2585++ + if yyhl2585 { + yyb2585 = yyj2585 > l } else { - yyb2580 = r.CheckBreak() + yyb2585 = r.CheckBreak() } - if yyb2580 { + if yyb2585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32649,13 +32697,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2580++ - if yyhl2580 { - yyb2580 = yyj2580 > l + yyj2585++ + if yyhl2585 { + yyb2585 = yyj2585 > l } else { - yyb2580 = r.CheckBreak() + yyb2585 = r.CheckBreak() } - if yyb2580 { + if yyb2585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32665,13 +32713,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2580++ - if yyhl2580 { - yyb2580 = yyj2580 > l + yyj2585++ + if yyhl2585 { + yyb2585 = yyj2585 > l } else { - yyb2580 = r.CheckBreak() + yyb2585 = r.CheckBreak() } - if yyb2580 { + if yyb2585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32679,16 +32727,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2583 := &x.ObjectMeta - yyv2583.CodecDecodeSelf(d) + yyv2588 := &x.ObjectMeta + yyv2588.CodecDecodeSelf(d) } - yyj2580++ - if yyhl2580 { - yyb2580 = yyj2580 > l + yyj2585++ + if yyhl2585 { + yyb2585 = yyj2585 > l } else { - yyb2580 = r.CheckBreak() + yyb2585 = r.CheckBreak() } - if yyb2580 { + if yyb2585 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32696,21 +32744,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2584 := &x.Target - yyv2584.CodecDecodeSelf(d) + yyv2589 := &x.Target + yyv2589.CodecDecodeSelf(d) } for { - yyj2580++ - if yyhl2580 { - yyb2580 = yyj2580 > l + yyj2585++ + if yyhl2585 { + yyb2585 = yyj2585 > l } else { - yyb2580 = r.CheckBreak() + yyb2585 = r.CheckBreak() } - if yyb2580 { + if yyb2585 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2580-1, "") + z.DecStructFieldNotFound(yyj2585-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32722,36 +32770,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2585 := z.EncBinary() - _ = yym2585 + yym2590 := z.EncBinary() + _ = yym2590 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2586 := !z.EncBinary() - yy2arr2586 := z.EncBasicHandle().StructToArray - var yyq2586 [3]bool - _, _, _ = yysep2586, yyq2586, yy2arr2586 - const yyr2586 bool = false - yyq2586[0] = x.Kind != "" - yyq2586[1] = x.APIVersion != "" - var yynn2586 int - if yyr2586 || yy2arr2586 { + yysep2591 := !z.EncBinary() + yy2arr2591 := z.EncBasicHandle().StructToArray + var yyq2591 [3]bool + _, _, _ = yysep2591, yyq2591, yy2arr2591 + const yyr2591 bool = false + yyq2591[0] = x.Kind != "" + yyq2591[1] = x.APIVersion != "" + var yynn2591 int + if yyr2591 || yy2arr2591 { r.EncodeArrayStart(3) } else { - yynn2586 = 1 - for _, b := range yyq2586 { + yynn2591 = 1 + for _, b := range yyq2591 { if b { - yynn2586++ + yynn2591++ } } - r.EncodeMapStart(yynn2586) - yynn2586 = 0 + r.EncodeMapStart(yynn2591) + yynn2591 = 0 } - if yyr2586 || yy2arr2586 { + if yyr2591 || yy2arr2591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2586[0] { - yym2588 := z.EncBinary() - _ = yym2588 + if yyq2591[0] { + yym2593 := z.EncBinary() + _ = yym2593 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32760,23 +32808,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2586[0] { + if yyq2591[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2589 := z.EncBinary() - _ = yym2589 + yym2594 := z.EncBinary() + _ = yym2594 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2586 || yy2arr2586 { + if yyr2591 || yy2arr2591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2586[1] { - yym2591 := z.EncBinary() - _ = yym2591 + if yyq2591[1] { + yym2596 := z.EncBinary() + _ = yym2596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32785,29 +32833,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2586[1] { + if yyq2591[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2592 := z.EncBinary() - _ = yym2592 + yym2597 := z.EncBinary() + _ = yym2597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2586 || yy2arr2586 { + if yyr2591 || yy2arr2591 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2594 := *x.GracePeriodSeconds - yym2595 := z.EncBinary() - _ = yym2595 + yy2599 := *x.GracePeriodSeconds + yym2600 := z.EncBinary() + _ = yym2600 if false { } else { - r.EncodeInt(int64(yy2594)) + r.EncodeInt(int64(yy2599)) } } } else { @@ -32817,16 +32865,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2596 := *x.GracePeriodSeconds - yym2597 := z.EncBinary() - _ = yym2597 + yy2601 := *x.GracePeriodSeconds + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { - r.EncodeInt(int64(yy2596)) + r.EncodeInt(int64(yy2601)) } } } - if yyr2586 || yy2arr2586 { + if yyr2591 || yy2arr2591 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32839,25 +32887,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2598 := z.DecBinary() - _ = yym2598 + yym2603 := z.DecBinary() + _ = yym2603 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2599 := r.ContainerType() - if yyct2599 == codecSelferValueTypeMap1234 { - yyl2599 := r.ReadMapStart() - if yyl2599 == 0 { + yyct2604 := r.ContainerType() + if yyct2604 == codecSelferValueTypeMap1234 { + yyl2604 := r.ReadMapStart() + if yyl2604 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2599, d) + x.codecDecodeSelfFromMap(yyl2604, d) } - } else if yyct2599 == codecSelferValueTypeArray1234 { - yyl2599 := r.ReadArrayStart() - if yyl2599 == 0 { + } else if yyct2604 == codecSelferValueTypeArray1234 { + yyl2604 := r.ReadArrayStart() + if yyl2604 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2599, d) + x.codecDecodeSelfFromArray(yyl2604, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32869,12 +32917,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2600Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2600Slc - var yyhl2600 bool = l >= 0 - for yyj2600 := 0; ; yyj2600++ { - if yyhl2600 { - if yyj2600 >= l { + var yys2605Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2605Slc + var yyhl2605 bool = l >= 0 + for yyj2605 := 0; ; yyj2605++ { + if yyhl2605 { + if yyj2605 >= l { break } } else { @@ -32883,10 +32931,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2600Slc = r.DecodeBytes(yys2600Slc, true, true) - yys2600 := string(yys2600Slc) + yys2605Slc = r.DecodeBytes(yys2605Slc, true, true) + yys2605 := string(yys2605Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2600 { + switch yys2605 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32908,17 +32956,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2604 := z.DecBinary() - _ = yym2604 + yym2609 := z.DecBinary() + _ = yym2609 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2600) - } // end switch yys2600 - } // end for yyj2600 + z.DecStructFieldNotFound(-1, yys2605) + } // end switch yys2605 + } // end for yyj2605 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32926,16 +32974,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2605 int - var yyb2605 bool - var yyhl2605 bool = l >= 0 - yyj2605++ - if yyhl2605 { - yyb2605 = yyj2605 > l + var yyj2610 int + var yyb2610 bool + var yyhl2610 bool = l >= 0 + yyj2610++ + if yyhl2610 { + yyb2610 = yyj2610 > l } else { - yyb2605 = r.CheckBreak() + yyb2610 = r.CheckBreak() } - if yyb2605 { + if yyb2610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32945,13 +32993,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2605++ - if yyhl2605 { - yyb2605 = yyj2605 > l + yyj2610++ + if yyhl2610 { + yyb2610 = yyj2610 > l } else { - yyb2605 = r.CheckBreak() + yyb2610 = r.CheckBreak() } - if yyb2605 { + if yyb2610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32961,13 +33009,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2605++ - if yyhl2605 { - yyb2605 = yyj2605 > l + yyj2610++ + if yyhl2610 { + yyb2610 = yyj2610 > l } else { - yyb2605 = r.CheckBreak() + yyb2610 = r.CheckBreak() } - if yyb2605 { + if yyb2610 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32980,25 +33028,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2609 := z.DecBinary() - _ = yym2609 + yym2614 := z.DecBinary() + _ = yym2614 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2605++ - if yyhl2605 { - yyb2605 = yyj2605 > l + yyj2610++ + if yyhl2610 { + yyb2610 = yyj2610 > l } else { - yyb2605 = r.CheckBreak() + yyb2610 = r.CheckBreak() } - if yyb2605 { + if yyb2610 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2605-1, "") + z.DecStructFieldNotFound(yyj2610-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33010,36 +33058,36 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2610 := z.EncBinary() - _ = yym2610 + yym2615 := z.EncBinary() + _ = yym2615 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2611 := !z.EncBinary() - yy2arr2611 := z.EncBasicHandle().StructToArray - var yyq2611 [10]bool - _, _, _ = yysep2611, yyq2611, yy2arr2611 - const yyr2611 bool = false - yyq2611[0] = x.Kind != "" - yyq2611[1] = x.APIVersion != "" - var yynn2611 int - if yyr2611 || yy2arr2611 { + yysep2616 := !z.EncBinary() + yy2arr2616 := z.EncBasicHandle().StructToArray + var yyq2616 [10]bool + _, _, _ = yysep2616, yyq2616, yy2arr2616 + const yyr2616 bool = false + yyq2616[0] = x.Kind != "" + yyq2616[1] = x.APIVersion != "" + var yynn2616 int + if yyr2616 || yy2arr2616 { r.EncodeArrayStart(10) } else { - yynn2611 = 8 - for _, b := range yyq2611 { + yynn2616 = 8 + for _, b := range yyq2616 { if b { - yynn2611++ + yynn2616++ } } - r.EncodeMapStart(yynn2611) - yynn2611 = 0 + r.EncodeMapStart(yynn2616) + yynn2616 = 0 } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[0] { - yym2613 := z.EncBinary() - _ = yym2613 + if yyq2616[0] { + yym2618 := z.EncBinary() + _ = yym2618 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33048,23 +33096,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2611[0] { + if yyq2616[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2614 := z.EncBinary() - _ = yym2614 + yym2619 := z.EncBinary() + _ = yym2619 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2611[1] { - yym2616 := z.EncBinary() - _ = yym2616 + if yyq2616[1] { + yym2621 := z.EncBinary() + _ = yym2621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33073,22 +33121,22 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2611[1] { + if yyq2616[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2617 := z.EncBinary() - _ = yym2617 + yym2622 := z.EncBinary() + _ = yym2622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2619 := z.EncBinary() - _ = yym2619 + yym2624 := z.EncBinary() + _ = yym2624 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -33097,17 +33145,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2620 := z.EncBinary() - _ = yym2620 + yym2625 := z.EncBinary() + _ = yym2625 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2622 := z.EncBinary() - _ = yym2622 + yym2627 := z.EncBinary() + _ = yym2627 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -33116,17 +33164,17 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2623 := z.EncBinary() - _ = yym2623 + yym2628 := z.EncBinary() + _ = yym2628 if false { } else { r.EncodeBool(bool(x.Follow)) } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2625 := z.EncBinary() - _ = yym2625 + yym2630 := z.EncBinary() + _ = yym2630 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -33135,24 +33183,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2626 := z.EncBinary() - _ = yym2626 + yym2631 := z.EncBinary() + _ = yym2631 if false { } else { r.EncodeBool(bool(x.Previous)) } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2628 := *x.SinceSeconds - yym2629 := z.EncBinary() - _ = yym2629 + yy2633 := *x.SinceSeconds + yym2634 := z.EncBinary() + _ = yym2634 if false { } else { - r.EncodeInt(int64(yy2628)) + r.EncodeInt(int64(yy2633)) } } } else { @@ -33162,27 +33210,27 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2630 := *x.SinceSeconds - yym2631 := z.EncBinary() - _ = yym2631 + yy2635 := *x.SinceSeconds + yym2636 := z.EncBinary() + _ = yym2636 if false { } else { - r.EncodeInt(int64(yy2630)) + r.EncodeInt(int64(yy2635)) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2633 := z.EncBinary() - _ = yym2633 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2633 { + } else if yym2638 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2633 && z.IsJSONHandle() { + } else if !yym2638 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -33195,23 +33243,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.SinceTime == nil { r.EncodeNil() } else { - yym2634 := z.EncBinary() - _ = yym2634 + yym2639 := z.EncBinary() + _ = yym2639 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2634 { + } else if yym2639 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2634 && z.IsJSONHandle() { + } else if !yym2639 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2636 := z.EncBinary() - _ = yym2636 + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -33220,24 +33268,24 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2637 := z.EncBinary() - _ = yym2637 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2639 := *x.TailLines - yym2640 := z.EncBinary() - _ = yym2640 + yy2644 := *x.TailLines + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { - r.EncodeInt(int64(yy2639)) + r.EncodeInt(int64(yy2644)) } } } else { @@ -33247,26 +33295,26 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.TailLines == nil { r.EncodeNil() } else { - yy2641 := *x.TailLines - yym2642 := z.EncBinary() - _ = yym2642 + yy2646 := *x.TailLines + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { - r.EncodeInt(int64(yy2641)) + r.EncodeInt(int64(yy2646)) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2644 := *x.LimitBytes - yym2645 := z.EncBinary() - _ = yym2645 + yy2649 := *x.LimitBytes + yym2650 := z.EncBinary() + _ = yym2650 if false { } else { - r.EncodeInt(int64(yy2644)) + r.EncodeInt(int64(yy2649)) } } } else { @@ -33276,16 +33324,16 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2646 := *x.LimitBytes - yym2647 := z.EncBinary() - _ = yym2647 + yy2651 := *x.LimitBytes + yym2652 := z.EncBinary() + _ = yym2652 if false { } else { - r.EncodeInt(int64(yy2646)) + r.EncodeInt(int64(yy2651)) } } } - if yyr2611 || yy2arr2611 { + if yyr2616 || yy2arr2616 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33298,25 +33346,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2648 := z.DecBinary() - _ = yym2648 + yym2653 := z.DecBinary() + _ = yym2653 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2649 := r.ContainerType() - if yyct2649 == codecSelferValueTypeMap1234 { - yyl2649 := r.ReadMapStart() - if yyl2649 == 0 { + yyct2654 := r.ContainerType() + if yyct2654 == codecSelferValueTypeMap1234 { + yyl2654 := r.ReadMapStart() + if yyl2654 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2649, d) + x.codecDecodeSelfFromMap(yyl2654, d) } - } else if yyct2649 == codecSelferValueTypeArray1234 { - yyl2649 := r.ReadArrayStart() - if yyl2649 == 0 { + } else if yyct2654 == codecSelferValueTypeArray1234 { + yyl2654 := r.ReadArrayStart() + if yyl2654 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2649, d) + x.codecDecodeSelfFromArray(yyl2654, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33328,12 +33376,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2650Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2650Slc - var yyhl2650 bool = l >= 0 - for yyj2650 := 0; ; yyj2650++ { - if yyhl2650 { - if yyj2650 >= l { + var yys2655Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2655Slc + var yyhl2655 bool = l >= 0 + for yyj2655 := 0; ; yyj2655++ { + if yyhl2655 { + if yyj2655 >= l { break } } else { @@ -33342,10 +33390,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2650Slc = r.DecodeBytes(yys2650Slc, true, true) - yys2650 := string(yys2650Slc) + yys2655Slc = r.DecodeBytes(yys2655Slc, true, true) + yys2655 := string(yys2655Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2650 { + switch yys2655 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33385,8 +33433,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2657 := z.DecBinary() - _ = yym2657 + yym2662 := z.DecBinary() + _ = yym2662 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -33401,13 +33449,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2659 := z.DecBinary() - _ = yym2659 + yym2664 := z.DecBinary() + _ = yym2664 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2659 { + } else if yym2664 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2659 && z.IsJSONHandle() { + } else if !yym2664 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -33428,8 +33476,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2662 := z.DecBinary() - _ = yym2662 + yym2667 := z.DecBinary() + _ = yym2667 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -33444,17 +33492,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2664 := z.DecBinary() - _ = yym2664 + yym2669 := z.DecBinary() + _ = yym2669 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2650) - } // end switch yys2650 - } // end for yyj2650 + z.DecStructFieldNotFound(-1, yys2655) + } // end switch yys2655 + } // end for yyj2655 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33462,16 +33510,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2665 int - var yyb2665 bool - var yyhl2665 bool = l >= 0 - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + var yyj2670 int + var yyb2670 bool + var yyhl2670 bool = l >= 0 + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33481,13 +33529,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33497,13 +33545,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33513,13 +33561,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33529,13 +33577,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33545,13 +33593,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33564,20 +33612,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2672 := z.DecBinary() - _ = yym2672 + yym2677 := z.DecBinary() + _ = yym2677 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33590,25 +33638,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2674 := z.DecBinary() - _ = yym2674 + yym2679 := z.DecBinary() + _ = yym2679 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2674 { + } else if yym2679 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2674 && z.IsJSONHandle() { + } else if !yym2679 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33618,13 +33666,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33637,20 +33685,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2677 := z.DecBinary() - _ = yym2677 + yym2682 := z.DecBinary() + _ = yym2682 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33663,25 +33711,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2679 := z.DecBinary() - _ = yym2679 + yym2684 := z.DecBinary() + _ = yym2684 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2665++ - if yyhl2665 { - yyb2665 = yyj2665 > l + yyj2670++ + if yyhl2670 { + yyb2670 = yyj2670 > l } else { - yyb2665 = r.CheckBreak() + yyb2670 = r.CheckBreak() } - if yyb2665 { + if yyb2670 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2665-1, "") + z.DecStructFieldNotFound(yyj2670-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33693,41 +33741,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2680 := z.EncBinary() - _ = yym2680 + yym2685 := z.EncBinary() + _ = yym2685 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2681 := !z.EncBinary() - yy2arr2681 := z.EncBasicHandle().StructToArray - var yyq2681 [7]bool - _, _, _ = yysep2681, yyq2681, yy2arr2681 - const yyr2681 bool = false - yyq2681[0] = x.Kind != "" - yyq2681[1] = x.APIVersion != "" - yyq2681[2] = x.Stdin != false - yyq2681[3] = x.Stdout != false - yyq2681[4] = x.Stderr != false - yyq2681[5] = x.TTY != false - yyq2681[6] = x.Container != "" - var yynn2681 int - if yyr2681 || yy2arr2681 { + yysep2686 := !z.EncBinary() + yy2arr2686 := z.EncBasicHandle().StructToArray + var yyq2686 [7]bool + _, _, _ = yysep2686, yyq2686, yy2arr2686 + const yyr2686 bool = false + yyq2686[0] = x.Kind != "" + yyq2686[1] = x.APIVersion != "" + yyq2686[2] = x.Stdin != false + yyq2686[3] = x.Stdout != false + yyq2686[4] = x.Stderr != false + yyq2686[5] = x.TTY != false + yyq2686[6] = x.Container != "" + var yynn2686 int + if yyr2686 || yy2arr2686 { r.EncodeArrayStart(7) } else { - yynn2681 = 0 - for _, b := range yyq2681 { + yynn2686 = 0 + for _, b := range yyq2686 { if b { - yynn2681++ + yynn2686++ } } - r.EncodeMapStart(yynn2681) - yynn2681 = 0 + r.EncodeMapStart(yynn2686) + yynn2686 = 0 } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[0] { - yym2683 := z.EncBinary() - _ = yym2683 + if yyq2686[0] { + yym2688 := z.EncBinary() + _ = yym2688 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33736,23 +33784,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2681[0] { + if yyq2686[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2684 := z.EncBinary() - _ = yym2684 + yym2689 := z.EncBinary() + _ = yym2689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[1] { - yym2686 := z.EncBinary() - _ = yym2686 + if yyq2686[1] { + yym2691 := z.EncBinary() + _ = yym2691 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33761,23 +33809,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2681[1] { + if yyq2686[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2687 := z.EncBinary() - _ = yym2687 + yym2692 := z.EncBinary() + _ = yym2692 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[2] { - yym2689 := z.EncBinary() - _ = yym2689 + if yyq2686[2] { + yym2694 := z.EncBinary() + _ = yym2694 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -33786,23 +33834,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2681[2] { + if yyq2686[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2690 := z.EncBinary() - _ = yym2690 + yym2695 := z.EncBinary() + _ = yym2695 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[3] { - yym2692 := z.EncBinary() - _ = yym2692 + if yyq2686[3] { + yym2697 := z.EncBinary() + _ = yym2697 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -33811,23 +33859,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2681[3] { + if yyq2686[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2693 := z.EncBinary() - _ = yym2693 + yym2698 := z.EncBinary() + _ = yym2698 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[4] { - yym2695 := z.EncBinary() - _ = yym2695 + if yyq2686[4] { + yym2700 := z.EncBinary() + _ = yym2700 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -33836,23 +33884,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2681[4] { + if yyq2686[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2696 := z.EncBinary() - _ = yym2696 + yym2701 := z.EncBinary() + _ = yym2701 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[5] { - yym2698 := z.EncBinary() - _ = yym2698 + if yyq2686[5] { + yym2703 := z.EncBinary() + _ = yym2703 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -33861,23 +33909,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2681[5] { + if yyq2686[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2699 := z.EncBinary() - _ = yym2699 + yym2704 := z.EncBinary() + _ = yym2704 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2681[6] { - yym2701 := z.EncBinary() - _ = yym2701 + if yyq2686[6] { + yym2706 := z.EncBinary() + _ = yym2706 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -33886,19 +33934,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2681[6] { + if yyq2686[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2702 := z.EncBinary() - _ = yym2702 + yym2707 := z.EncBinary() + _ = yym2707 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2681 || yy2arr2681 { + if yyr2686 || yy2arr2686 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33911,25 +33959,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2703 := z.DecBinary() - _ = yym2703 + yym2708 := z.DecBinary() + _ = yym2708 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2704 := r.ContainerType() - if yyct2704 == codecSelferValueTypeMap1234 { - yyl2704 := r.ReadMapStart() - if yyl2704 == 0 { + yyct2709 := r.ContainerType() + if yyct2709 == codecSelferValueTypeMap1234 { + yyl2709 := r.ReadMapStart() + if yyl2709 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2704, d) + x.codecDecodeSelfFromMap(yyl2709, d) } - } else if yyct2704 == codecSelferValueTypeArray1234 { - yyl2704 := r.ReadArrayStart() - if yyl2704 == 0 { + } else if yyct2709 == codecSelferValueTypeArray1234 { + yyl2709 := r.ReadArrayStart() + if yyl2709 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2704, d) + x.codecDecodeSelfFromArray(yyl2709, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33941,12 +33989,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2705Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2705Slc - var yyhl2705 bool = l >= 0 - for yyj2705 := 0; ; yyj2705++ { - if yyhl2705 { - if yyj2705 >= l { + var yys2710Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2710Slc + var yyhl2710 bool = l >= 0 + for yyj2710 := 0; ; yyj2710++ { + if yyhl2710 { + if yyj2710 >= l { break } } else { @@ -33955,10 +34003,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2705Slc = r.DecodeBytes(yys2705Slc, true, true) - yys2705 := string(yys2705Slc) + yys2710Slc = r.DecodeBytes(yys2710Slc, true, true) + yys2710 := string(yys2710Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2705 { + switch yys2710 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34002,9 +34050,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2705) - } // end switch yys2705 - } // end for yyj2705 + z.DecStructFieldNotFound(-1, yys2710) + } // end switch yys2710 + } // end for yyj2710 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34012,16 +34060,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2713 int - var yyb2713 bool - var yyhl2713 bool = l >= 0 - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + var yyj2718 int + var yyb2718 bool + var yyhl2718 bool = l >= 0 + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34031,13 +34079,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34047,13 +34095,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34063,13 +34111,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34079,13 +34127,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34095,13 +34143,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34111,13 +34159,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34128,17 +34176,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj2713++ - if yyhl2713 { - yyb2713 = yyj2713 > l + yyj2718++ + if yyhl2718 { + yyb2718 = yyj2718 > l } else { - yyb2713 = r.CheckBreak() + yyb2718 = r.CheckBreak() } - if yyb2713 { + if yyb2718 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2713-1, "") + z.DecStructFieldNotFound(yyj2718-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34150,36 +34198,36 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2721 := z.EncBinary() - _ = yym2721 + yym2726 := z.EncBinary() + _ = yym2726 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2722 := !z.EncBinary() - yy2arr2722 := z.EncBasicHandle().StructToArray - var yyq2722 [8]bool - _, _, _ = yysep2722, yyq2722, yy2arr2722 - const yyr2722 bool = false - yyq2722[0] = x.Kind != "" - yyq2722[1] = x.APIVersion != "" - var yynn2722 int - if yyr2722 || yy2arr2722 { + yysep2727 := !z.EncBinary() + yy2arr2727 := z.EncBasicHandle().StructToArray + var yyq2727 [8]bool + _, _, _ = yysep2727, yyq2727, yy2arr2727 + const yyr2727 bool = false + yyq2727[0] = x.Kind != "" + yyq2727[1] = x.APIVersion != "" + var yynn2727 int + if yyr2727 || yy2arr2727 { r.EncodeArrayStart(8) } else { - yynn2722 = 6 - for _, b := range yyq2722 { + yynn2727 = 6 + for _, b := range yyq2727 { if b { - yynn2722++ + yynn2727++ } } - r.EncodeMapStart(yynn2722) - yynn2722 = 0 + r.EncodeMapStart(yynn2727) + yynn2727 = 0 } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2722[0] { - yym2724 := z.EncBinary() - _ = yym2724 + if yyq2727[0] { + yym2729 := z.EncBinary() + _ = yym2729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34188,23 +34236,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2722[0] { + if yyq2727[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2725 := z.EncBinary() - _ = yym2725 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2722[1] { - yym2727 := z.EncBinary() - _ = yym2727 + if yyq2727[1] { + yym2732 := z.EncBinary() + _ = yym2732 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34213,22 +34261,22 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2722[1] { + if yyq2727[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2728 := z.EncBinary() - _ = yym2728 + yym2733 := z.EncBinary() + _ = yym2733 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2730 := z.EncBinary() - _ = yym2730 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -34237,17 +34285,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2731 := z.EncBinary() - _ = yym2731 + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { r.EncodeBool(bool(x.Stdin)) } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2733 := z.EncBinary() - _ = yym2733 + yym2738 := z.EncBinary() + _ = yym2738 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -34256,17 +34304,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2734 := z.EncBinary() - _ = yym2734 + yym2739 := z.EncBinary() + _ = yym2739 if false { } else { r.EncodeBool(bool(x.Stdout)) } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2736 := z.EncBinary() - _ = yym2736 + yym2741 := z.EncBinary() + _ = yym2741 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -34275,17 +34323,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2737 := z.EncBinary() - _ = yym2737 + yym2742 := z.EncBinary() + _ = yym2742 if false { } else { r.EncodeBool(bool(x.Stderr)) } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2739 := z.EncBinary() - _ = yym2739 + yym2744 := z.EncBinary() + _ = yym2744 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -34294,17 +34342,17 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("TTY")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2740 := z.EncBinary() - _ = yym2740 + yym2745 := z.EncBinary() + _ = yym2745 if false { } else { r.EncodeBool(bool(x.TTY)) } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2742 := z.EncBinary() - _ = yym2742 + yym2747 := z.EncBinary() + _ = yym2747 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -34313,20 +34361,20 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2743 := z.EncBinary() - _ = yym2743 + yym2748 := z.EncBinary() + _ = yym2748 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym2745 := z.EncBinary() - _ = yym2745 + yym2750 := z.EncBinary() + _ = yym2750 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -34339,15 +34387,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym2746 := z.EncBinary() - _ = yym2746 + yym2751 := z.EncBinary() + _ = yym2751 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr2722 || yy2arr2722 { + if yyr2727 || yy2arr2727 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34360,25 +34408,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2747 := z.DecBinary() - _ = yym2747 + yym2752 := z.DecBinary() + _ = yym2752 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2748 := r.ContainerType() - if yyct2748 == codecSelferValueTypeMap1234 { - yyl2748 := r.ReadMapStart() - if yyl2748 == 0 { + yyct2753 := r.ContainerType() + if yyct2753 == codecSelferValueTypeMap1234 { + yyl2753 := r.ReadMapStart() + if yyl2753 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2748, d) + x.codecDecodeSelfFromMap(yyl2753, d) } - } else if yyct2748 == codecSelferValueTypeArray1234 { - yyl2748 := r.ReadArrayStart() - if yyl2748 == 0 { + } else if yyct2753 == codecSelferValueTypeArray1234 { + yyl2753 := r.ReadArrayStart() + if yyl2753 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2748, d) + x.codecDecodeSelfFromArray(yyl2753, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34390,12 +34438,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2749Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2749Slc - var yyhl2749 bool = l >= 0 - for yyj2749 := 0; ; yyj2749++ { - if yyhl2749 { - if yyj2749 >= l { + var yys2754Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2754Slc + var yyhl2754 bool = l >= 0 + for yyj2754 := 0; ; yyj2754++ { + if yyhl2754 { + if yyj2754 >= l { break } } else { @@ -34404,10 +34452,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2749Slc = r.DecodeBytes(yys2749Slc, true, true) - yys2749 := string(yys2749Slc) + yys2754Slc = r.DecodeBytes(yys2754Slc, true, true) + yys2754 := string(yys2754Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2749 { + switch yys2754 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34454,18 +34502,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2757 := &x.Command - yym2758 := z.DecBinary() - _ = yym2758 + yyv2762 := &x.Command + yym2763 := z.DecBinary() + _ = yym2763 if false { } else { - z.F.DecSliceStringX(yyv2757, false, d) + z.F.DecSliceStringX(yyv2762, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2749) - } // end switch yys2749 - } // end for yyj2749 + z.DecStructFieldNotFound(-1, yys2754) + } // end switch yys2754 + } // end for yyj2754 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34473,16 +34521,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2759 int - var yyb2759 bool - var yyhl2759 bool = l >= 0 - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + var yyj2764 int + var yyb2764 bool + var yyhl2764 bool = l >= 0 + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34492,13 +34540,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34508,13 +34556,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34524,13 +34572,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34540,13 +34588,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34556,13 +34604,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34572,13 +34620,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34588,13 +34636,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34602,26 +34650,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2767 := &x.Command - yym2768 := z.DecBinary() - _ = yym2768 + yyv2772 := &x.Command + yym2773 := z.DecBinary() + _ = yym2773 if false { } else { - z.F.DecSliceStringX(yyv2767, false, d) + z.F.DecSliceStringX(yyv2772, false, d) } } for { - yyj2759++ - if yyhl2759 { - yyb2759 = yyj2759 > l + yyj2764++ + if yyhl2764 { + yyb2764 = yyj2764 > l } else { - yyb2759 = r.CheckBreak() + yyb2764 = r.CheckBreak() } - if yyb2759 { + if yyb2764 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2759-1, "") + z.DecStructFieldNotFound(yyj2764-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34633,36 +34681,36 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2769 := z.EncBinary() - _ = yym2769 + yym2774 := z.EncBinary() + _ = yym2774 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2770 := !z.EncBinary() - yy2arr2770 := z.EncBasicHandle().StructToArray - var yyq2770 [3]bool - _, _, _ = yysep2770, yyq2770, yy2arr2770 - const yyr2770 bool = false - yyq2770[0] = x.Kind != "" - yyq2770[1] = x.APIVersion != "" - var yynn2770 int - if yyr2770 || yy2arr2770 { + yysep2775 := !z.EncBinary() + yy2arr2775 := z.EncBasicHandle().StructToArray + var yyq2775 [3]bool + _, _, _ = yysep2775, yyq2775, yy2arr2775 + const yyr2775 bool = false + yyq2775[0] = x.Kind != "" + yyq2775[1] = x.APIVersion != "" + var yynn2775 int + if yyr2775 || yy2arr2775 { r.EncodeArrayStart(3) } else { - yynn2770 = 1 - for _, b := range yyq2770 { + yynn2775 = 1 + for _, b := range yyq2775 { if b { - yynn2770++ + yynn2775++ } } - r.EncodeMapStart(yynn2770) - yynn2770 = 0 + r.EncodeMapStart(yynn2775) + yynn2775 = 0 } - if yyr2770 || yy2arr2770 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2770[0] { - yym2772 := z.EncBinary() - _ = yym2772 + if yyq2775[0] { + yym2777 := z.EncBinary() + _ = yym2777 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34671,23 +34719,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2770[0] { + if yyq2775[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2773 := z.EncBinary() - _ = yym2773 + yym2778 := z.EncBinary() + _ = yym2778 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2770 || yy2arr2770 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2770[1] { - yym2775 := z.EncBinary() - _ = yym2775 + if yyq2775[1] { + yym2780 := z.EncBinary() + _ = yym2780 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34696,22 +34744,22 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2770[1] { + if yyq2775[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2776 := z.EncBinary() - _ = yym2776 + yym2781 := z.EncBinary() + _ = yym2781 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2770 || yy2arr2770 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2778 := z.EncBinary() - _ = yym2778 + yym2783 := z.EncBinary() + _ = yym2783 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -34720,14 +34768,14 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2779 := z.EncBinary() - _ = yym2779 + yym2784 := z.EncBinary() + _ = yym2784 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr2770 || yy2arr2770 { + if yyr2775 || yy2arr2775 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34740,25 +34788,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2780 := z.DecBinary() - _ = yym2780 + yym2785 := z.DecBinary() + _ = yym2785 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2781 := r.ContainerType() - if yyct2781 == codecSelferValueTypeMap1234 { - yyl2781 := r.ReadMapStart() - if yyl2781 == 0 { + yyct2786 := r.ContainerType() + if yyct2786 == codecSelferValueTypeMap1234 { + yyl2786 := r.ReadMapStart() + if yyl2786 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2781, d) + x.codecDecodeSelfFromMap(yyl2786, d) } - } else if yyct2781 == codecSelferValueTypeArray1234 { - yyl2781 := r.ReadArrayStart() - if yyl2781 == 0 { + } else if yyct2786 == codecSelferValueTypeArray1234 { + yyl2786 := r.ReadArrayStart() + if yyl2786 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2781, d) + x.codecDecodeSelfFromArray(yyl2786, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34770,12 +34818,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2782Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2782Slc - var yyhl2782 bool = l >= 0 - for yyj2782 := 0; ; yyj2782++ { - if yyhl2782 { - if yyj2782 >= l { + var yys2787Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2787Slc + var yyhl2787 bool = l >= 0 + for yyj2787 := 0; ; yyj2787++ { + if yyhl2787 { + if yyj2787 >= l { break } } else { @@ -34784,10 +34832,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2782Slc = r.DecodeBytes(yys2782Slc, true, true) - yys2782 := string(yys2782Slc) + yys2787Slc = r.DecodeBytes(yys2787Slc, true, true) + yys2787 := string(yys2787Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2782 { + switch yys2787 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34807,9 +34855,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2782) - } // end switch yys2782 - } // end for yyj2782 + z.DecStructFieldNotFound(-1, yys2787) + } // end switch yys2787 + } // end for yyj2787 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34817,16 +34865,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2786 int - var yyb2786 bool - var yyhl2786 bool = l >= 0 - yyj2786++ - if yyhl2786 { - yyb2786 = yyj2786 > l + var yyj2791 int + var yyb2791 bool + var yyhl2791 bool = l >= 0 + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2786 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2786 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34836,13 +34884,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2786++ - if yyhl2786 { - yyb2786 = yyj2786 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2786 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2786 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34852,13 +34900,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2786++ - if yyhl2786 { - yyb2786 = yyj2786 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2786 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2786 { + if yyb2791 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34869,17 +34917,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj2786++ - if yyhl2786 { - yyb2786 = yyj2786 > l + yyj2791++ + if yyhl2791 { + yyb2791 = yyj2791 > l } else { - yyb2786 = r.CheckBreak() + yyb2791 = r.CheckBreak() } - if yyb2786 { + if yyb2791 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2786-1, "") + z.DecStructFieldNotFound(yyj2791-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34891,41 +34939,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2790 := z.EncBinary() - _ = yym2790 + yym2795 := z.EncBinary() + _ = yym2795 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2791 := !z.EncBinary() - yy2arr2791 := z.EncBasicHandle().StructToArray - var yyq2791 [7]bool - _, _, _ = yysep2791, yyq2791, yy2arr2791 - const yyr2791 bool = false - yyq2791[0] = x.Kind != "" - yyq2791[1] = x.Namespace != "" - yyq2791[2] = x.Name != "" - yyq2791[3] = x.UID != "" - yyq2791[4] = x.APIVersion != "" - yyq2791[5] = x.ResourceVersion != "" - yyq2791[6] = x.FieldPath != "" - var yynn2791 int - if yyr2791 || yy2arr2791 { + yysep2796 := !z.EncBinary() + yy2arr2796 := z.EncBasicHandle().StructToArray + var yyq2796 [7]bool + _, _, _ = yysep2796, yyq2796, yy2arr2796 + const yyr2796 bool = false + yyq2796[0] = x.Kind != "" + yyq2796[1] = x.Namespace != "" + yyq2796[2] = x.Name != "" + yyq2796[3] = x.UID != "" + yyq2796[4] = x.APIVersion != "" + yyq2796[5] = x.ResourceVersion != "" + yyq2796[6] = x.FieldPath != "" + var yynn2796 int + if yyr2796 || yy2arr2796 { r.EncodeArrayStart(7) } else { - yynn2791 = 0 - for _, b := range yyq2791 { + yynn2796 = 0 + for _, b := range yyq2796 { if b { - yynn2791++ + yynn2796++ } } - r.EncodeMapStart(yynn2791) - yynn2791 = 0 + r.EncodeMapStart(yynn2796) + yynn2796 = 0 } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[0] { - yym2793 := z.EncBinary() - _ = yym2793 + if yyq2796[0] { + yym2798 := z.EncBinary() + _ = yym2798 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34934,23 +34982,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[0] { + if yyq2796[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2794 := z.EncBinary() - _ = yym2794 + yym2799 := z.EncBinary() + _ = yym2799 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[1] { - yym2796 := z.EncBinary() - _ = yym2796 + if yyq2796[1] { + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -34959,23 +35007,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[1] { + if yyq2796[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2797 := z.EncBinary() - _ = yym2797 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[2] { - yym2799 := z.EncBinary() - _ = yym2799 + if yyq2796[2] { + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34984,23 +35032,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[2] { + if yyq2796[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2800 := z.EncBinary() - _ = yym2800 + yym2805 := z.EncBinary() + _ = yym2805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[3] { - yym2802 := z.EncBinary() - _ = yym2802 + if yyq2796[3] { + yym2807 := z.EncBinary() + _ = yym2807 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -35010,12 +35058,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[3] { + if yyq2796[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2803 := z.EncBinary() - _ = yym2803 + yym2808 := z.EncBinary() + _ = yym2808 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -35023,11 +35071,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[4] { - yym2805 := z.EncBinary() - _ = yym2805 + if yyq2796[4] { + yym2810 := z.EncBinary() + _ = yym2810 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35036,23 +35084,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[4] { + if yyq2796[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2806 := z.EncBinary() - _ = yym2806 + yym2811 := z.EncBinary() + _ = yym2811 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[5] { - yym2808 := z.EncBinary() - _ = yym2808 + if yyq2796[5] { + yym2813 := z.EncBinary() + _ = yym2813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -35061,23 +35109,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[5] { + if yyq2796[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2809 := z.EncBinary() - _ = yym2809 + yym2814 := z.EncBinary() + _ = yym2814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2791[6] { - yym2811 := z.EncBinary() - _ = yym2811 + if yyq2796[6] { + yym2816 := z.EncBinary() + _ = yym2816 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -35086,19 +35134,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2791[6] { + if yyq2796[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2812 := z.EncBinary() - _ = yym2812 + yym2817 := z.EncBinary() + _ = yym2817 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr2791 || yy2arr2791 { + if yyr2796 || yy2arr2796 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35111,25 +35159,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2813 := z.DecBinary() - _ = yym2813 + yym2818 := z.DecBinary() + _ = yym2818 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2814 := r.ContainerType() - if yyct2814 == codecSelferValueTypeMap1234 { - yyl2814 := r.ReadMapStart() - if yyl2814 == 0 { + yyct2819 := r.ContainerType() + if yyct2819 == codecSelferValueTypeMap1234 { + yyl2819 := r.ReadMapStart() + if yyl2819 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2814, d) + x.codecDecodeSelfFromMap(yyl2819, d) } - } else if yyct2814 == codecSelferValueTypeArray1234 { - yyl2814 := r.ReadArrayStart() - if yyl2814 == 0 { + } else if yyct2819 == codecSelferValueTypeArray1234 { + yyl2819 := r.ReadArrayStart() + if yyl2819 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2814, d) + x.codecDecodeSelfFromArray(yyl2819, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35141,12 +35189,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2815Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2815Slc - var yyhl2815 bool = l >= 0 - for yyj2815 := 0; ; yyj2815++ { - if yyhl2815 { - if yyj2815 >= 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 { @@ -35155,10 +35203,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2815Slc = r.DecodeBytes(yys2815Slc, true, true) - yys2815 := string(yys2815Slc) + yys2820Slc = r.DecodeBytes(yys2820Slc, true, true) + yys2820 := string(yys2820Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2815 { + switch yys2820 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35202,9 +35250,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2815) - } // end switch yys2815 - } // end for yyj2815 + z.DecStructFieldNotFound(-1, yys2820) + } // end switch yys2820 + } // end for yyj2820 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35212,16 +35260,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2823 int - var yyb2823 bool - var yyhl2823 bool = l >= 0 - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + var yyj2828 int + var yyb2828 bool + var yyhl2828 bool = l >= 0 + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35231,13 +35279,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35247,13 +35295,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35263,13 +35311,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35279,13 +35327,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35295,13 +35343,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35311,13 +35359,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35328,17 +35376,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj2823++ - if yyhl2823 { - yyb2823 = yyj2823 > l + yyj2828++ + if yyhl2828 { + yyb2828 = yyj2828 > l } else { - yyb2823 = r.CheckBreak() + yyb2828 = r.CheckBreak() } - if yyb2823 { + if yyb2828 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2823-1, "") + z.DecStructFieldNotFound(yyj2828-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35350,33 +35398,33 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2831 := z.EncBinary() - _ = yym2831 + yym2836 := z.EncBinary() + _ = yym2836 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2832 := !z.EncBinary() - yy2arr2832 := z.EncBasicHandle().StructToArray - var yyq2832 [1]bool - _, _, _ = yysep2832, yyq2832, yy2arr2832 - const yyr2832 bool = false - var yynn2832 int - if yyr2832 || yy2arr2832 { + yysep2837 := !z.EncBinary() + yy2arr2837 := z.EncBasicHandle().StructToArray + var yyq2837 [1]bool + _, _, _ = yysep2837, yyq2837, yy2arr2837 + const yyr2837 bool = false + var yynn2837 int + if yyr2837 || yy2arr2837 { r.EncodeArrayStart(1) } else { - yynn2832 = 1 - for _, b := range yyq2832 { + yynn2837 = 1 + for _, b := range yyq2837 { if b { - yynn2832++ + yynn2837++ } } - r.EncodeMapStart(yynn2832) - yynn2832 = 0 + r.EncodeMapStart(yynn2837) + yynn2837 = 0 } - if yyr2832 || yy2arr2832 { + if yyr2837 || yy2arr2837 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2834 := z.EncBinary() - _ = yym2834 + yym2839 := z.EncBinary() + _ = yym2839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35385,14 +35433,14 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2835 := z.EncBinary() - _ = yym2835 + yym2840 := z.EncBinary() + _ = yym2840 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr2832 || yy2arr2832 { + if yyr2837 || yy2arr2837 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35405,25 +35453,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2836 := z.DecBinary() - _ = yym2836 + yym2841 := z.DecBinary() + _ = yym2841 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2837 := r.ContainerType() - if yyct2837 == codecSelferValueTypeMap1234 { - yyl2837 := r.ReadMapStart() - if yyl2837 == 0 { + yyct2842 := r.ContainerType() + if yyct2842 == codecSelferValueTypeMap1234 { + yyl2842 := r.ReadMapStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2837, d) + x.codecDecodeSelfFromMap(yyl2842, d) } - } else if yyct2837 == codecSelferValueTypeArray1234 { - yyl2837 := r.ReadArrayStart() - if yyl2837 == 0 { + } else if yyct2842 == codecSelferValueTypeArray1234 { + yyl2842 := r.ReadArrayStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2837, d) + x.codecDecodeSelfFromArray(yyl2842, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35435,12 +35483,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2838Slc - var yyhl2838 bool = l >= 0 - for yyj2838 := 0; ; yyj2838++ { - if yyhl2838 { - if yyj2838 >= l { + var yys2843Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2843Slc + var yyhl2843 bool = l >= 0 + for yyj2843 := 0; ; yyj2843++ { + if yyhl2843 { + if yyj2843 >= l { break } } else { @@ -35449,10 +35497,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2838Slc = r.DecodeBytes(yys2838Slc, true, true) - yys2838 := string(yys2838Slc) + yys2843Slc = r.DecodeBytes(yys2843Slc, true, true) + yys2843 := string(yys2843Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2838 { + switch yys2843 { case "Name": if r.TryDecodeAsNil() { x.Name = "" @@ -35460,9 +35508,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2838) - } // end switch yys2838 - } // end for yyj2838 + z.DecStructFieldNotFound(-1, yys2843) + } // end switch yys2843 + } // end for yyj2843 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35470,16 +35518,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2840 int - var yyb2840 bool - var yyhl2840 bool = l >= 0 - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + var yyj2845 int + var yyb2845 bool + var yyhl2845 bool = l >= 0 + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l } else { - yyb2840 = r.CheckBreak() + yyb2845 = r.CheckBreak() } - if yyb2840 { + if yyb2845 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35490,17 +35538,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj2840++ - if yyhl2840 { - yyb2840 = yyj2840 > l + yyj2845++ + if yyhl2845 { + yyb2845 = yyj2845 > l } else { - yyb2840 = r.CheckBreak() + yyb2845 = r.CheckBreak() } - if yyb2840 { + if yyb2845 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2840-1, "") + z.DecStructFieldNotFound(yyj2845-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35512,37 +35560,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2842 := z.EncBinary() - _ = yym2842 + yym2847 := z.EncBinary() + _ = yym2847 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2843 := !z.EncBinary() - yy2arr2843 := z.EncBasicHandle().StructToArray - var yyq2843 [3]bool - _, _, _ = yysep2843, yyq2843, yy2arr2843 - const yyr2843 bool = false - yyq2843[0] = x.Kind != "" - yyq2843[1] = x.APIVersion != "" - yyq2843[2] = true - var yynn2843 int - if yyr2843 || yy2arr2843 { + yysep2848 := !z.EncBinary() + yy2arr2848 := z.EncBasicHandle().StructToArray + var yyq2848 [3]bool + _, _, _ = yysep2848, yyq2848, yy2arr2848 + const yyr2848 bool = false + yyq2848[0] = x.Kind != "" + yyq2848[1] = x.APIVersion != "" + yyq2848[2] = true + var yynn2848 int + if yyr2848 || yy2arr2848 { r.EncodeArrayStart(3) } else { - yynn2843 = 0 - for _, b := range yyq2843 { + yynn2848 = 0 + for _, b := range yyq2848 { if b { - yynn2843++ + yynn2848++ } } - r.EncodeMapStart(yynn2843) - yynn2843 = 0 + r.EncodeMapStart(yynn2848) + yynn2848 = 0 } - if yyr2843 || yy2arr2843 { + if yyr2848 || yy2arr2848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[0] { - yym2845 := z.EncBinary() - _ = yym2845 + if yyq2848[0] { + yym2850 := z.EncBinary() + _ = yym2850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35551,23 +35599,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2843[0] { + if yyq2848[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2846 := z.EncBinary() - _ = yym2846 + yym2851 := z.EncBinary() + _ = yym2851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2843 || yy2arr2843 { + if yyr2848 || yy2arr2848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[1] { - yym2848 := z.EncBinary() - _ = yym2848 + if yyq2848[1] { + yym2853 := z.EncBinary() + _ = yym2853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35576,36 +35624,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2843[1] { + if yyq2848[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2849 := z.EncBinary() - _ = yym2849 + yym2854 := z.EncBinary() + _ = yym2854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2843 || yy2arr2843 { + if yyr2848 || yy2arr2848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2843[2] { - yy2851 := &x.Reference - yy2851.CodecEncodeSelf(e) + if yyq2848[2] { + yy2856 := &x.Reference + yy2856.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2843[2] { + if yyq2848[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2852 := &x.Reference - yy2852.CodecEncodeSelf(e) + yy2857 := &x.Reference + yy2857.CodecEncodeSelf(e) } } - if yyr2843 || yy2arr2843 { + if yyr2848 || yy2arr2848 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35618,25 +35666,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2853 := z.DecBinary() - _ = yym2853 + yym2858 := z.DecBinary() + _ = yym2858 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2854 := r.ContainerType() - if yyct2854 == codecSelferValueTypeMap1234 { - yyl2854 := r.ReadMapStart() - if yyl2854 == 0 { + yyct2859 := r.ContainerType() + if yyct2859 == codecSelferValueTypeMap1234 { + yyl2859 := r.ReadMapStart() + if yyl2859 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2854, d) + x.codecDecodeSelfFromMap(yyl2859, d) } - } else if yyct2854 == codecSelferValueTypeArray1234 { - yyl2854 := r.ReadArrayStart() - if yyl2854 == 0 { + } else if yyct2859 == codecSelferValueTypeArray1234 { + yyl2859 := r.ReadArrayStart() + if yyl2859 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2854, d) + x.codecDecodeSelfFromArray(yyl2859, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35648,12 +35696,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2855Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2855Slc - var yyhl2855 bool = l >= 0 - for yyj2855 := 0; ; yyj2855++ { - if yyhl2855 { - if yyj2855 >= l { + var yys2860Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2860Slc + var yyhl2860 bool = l >= 0 + for yyj2860 := 0; ; yyj2860++ { + if yyhl2860 { + if yyj2860 >= l { break } } else { @@ -35662,10 +35710,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2855Slc = r.DecodeBytes(yys2855Slc, true, true) - yys2855 := string(yys2855Slc) + yys2860Slc = r.DecodeBytes(yys2860Slc, true, true) + yys2860 := string(yys2860Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2855 { + switch yys2860 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35682,13 +35730,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv2858 := &x.Reference - yyv2858.CodecDecodeSelf(d) + yyv2863 := &x.Reference + yyv2863.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2855) - } // end switch yys2855 - } // end for yyj2855 + z.DecStructFieldNotFound(-1, yys2860) + } // end switch yys2860 + } // end for yyj2860 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35696,16 +35744,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2859 int - var yyb2859 bool - var yyhl2859 bool = l >= 0 - yyj2859++ - if yyhl2859 { - yyb2859 = yyj2859 > l + var yyj2864 int + var yyb2864 bool + var yyhl2864 bool = l >= 0 + yyj2864++ + if yyhl2864 { + yyb2864 = yyj2864 > l } else { - yyb2859 = r.CheckBreak() + yyb2864 = r.CheckBreak() } - if yyb2859 { + if yyb2864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35715,13 +35763,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj2859++ - if yyhl2859 { - yyb2859 = yyj2859 > l + yyj2864++ + if yyhl2864 { + yyb2864 = yyj2864 > l } else { - yyb2859 = r.CheckBreak() + yyb2864 = r.CheckBreak() } - if yyb2859 { + if yyb2864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35731,13 +35779,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj2859++ - if yyhl2859 { - yyb2859 = yyj2859 > l + yyj2864++ + if yyhl2864 { + yyb2864 = yyj2864 > l } else { - yyb2859 = r.CheckBreak() + yyb2864 = r.CheckBreak() } - if yyb2859 { + if yyb2864 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35745,21 +35793,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv2862 := &x.Reference - yyv2862.CodecDecodeSelf(d) + yyv2867 := &x.Reference + yyv2867.CodecDecodeSelf(d) } for { - yyj2859++ - if yyhl2859 { - yyb2859 = yyj2859 > l + yyj2864++ + if yyhl2864 { + yyb2864 = yyj2864 > l } else { - yyb2859 = r.CheckBreak() + yyb2864 = r.CheckBreak() } - if yyb2859 { + if yyb2864 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2859-1, "") + z.DecStructFieldNotFound(yyj2864-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35771,36 +35819,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2863 := z.EncBinary() - _ = yym2863 + yym2868 := z.EncBinary() + _ = yym2868 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2864 := !z.EncBinary() - yy2arr2864 := z.EncBasicHandle().StructToArray - var yyq2864 [2]bool - _, _, _ = yysep2864, yyq2864, yy2arr2864 - const yyr2864 bool = false - yyq2864[0] = x.Component != "" - yyq2864[1] = x.Host != "" - var yynn2864 int - if yyr2864 || yy2arr2864 { + yysep2869 := !z.EncBinary() + yy2arr2869 := z.EncBasicHandle().StructToArray + var yyq2869 [2]bool + _, _, _ = yysep2869, yyq2869, yy2arr2869 + const yyr2869 bool = false + yyq2869[0] = x.Component != "" + yyq2869[1] = x.Host != "" + var yynn2869 int + if yyr2869 || yy2arr2869 { r.EncodeArrayStart(2) } else { - yynn2864 = 0 - for _, b := range yyq2864 { + yynn2869 = 0 + for _, b := range yyq2869 { if b { - yynn2864++ + yynn2869++ } } - r.EncodeMapStart(yynn2864) - yynn2864 = 0 + r.EncodeMapStart(yynn2869) + yynn2869 = 0 } - if yyr2864 || yy2arr2864 { + if yyr2869 || yy2arr2869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2864[0] { - yym2866 := z.EncBinary() - _ = yym2866 + if yyq2869[0] { + yym2871 := z.EncBinary() + _ = yym2871 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -35809,23 +35857,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2864[0] { + if yyq2869[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2867 := z.EncBinary() - _ = yym2867 + yym2872 := z.EncBinary() + _ = yym2872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr2864 || yy2arr2864 { + if yyr2869 || yy2arr2869 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2864[1] { - yym2869 := z.EncBinary() - _ = yym2869 + if yyq2869[1] { + yym2874 := z.EncBinary() + _ = yym2874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -35834,19 +35882,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2864[1] { + if yyq2869[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2870 := z.EncBinary() - _ = yym2870 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr2864 || yy2arr2864 { + if yyr2869 || yy2arr2869 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35859,25 +35907,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2871 := z.DecBinary() - _ = yym2871 + yym2876 := z.DecBinary() + _ = yym2876 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2872 := r.ContainerType() - if yyct2872 == codecSelferValueTypeMap1234 { - yyl2872 := r.ReadMapStart() - if yyl2872 == 0 { + yyct2877 := r.ContainerType() + if yyct2877 == codecSelferValueTypeMap1234 { + yyl2877 := r.ReadMapStart() + if yyl2877 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2872, d) + x.codecDecodeSelfFromMap(yyl2877, d) } - } else if yyct2872 == codecSelferValueTypeArray1234 { - yyl2872 := r.ReadArrayStart() - if yyl2872 == 0 { + } else if yyct2877 == codecSelferValueTypeArray1234 { + yyl2877 := r.ReadArrayStart() + if yyl2877 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2872, d) + x.codecDecodeSelfFromArray(yyl2877, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35889,12 +35937,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2873Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2873Slc - var yyhl2873 bool = l >= 0 - for yyj2873 := 0; ; yyj2873++ { - if yyhl2873 { - if yyj2873 >= l { + var yys2878Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2878Slc + var yyhl2878 bool = l >= 0 + for yyj2878 := 0; ; yyj2878++ { + if yyhl2878 { + if yyj2878 >= l { break } } else { @@ -35903,10 +35951,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2873Slc = r.DecodeBytes(yys2873Slc, true, true) - yys2873 := string(yys2873Slc) + yys2878Slc = r.DecodeBytes(yys2878Slc, true, true) + yys2878 := string(yys2878Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2873 { + switch yys2878 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -35920,9 +35968,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2873) - } // end switch yys2873 - } // end for yyj2873 + z.DecStructFieldNotFound(-1, yys2878) + } // end switch yys2878 + } // end for yyj2878 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35930,16 +35978,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2876 int - var yyb2876 bool - var yyhl2876 bool = l >= 0 - yyj2876++ - if yyhl2876 { - yyb2876 = yyj2876 > l + var yyj2881 int + var yyb2881 bool + var yyhl2881 bool = l >= 0 + yyj2881++ + if yyhl2881 { + yyb2881 = yyj2881 > l } else { - yyb2876 = r.CheckBreak() + yyb2881 = r.CheckBreak() } - if yyb2876 { + if yyb2881 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35949,13 +35997,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj2876++ - if yyhl2876 { - yyb2876 = yyj2876 > l + yyj2881++ + if yyhl2881 { + yyb2881 = yyj2881 > l } else { - yyb2876 = r.CheckBreak() + yyb2881 = r.CheckBreak() } - if yyb2876 { + if yyb2881 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35966,17 +36014,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj2876++ - if yyhl2876 { - yyb2876 = yyj2876 > l + yyj2881++ + if yyhl2881 { + yyb2881 = yyj2881 > l } else { - yyb2876 = r.CheckBreak() + yyb2881 = r.CheckBreak() } - if yyb2876 { + if yyb2881 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2876-1, "") + z.DecStructFieldNotFound(yyj2881-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35988,45 +36036,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2879 := z.EncBinary() - _ = yym2879 + yym2884 := z.EncBinary() + _ = yym2884 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2880 := !z.EncBinary() - yy2arr2880 := z.EncBasicHandle().StructToArray - var yyq2880 [11]bool - _, _, _ = yysep2880, yyq2880, yy2arr2880 - const yyr2880 bool = false - yyq2880[0] = x.Kind != "" - yyq2880[1] = x.APIVersion != "" - yyq2880[2] = true - yyq2880[3] = true - yyq2880[4] = x.Reason != "" - yyq2880[5] = x.Message != "" - yyq2880[6] = true - yyq2880[7] = true - yyq2880[8] = true - yyq2880[9] = x.Count != 0 - yyq2880[10] = x.Type != "" - var yynn2880 int - if yyr2880 || yy2arr2880 { + yysep2885 := !z.EncBinary() + yy2arr2885 := z.EncBasicHandle().StructToArray + var yyq2885 [11]bool + _, _, _ = yysep2885, yyq2885, yy2arr2885 + const yyr2885 bool = false + yyq2885[0] = x.Kind != "" + yyq2885[1] = x.APIVersion != "" + yyq2885[2] = true + yyq2885[3] = true + yyq2885[4] = x.Reason != "" + yyq2885[5] = x.Message != "" + yyq2885[6] = true + yyq2885[7] = true + yyq2885[8] = true + yyq2885[9] = x.Count != 0 + yyq2885[10] = x.Type != "" + var yynn2885 int + if yyr2885 || yy2arr2885 { r.EncodeArrayStart(11) } else { - yynn2880 = 0 - for _, b := range yyq2880 { + yynn2885 = 0 + for _, b := range yyq2885 { if b { - yynn2880++ + yynn2885++ } } - r.EncodeMapStart(yynn2880) - yynn2880 = 0 + r.EncodeMapStart(yynn2885) + yynn2885 = 0 } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[0] { - yym2882 := z.EncBinary() - _ = yym2882 + if yyq2885[0] { + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36035,23 +36083,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2880[0] { + if yyq2885[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2883 := z.EncBinary() - _ = yym2883 + yym2888 := z.EncBinary() + _ = yym2888 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[1] { - yym2885 := z.EncBinary() - _ = yym2885 + if yyq2885[1] { + yym2890 := z.EncBinary() + _ = yym2890 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36060,57 +36108,57 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2880[1] { + if yyq2885[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2886 := z.EncBinary() - _ = yym2886 + yym2891 := z.EncBinary() + _ = yym2891 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[2] { - yy2888 := &x.ObjectMeta - yy2888.CodecEncodeSelf(e) + if yyq2885[2] { + yy2893 := &x.ObjectMeta + yy2893.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2880[2] { + if yyq2885[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2889 := &x.ObjectMeta - yy2889.CodecEncodeSelf(e) + yy2894 := &x.ObjectMeta + yy2894.CodecEncodeSelf(e) } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[3] { - yy2891 := &x.InvolvedObject - yy2891.CodecEncodeSelf(e) + if yyq2885[3] { + yy2896 := &x.InvolvedObject + yy2896.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2880[3] { + if yyq2885[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2892 := &x.InvolvedObject - yy2892.CodecEncodeSelf(e) + yy2897 := &x.InvolvedObject + yy2897.CodecEncodeSelf(e) } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[4] { - yym2894 := z.EncBinary() - _ = yym2894 + if yyq2885[4] { + yym2899 := z.EncBinary() + _ = yym2899 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -36119,23 +36167,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2880[4] { + if yyq2885[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2895 := z.EncBinary() - _ = yym2895 + yym2900 := z.EncBinary() + _ = yym2900 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[5] { - yym2897 := z.EncBinary() - _ = yym2897 + if yyq2885[5] { + yym2902 := z.EncBinary() + _ = yym2902 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -36144,114 +36192,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2880[5] { + if yyq2885[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2898 := z.EncBinary() - _ = yym2898 + yym2903 := z.EncBinary() + _ = yym2903 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[6] { - yy2900 := &x.Source - yy2900.CodecEncodeSelf(e) + if yyq2885[6] { + yy2905 := &x.Source + yy2905.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2880[6] { + if yyq2885[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2901 := &x.Source - yy2901.CodecEncodeSelf(e) + yy2906 := &x.Source + yy2906.CodecEncodeSelf(e) } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[7] { - yy2903 := &x.FirstTimestamp - yym2904 := z.EncBinary() - _ = yym2904 + if yyq2885[7] { + yy2908 := &x.FirstTimestamp + yym2909 := z.EncBinary() + _ = yym2909 if false { - } else if z.HasExtensions() && z.EncExt(yy2903) { - } else if yym2904 { - z.EncBinaryMarshal(yy2903) - } else if !yym2904 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2903) + } else if z.HasExtensions() && z.EncExt(yy2908) { + } else if yym2909 { + z.EncBinaryMarshal(yy2908) + } else if !yym2909 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2908) } else { - z.EncFallback(yy2903) + z.EncFallback(yy2908) } } else { r.EncodeNil() } } else { - if yyq2880[7] { + if yyq2885[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2905 := &x.FirstTimestamp - yym2906 := z.EncBinary() - _ = yym2906 + yy2910 := &x.FirstTimestamp + yym2911 := z.EncBinary() + _ = yym2911 if false { - } else if z.HasExtensions() && z.EncExt(yy2905) { - } else if yym2906 { - z.EncBinaryMarshal(yy2905) - } else if !yym2906 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2905) + } else if z.HasExtensions() && z.EncExt(yy2910) { + } else if yym2911 { + z.EncBinaryMarshal(yy2910) + } else if !yym2911 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2910) } else { - z.EncFallback(yy2905) + z.EncFallback(yy2910) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[8] { - yy2908 := &x.LastTimestamp - yym2909 := z.EncBinary() - _ = yym2909 + if yyq2885[8] { + yy2913 := &x.LastTimestamp + yym2914 := z.EncBinary() + _ = yym2914 if false { - } else if z.HasExtensions() && z.EncExt(yy2908) { - } else if yym2909 { - z.EncBinaryMarshal(yy2908) - } else if !yym2909 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2908) + } else if z.HasExtensions() && z.EncExt(yy2913) { + } else if yym2914 { + z.EncBinaryMarshal(yy2913) + } else if !yym2914 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2913) } else { - z.EncFallback(yy2908) + z.EncFallback(yy2913) } } else { r.EncodeNil() } } else { - if yyq2880[8] { + if yyq2885[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2910 := &x.LastTimestamp - yym2911 := z.EncBinary() - _ = yym2911 + yy2915 := &x.LastTimestamp + yym2916 := z.EncBinary() + _ = yym2916 if false { - } else if z.HasExtensions() && z.EncExt(yy2910) { - } else if yym2911 { - z.EncBinaryMarshal(yy2910) - } else if !yym2911 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2910) + } else if z.HasExtensions() && z.EncExt(yy2915) { + } else if yym2916 { + z.EncBinaryMarshal(yy2915) + } else if !yym2916 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2915) } else { - z.EncFallback(yy2910) + z.EncFallback(yy2915) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[9] { - yym2913 := z.EncBinary() - _ = yym2913 + if yyq2885[9] { + yym2918 := z.EncBinary() + _ = yym2918 if false { } else { r.EncodeInt(int64(x.Count)) @@ -36260,23 +36308,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2880[9] { + if yyq2885[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2914 := z.EncBinary() - _ = yym2914 + yym2919 := z.EncBinary() + _ = yym2919 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2880[10] { - yym2916 := z.EncBinary() - _ = yym2916 + if yyq2885[10] { + yym2921 := z.EncBinary() + _ = yym2921 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -36285,19 +36333,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2880[10] { + if yyq2885[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2917 := z.EncBinary() - _ = yym2917 + yym2922 := z.EncBinary() + _ = yym2922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr2880 || yy2arr2880 { + if yyr2885 || yy2arr2885 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36310,25 +36358,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2918 := z.DecBinary() - _ = yym2918 + yym2923 := z.DecBinary() + _ = yym2923 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2919 := r.ContainerType() - if yyct2919 == codecSelferValueTypeMap1234 { - yyl2919 := r.ReadMapStart() - if yyl2919 == 0 { + yyct2924 := r.ContainerType() + if yyct2924 == codecSelferValueTypeMap1234 { + yyl2924 := r.ReadMapStart() + if yyl2924 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2919, d) + x.codecDecodeSelfFromMap(yyl2924, d) } - } else if yyct2919 == codecSelferValueTypeArray1234 { - yyl2919 := r.ReadArrayStart() - if yyl2919 == 0 { + } else if yyct2924 == codecSelferValueTypeArray1234 { + yyl2924 := r.ReadArrayStart() + if yyl2924 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2919, d) + x.codecDecodeSelfFromArray(yyl2924, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36340,12 +36388,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2920Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2920Slc - var yyhl2920 bool = l >= 0 - for yyj2920 := 0; ; yyj2920++ { - if yyhl2920 { - if yyj2920 >= l { + var yys2925Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2925Slc + var yyhl2925 bool = l >= 0 + for yyj2925 := 0; ; yyj2925++ { + if yyhl2925 { + if yyj2925 >= l { break } } else { @@ -36354,10 +36402,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2920Slc = r.DecodeBytes(yys2920Slc, true, true) - yys2920 := string(yys2920Slc) + yys2925Slc = r.DecodeBytes(yys2925Slc, true, true) + yys2925 := string(yys2925Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2920 { + switch yys2925 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36374,15 +36422,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2923 := &x.ObjectMeta - yyv2923.CodecDecodeSelf(d) + yyv2928 := &x.ObjectMeta + yyv2928.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv2924 := &x.InvolvedObject - yyv2924.CodecDecodeSelf(d) + yyv2929 := &x.InvolvedObject + yyv2929.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -36400,41 +36448,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv2927 := &x.Source - yyv2927.CodecDecodeSelf(d) + yyv2932 := &x.Source + yyv2932.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv2928 := &x.FirstTimestamp - yym2929 := z.DecBinary() - _ = yym2929 + yyv2933 := &x.FirstTimestamp + yym2934 := z.DecBinary() + _ = yym2934 if false { - } else if z.HasExtensions() && z.DecExt(yyv2928) { - } else if yym2929 { - z.DecBinaryUnmarshal(yyv2928) - } else if !yym2929 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2928) + } else if z.HasExtensions() && z.DecExt(yyv2933) { + } else if yym2934 { + z.DecBinaryUnmarshal(yyv2933) + } else if !yym2934 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2933) } else { - z.DecFallback(yyv2928, false) + z.DecFallback(yyv2933, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv2930 := &x.LastTimestamp - yym2931 := z.DecBinary() - _ = yym2931 + yyv2935 := &x.LastTimestamp + yym2936 := z.DecBinary() + _ = yym2936 if false { - } else if z.HasExtensions() && z.DecExt(yyv2930) { - } else if yym2931 { - z.DecBinaryUnmarshal(yyv2930) - } else if !yym2931 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2930) + } else if z.HasExtensions() && z.DecExt(yyv2935) { + } else if yym2936 { + z.DecBinaryUnmarshal(yyv2935) + } else if !yym2936 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2935) } else { - z.DecFallback(yyv2930, false) + z.DecFallback(yyv2935, false) } } case "count": @@ -36450,9 +36498,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2920) - } // end switch yys2920 - } // end for yyj2920 + z.DecStructFieldNotFound(-1, yys2925) + } // end switch yys2925 + } // end for yyj2925 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36460,16 +36508,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2934 int - var yyb2934 bool - var yyhl2934 bool = l >= 0 - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + var yyj2939 int + var yyb2939 bool + var yyhl2939 bool = l >= 0 + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36479,13 +36527,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36495,13 +36543,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36509,16 +36557,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2937 := &x.ObjectMeta - yyv2937.CodecDecodeSelf(d) + yyv2942 := &x.ObjectMeta + yyv2942.CodecDecodeSelf(d) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36526,16 +36574,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv2938 := &x.InvolvedObject - yyv2938.CodecDecodeSelf(d) + yyv2943 := &x.InvolvedObject + yyv2943.CodecDecodeSelf(d) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36545,13 +36593,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36561,13 +36609,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36575,16 +36623,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv2941 := &x.Source - yyv2941.CodecDecodeSelf(d) + yyv2946 := &x.Source + yyv2946.CodecDecodeSelf(d) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36592,26 +36640,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv2942 := &x.FirstTimestamp - yym2943 := z.DecBinary() - _ = yym2943 + yyv2947 := &x.FirstTimestamp + yym2948 := z.DecBinary() + _ = yym2948 if false { - } else if z.HasExtensions() && z.DecExt(yyv2942) { - } else if yym2943 { - z.DecBinaryUnmarshal(yyv2942) - } else if !yym2943 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2942) + } else if z.HasExtensions() && z.DecExt(yyv2947) { + } else if yym2948 { + z.DecBinaryUnmarshal(yyv2947) + } else if !yym2948 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2947) } else { - z.DecFallback(yyv2942, false) + z.DecFallback(yyv2947, false) } } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36619,26 +36667,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv2944 := &x.LastTimestamp - yym2945 := z.DecBinary() - _ = yym2945 + yyv2949 := &x.LastTimestamp + yym2950 := z.DecBinary() + _ = yym2950 if false { - } else if z.HasExtensions() && z.DecExt(yyv2944) { - } else if yym2945 { - z.DecBinaryUnmarshal(yyv2944) - } else if !yym2945 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2944) + } else if z.HasExtensions() && z.DecExt(yyv2949) { + } else if yym2950 { + z.DecBinaryUnmarshal(yyv2949) + } else if !yym2950 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2949) } else { - z.DecFallback(yyv2944, false) + z.DecFallback(yyv2949, false) } } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36648,13 +36696,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int(r.DecodeInt(codecSelferBitsize1234)) } - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36665,17 +36713,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj2934++ - if yyhl2934 { - yyb2934 = yyj2934 > l + yyj2939++ + if yyhl2939 { + yyb2939 = yyj2939 > l } else { - yyb2934 = r.CheckBreak() + yyb2939 = r.CheckBreak() } - if yyb2934 { + if yyb2939 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2934-1, "") + z.DecStructFieldNotFound(yyj2939-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36687,37 +36735,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2948 := z.EncBinary() - _ = yym2948 + yym2953 := z.EncBinary() + _ = yym2953 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2949 := !z.EncBinary() - yy2arr2949 := z.EncBasicHandle().StructToArray - var yyq2949 [4]bool - _, _, _ = yysep2949, yyq2949, yy2arr2949 - const yyr2949 bool = false - yyq2949[0] = x.Kind != "" - yyq2949[1] = x.APIVersion != "" - yyq2949[2] = true - var yynn2949 int - if yyr2949 || yy2arr2949 { + yysep2954 := !z.EncBinary() + yy2arr2954 := z.EncBasicHandle().StructToArray + var yyq2954 [4]bool + _, _, _ = yysep2954, yyq2954, yy2arr2954 + const yyr2954 bool = false + yyq2954[0] = x.Kind != "" + yyq2954[1] = x.APIVersion != "" + yyq2954[2] = true + var yynn2954 int + if yyr2954 || yy2arr2954 { r.EncodeArrayStart(4) } else { - yynn2949 = 1 - for _, b := range yyq2949 { + yynn2954 = 1 + for _, b := range yyq2954 { if b { - yynn2949++ + yynn2954++ } } - r.EncodeMapStart(yynn2949) - yynn2949 = 0 + r.EncodeMapStart(yynn2954) + yynn2954 = 0 } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2949[0] { - yym2951 := z.EncBinary() - _ = yym2951 + if yyq2954[0] { + yym2956 := z.EncBinary() + _ = yym2956 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36726,23 +36774,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2949[0] { + if yyq2954[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2952 := z.EncBinary() - _ = yym2952 + yym2957 := z.EncBinary() + _ = yym2957 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2949[1] { - yym2954 := z.EncBinary() - _ = yym2954 + if yyq2954[1] { + yym2959 := z.EncBinary() + _ = yym2959 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36751,54 +36799,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2949[1] { + if yyq2954[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2955 := z.EncBinary() - _ = yym2955 + yym2960 := z.EncBinary() + _ = yym2960 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2949[2] { - yy2957 := &x.ListMeta - yym2958 := z.EncBinary() - _ = yym2958 + if yyq2954[2] { + yy2962 := &x.ListMeta + yym2963 := z.EncBinary() + _ = yym2963 if false { - } else if z.HasExtensions() && z.EncExt(yy2957) { + } else if z.HasExtensions() && z.EncExt(yy2962) { } else { - z.EncFallback(yy2957) + z.EncFallback(yy2962) } } else { r.EncodeNil() } } else { - if yyq2949[2] { + if yyq2954[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2959 := &x.ListMeta - yym2960 := z.EncBinary() - _ = yym2960 + yy2964 := &x.ListMeta + yym2965 := z.EncBinary() + _ = yym2965 if false { - } else if z.HasExtensions() && z.EncExt(yy2959) { + } else if z.HasExtensions() && z.EncExt(yy2964) { } else { - z.EncFallback(yy2959) + z.EncFallback(yy2964) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2962 := z.EncBinary() - _ = yym2962 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -36811,15 +36859,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2963 := z.EncBinary() - _ = yym2963 + yym2968 := z.EncBinary() + _ = yym2968 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr2949 || yy2arr2949 { + if yyr2954 || yy2arr2954 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36832,25 +36880,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2964 := z.DecBinary() - _ = yym2964 + yym2969 := z.DecBinary() + _ = yym2969 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2965 := r.ContainerType() - if yyct2965 == codecSelferValueTypeMap1234 { - yyl2965 := r.ReadMapStart() - if yyl2965 == 0 { + yyct2970 := r.ContainerType() + if yyct2970 == codecSelferValueTypeMap1234 { + yyl2970 := r.ReadMapStart() + if yyl2970 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2965, d) + x.codecDecodeSelfFromMap(yyl2970, d) } - } else if yyct2965 == codecSelferValueTypeArray1234 { - yyl2965 := r.ReadArrayStart() - if yyl2965 == 0 { + } else if yyct2970 == codecSelferValueTypeArray1234 { + yyl2970 := r.ReadArrayStart() + if yyl2970 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2965, d) + x.codecDecodeSelfFromArray(yyl2970, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36862,12 +36910,12 @@ func (x *EventList) 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 yys2971Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2971Slc + var yyhl2971 bool = l >= 0 + for yyj2971 := 0; ; yyj2971++ { + if yyhl2971 { + if yyj2971 >= l { break } } else { @@ -36876,10 +36924,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2966Slc = r.DecodeBytes(yys2966Slc, true, true) - yys2966 := string(yys2966Slc) + yys2971Slc = r.DecodeBytes(yys2971Slc, true, true) + yys2971 := string(yys2971Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2966 { + switch yys2971 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36896,31 +36944,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2969 := &x.ListMeta - yym2970 := z.DecBinary() - _ = yym2970 + yyv2974 := &x.ListMeta + yym2975 := z.DecBinary() + _ = yym2975 if false { - } else if z.HasExtensions() && z.DecExt(yyv2969) { + } else if z.HasExtensions() && z.DecExt(yyv2974) { } else { - z.DecFallback(yyv2969, false) + z.DecFallback(yyv2974, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2971 := &x.Items - yym2972 := z.DecBinary() - _ = yym2972 + yyv2976 := &x.Items + yym2977 := z.DecBinary() + _ = yym2977 if false { } else { - h.decSliceEvent((*[]Event)(yyv2971), d) + h.decSliceEvent((*[]Event)(yyv2976), d) } } default: - z.DecStructFieldNotFound(-1, yys2966) - } // end switch yys2966 - } // end for yyj2966 + z.DecStructFieldNotFound(-1, yys2971) + } // end switch yys2971 + } // end for yyj2971 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36928,16 +36976,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2973 int - var yyb2973 bool - var yyhl2973 bool = l >= 0 - yyj2973++ - if yyhl2973 { - yyb2973 = yyj2973 > l + var yyj2978 int + var yyb2978 bool + var yyhl2978 bool = l >= 0 + yyj2978++ + if yyhl2978 { + yyb2978 = yyj2978 > l } else { - yyb2973 = r.CheckBreak() + yyb2978 = r.CheckBreak() } - if yyb2973 { + if yyb2978 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36947,13 +36995,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2973++ - if yyhl2973 { - yyb2973 = yyj2973 > l + yyj2978++ + if yyhl2978 { + yyb2978 = yyj2978 > l } else { - yyb2973 = r.CheckBreak() + yyb2978 = r.CheckBreak() } - if yyb2973 { + if yyb2978 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36963,13 +37011,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2973++ - if yyhl2973 { - yyb2973 = yyj2973 > l + yyj2978++ + if yyhl2978 { + yyb2978 = yyj2978 > l } else { - yyb2973 = r.CheckBreak() + yyb2978 = r.CheckBreak() } - if yyb2973 { + if yyb2978 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36977,22 +37025,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2976 := &x.ListMeta - yym2977 := z.DecBinary() - _ = yym2977 + yyv2981 := &x.ListMeta + yym2982 := z.DecBinary() + _ = yym2982 if false { - } else if z.HasExtensions() && z.DecExt(yyv2976) { + } else if z.HasExtensions() && z.DecExt(yyv2981) { } else { - z.DecFallback(yyv2976, false) + z.DecFallback(yyv2981, false) } } - yyj2973++ - if yyhl2973 { - yyb2973 = yyj2973 > l + yyj2978++ + if yyhl2978 { + yyb2978 = yyj2978 > l } else { - yyb2973 = r.CheckBreak() + yyb2978 = r.CheckBreak() } - if yyb2973 { + if yyb2978 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37000,26 +37048,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2978 := &x.Items - yym2979 := z.DecBinary() - _ = yym2979 + yyv2983 := &x.Items + yym2984 := z.DecBinary() + _ = yym2984 if false { } else { - h.decSliceEvent((*[]Event)(yyv2978), d) + h.decSliceEvent((*[]Event)(yyv2983), d) } } for { - yyj2973++ - if yyhl2973 { - yyb2973 = yyj2973 > l + yyj2978++ + if yyhl2978 { + yyb2978 = yyj2978 > l } else { - yyb2973 = r.CheckBreak() + yyb2978 = r.CheckBreak() } - if yyb2973 { + if yyb2978 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2973-1, "") + z.DecStructFieldNotFound(yyj2978-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37031,37 +37079,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2980 := z.EncBinary() - _ = yym2980 + yym2985 := z.EncBinary() + _ = yym2985 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2981 := !z.EncBinary() - yy2arr2981 := z.EncBasicHandle().StructToArray - var yyq2981 [4]bool - _, _, _ = yysep2981, yyq2981, yy2arr2981 - const yyr2981 bool = false - yyq2981[0] = x.Kind != "" - yyq2981[1] = x.APIVersion != "" - yyq2981[2] = true - var yynn2981 int - if yyr2981 || yy2arr2981 { + yysep2986 := !z.EncBinary() + yy2arr2986 := z.EncBasicHandle().StructToArray + var yyq2986 [4]bool + _, _, _ = yysep2986, yyq2986, yy2arr2986 + const yyr2986 bool = false + yyq2986[0] = x.Kind != "" + yyq2986[1] = x.APIVersion != "" + yyq2986[2] = true + var yynn2986 int + if yyr2986 || yy2arr2986 { r.EncodeArrayStart(4) } else { - yynn2981 = 1 - for _, b := range yyq2981 { + yynn2986 = 1 + for _, b := range yyq2986 { if b { - yynn2981++ + yynn2986++ } } - r.EncodeMapStart(yynn2981) - yynn2981 = 0 + r.EncodeMapStart(yynn2986) + yynn2986 = 0 } - if yyr2981 || yy2arr2981 { + if yyr2986 || yy2arr2986 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2981[0] { - yym2983 := z.EncBinary() - _ = yym2983 + if yyq2986[0] { + yym2988 := z.EncBinary() + _ = yym2988 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37070,23 +37118,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2981[0] { + if yyq2986[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2984 := z.EncBinary() - _ = yym2984 + yym2989 := z.EncBinary() + _ = yym2989 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2981 || yy2arr2981 { + if yyr2986 || yy2arr2986 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2981[1] { - yym2986 := z.EncBinary() - _ = yym2986 + if yyq2986[1] { + yym2991 := z.EncBinary() + _ = yym2991 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37095,54 +37143,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2981[1] { + if yyq2986[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2987 := z.EncBinary() - _ = yym2987 + yym2992 := z.EncBinary() + _ = yym2992 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2981 || yy2arr2981 { + if yyr2986 || yy2arr2986 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2981[2] { - yy2989 := &x.ListMeta - yym2990 := z.EncBinary() - _ = yym2990 + if yyq2986[2] { + yy2994 := &x.ListMeta + yym2995 := z.EncBinary() + _ = yym2995 if false { - } else if z.HasExtensions() && z.EncExt(yy2989) { + } else if z.HasExtensions() && z.EncExt(yy2994) { } else { - z.EncFallback(yy2989) + z.EncFallback(yy2994) } } else { r.EncodeNil() } } else { - if yyq2981[2] { + if yyq2986[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2991 := &x.ListMeta - yym2992 := z.EncBinary() - _ = yym2992 + yy2996 := &x.ListMeta + yym2997 := z.EncBinary() + _ = yym2997 if false { - } else if z.HasExtensions() && z.EncExt(yy2991) { + } else if z.HasExtensions() && z.EncExt(yy2996) { } else { - z.EncFallback(yy2991) + z.EncFallback(yy2996) } } } - if yyr2981 || yy2arr2981 { + if yyr2986 || yy2arr2986 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2994 := z.EncBinary() - _ = yym2994 + yym2999 := z.EncBinary() + _ = yym2999 if false { } else { h.encSliceruntime_Object(([]pkg6_runtime.Object)(x.Items), e) @@ -37155,15 +37203,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2995 := z.EncBinary() - _ = yym2995 + yym3000 := z.EncBinary() + _ = yym3000 if false { } else { h.encSliceruntime_Object(([]pkg6_runtime.Object)(x.Items), e) } } } - if yyr2981 || yy2arr2981 { + if yyr2986 || yy2arr2986 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37176,25 +37224,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2996 := z.DecBinary() - _ = yym2996 + yym3001 := z.DecBinary() + _ = yym3001 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2997 := r.ContainerType() - if yyct2997 == codecSelferValueTypeMap1234 { - yyl2997 := r.ReadMapStart() - if yyl2997 == 0 { + yyct3002 := r.ContainerType() + if yyct3002 == codecSelferValueTypeMap1234 { + yyl3002 := r.ReadMapStart() + if yyl3002 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2997, d) + x.codecDecodeSelfFromMap(yyl3002, d) } - } else if yyct2997 == codecSelferValueTypeArray1234 { - yyl2997 := r.ReadArrayStart() - if yyl2997 == 0 { + } else if yyct3002 == codecSelferValueTypeArray1234 { + yyl3002 := r.ReadArrayStart() + if yyl3002 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2997, d) + x.codecDecodeSelfFromArray(yyl3002, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37206,12 +37254,12 @@ func (x *List) 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 yys3003Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3003Slc + var yyhl3003 bool = l >= 0 + for yyj3003 := 0; ; yyj3003++ { + if yyhl3003 { + if yyj3003 >= l { break } } else { @@ -37220,10 +37268,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2998Slc = r.DecodeBytes(yys2998Slc, true, true) - yys2998 := string(yys2998Slc) + yys3003Slc = r.DecodeBytes(yys3003Slc, true, true) + yys3003 := string(yys3003Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2998 { + switch yys3003 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37240,31 +37288,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3001 := &x.ListMeta - yym3002 := z.DecBinary() - _ = yym3002 + yyv3006 := &x.ListMeta + yym3007 := z.DecBinary() + _ = yym3007 if false { - } else if z.HasExtensions() && z.DecExt(yyv3001) { + } else if z.HasExtensions() && z.DecExt(yyv3006) { } else { - z.DecFallback(yyv3001, false) + z.DecFallback(yyv3006, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3003 := &x.Items - yym3004 := z.DecBinary() - _ = yym3004 + yyv3008 := &x.Items + yym3009 := z.DecBinary() + _ = yym3009 if false { } else { - h.decSliceruntime_Object((*[]pkg6_runtime.Object)(yyv3003), d) + h.decSliceruntime_Object((*[]pkg6_runtime.Object)(yyv3008), d) } } default: - z.DecStructFieldNotFound(-1, yys2998) - } // end switch yys2998 - } // end for yyj2998 + z.DecStructFieldNotFound(-1, yys3003) + } // end switch yys3003 + } // end for yyj3003 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37272,16 +37320,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3005 int - var yyb3005 bool - var yyhl3005 bool = l >= 0 - yyj3005++ - if yyhl3005 { - yyb3005 = yyj3005 > l + var yyj3010 int + var yyb3010 bool + var yyhl3010 bool = l >= 0 + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb3005 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb3005 { + if yyb3010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37291,13 +37339,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3005++ - if yyhl3005 { - yyb3005 = yyj3005 > l + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb3005 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb3005 { + if yyb3010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37307,13 +37355,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3005++ - if yyhl3005 { - yyb3005 = yyj3005 > l + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb3005 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb3005 { + if yyb3010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37321,22 +37369,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3008 := &x.ListMeta - yym3009 := z.DecBinary() - _ = yym3009 + yyv3013 := &x.ListMeta + yym3014 := z.DecBinary() + _ = yym3014 if false { - } else if z.HasExtensions() && z.DecExt(yyv3008) { + } else if z.HasExtensions() && z.DecExt(yyv3013) { } else { - z.DecFallback(yyv3008, false) + z.DecFallback(yyv3013, false) } } - yyj3005++ - if yyhl3005 { - yyb3005 = yyj3005 > l + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb3005 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb3005 { + if yyb3010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37344,26 +37392,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3010 := &x.Items - yym3011 := z.DecBinary() - _ = yym3011 + yyv3015 := &x.Items + yym3016 := z.DecBinary() + _ = yym3016 if false { } else { - h.decSliceruntime_Object((*[]pkg6_runtime.Object)(yyv3010), d) + h.decSliceruntime_Object((*[]pkg6_runtime.Object)(yyv3015), d) } } for { - yyj3005++ - if yyhl3005 { - yyb3005 = yyj3005 > l + yyj3010++ + if yyhl3010 { + yyb3010 = yyj3010 > l } else { - yyb3005 = r.CheckBreak() + yyb3010 = r.CheckBreak() } - if yyb3005 { + if yyb3010 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3005-1, "") + z.DecStructFieldNotFound(yyj3010-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37372,8 +37420,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3012 := z.EncBinary() - _ = yym3012 + yym3017 := z.EncBinary() + _ = yym3017 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37385,8 +37433,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3013 := z.DecBinary() - _ = yym3013 + yym3018 := z.DecBinary() + _ = yym3018 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37401,53 +37449,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3014 := z.EncBinary() - _ = yym3014 + yym3019 := z.EncBinary() + _ = yym3019 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3015 := !z.EncBinary() - yy2arr3015 := z.EncBasicHandle().StructToArray - var yyq3015 [6]bool - _, _, _ = yysep3015, yyq3015, yy2arr3015 - const yyr3015 bool = false - yyq3015[0] = x.Type != "" - yyq3015[1] = len(x.Max) != 0 - yyq3015[2] = len(x.Min) != 0 - yyq3015[3] = len(x.Default) != 0 - yyq3015[4] = len(x.DefaultRequest) != 0 - yyq3015[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3015 int - if yyr3015 || yy2arr3015 { + yysep3020 := !z.EncBinary() + yy2arr3020 := z.EncBasicHandle().StructToArray + var yyq3020 [6]bool + _, _, _ = yysep3020, yyq3020, yy2arr3020 + const yyr3020 bool = false + yyq3020[0] = x.Type != "" + yyq3020[1] = len(x.Max) != 0 + yyq3020[2] = len(x.Min) != 0 + yyq3020[3] = len(x.Default) != 0 + yyq3020[4] = len(x.DefaultRequest) != 0 + yyq3020[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3020 int + if yyr3020 || yy2arr3020 { r.EncodeArrayStart(6) } else { - yynn3015 = 0 - for _, b := range yyq3015 { + yynn3020 = 0 + for _, b := range yyq3020 { if b { - yynn3015++ + yynn3020++ } } - r.EncodeMapStart(yynn3015) - yynn3015 = 0 + r.EncodeMapStart(yynn3020) + yynn3020 = 0 } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[0] { + if yyq3020[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3015[0] { + if yyq3020[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[1] { + if yyq3020[1] { if x.Max == nil { r.EncodeNil() } else { @@ -37457,7 +37505,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3015[1] { + if yyq3020[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37468,9 +37516,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[2] { + if yyq3020[2] { if x.Min == nil { r.EncodeNil() } else { @@ -37480,7 +37528,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3015[2] { + if yyq3020[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37491,9 +37539,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[3] { + if yyq3020[3] { if x.Default == nil { r.EncodeNil() } else { @@ -37503,7 +37551,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3015[3] { + if yyq3020[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37514,9 +37562,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[4] { + if yyq3020[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -37526,7 +37574,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3015[4] { + if yyq3020[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37537,9 +37585,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3015[5] { + if yyq3020[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -37549,7 +37597,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3015[5] { + if yyq3020[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37560,7 +37608,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3015 || yy2arr3015 { + if yyr3020 || yy2arr3020 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37573,25 +37621,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3022 := z.DecBinary() - _ = yym3022 + yym3027 := z.DecBinary() + _ = yym3027 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3023 := r.ContainerType() - if yyct3023 == codecSelferValueTypeMap1234 { - yyl3023 := r.ReadMapStart() - if yyl3023 == 0 { + yyct3028 := r.ContainerType() + if yyct3028 == codecSelferValueTypeMap1234 { + yyl3028 := r.ReadMapStart() + if yyl3028 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3023, d) + x.codecDecodeSelfFromMap(yyl3028, d) } - } else if yyct3023 == codecSelferValueTypeArray1234 { - yyl3023 := r.ReadArrayStart() - if yyl3023 == 0 { + } else if yyct3028 == codecSelferValueTypeArray1234 { + yyl3028 := r.ReadArrayStart() + if yyl3028 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3023, d) + x.codecDecodeSelfFromArray(yyl3028, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37603,12 +37651,12 @@ func (x *LimitRangeItem) 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 yys3029Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3029Slc + var yyhl3029 bool = l >= 0 + for yyj3029 := 0; ; yyj3029++ { + if yyhl3029 { + if yyj3029 >= l { break } } else { @@ -37617,10 +37665,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3024Slc = r.DecodeBytes(yys3024Slc, true, true) - yys3024 := string(yys3024Slc) + yys3029Slc = r.DecodeBytes(yys3029Slc, true, true) + yys3029 := string(yys3029Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3024 { + switch yys3029 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -37631,41 +37679,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3026 := &x.Max - yyv3026.CodecDecodeSelf(d) + yyv3031 := &x.Max + yyv3031.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3027 := &x.Min - yyv3027.CodecDecodeSelf(d) + yyv3032 := &x.Min + yyv3032.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3028 := &x.Default - yyv3028.CodecDecodeSelf(d) + yyv3033 := &x.Default + yyv3033.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3029 := &x.DefaultRequest - yyv3029.CodecDecodeSelf(d) + yyv3034 := &x.DefaultRequest + yyv3034.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3030 := &x.MaxLimitRequestRatio - yyv3030.CodecDecodeSelf(d) + yyv3035 := &x.MaxLimitRequestRatio + yyv3035.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3024) - } // end switch yys3024 - } // end for yyj3024 + z.DecStructFieldNotFound(-1, yys3029) + } // end switch yys3029 + } // end for yyj3029 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37673,16 +37721,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3031 int - var yyb3031 bool - var yyhl3031 bool = l >= 0 - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + var yyj3036 int + var yyb3036 bool + var yyhl3036 bool = l >= 0 + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37692,13 +37740,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37706,16 +37754,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3033 := &x.Max - yyv3033.CodecDecodeSelf(d) + yyv3038 := &x.Max + yyv3038.CodecDecodeSelf(d) } - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37723,16 +37771,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3034 := &x.Min - yyv3034.CodecDecodeSelf(d) + yyv3039 := &x.Min + yyv3039.CodecDecodeSelf(d) } - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37740,16 +37788,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3035 := &x.Default - yyv3035.CodecDecodeSelf(d) + yyv3040 := &x.Default + yyv3040.CodecDecodeSelf(d) } - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37757,16 +37805,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3036 := &x.DefaultRequest - yyv3036.CodecDecodeSelf(d) + yyv3041 := &x.DefaultRequest + yyv3041.CodecDecodeSelf(d) } - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37774,21 +37822,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3037 := &x.MaxLimitRequestRatio - yyv3037.CodecDecodeSelf(d) + yyv3042 := &x.MaxLimitRequestRatio + yyv3042.CodecDecodeSelf(d) } for { - yyj3031++ - if yyhl3031 { - yyb3031 = yyj3031 > l + yyj3036++ + if yyhl3036 { + yyb3036 = yyj3036 > l } else { - yyb3031 = r.CheckBreak() + yyb3036 = r.CheckBreak() } - if yyb3031 { + if yyb3036 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3031-1, "") + z.DecStructFieldNotFound(yyj3036-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37800,36 +37848,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3038 := z.EncBinary() - _ = yym3038 + yym3043 := z.EncBinary() + _ = yym3043 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3039 := !z.EncBinary() - yy2arr3039 := z.EncBasicHandle().StructToArray - var yyq3039 [1]bool - _, _, _ = yysep3039, yyq3039, yy2arr3039 - const yyr3039 bool = false - var yynn3039 int - if yyr3039 || yy2arr3039 { + yysep3044 := !z.EncBinary() + yy2arr3044 := z.EncBasicHandle().StructToArray + var yyq3044 [1]bool + _, _, _ = yysep3044, yyq3044, yy2arr3044 + const yyr3044 bool = false + var yynn3044 int + if yyr3044 || yy2arr3044 { r.EncodeArrayStart(1) } else { - yynn3039 = 1 - for _, b := range yyq3039 { + yynn3044 = 1 + for _, b := range yyq3044 { if b { - yynn3039++ + yynn3044++ } } - r.EncodeMapStart(yynn3039) - yynn3039 = 0 + r.EncodeMapStart(yynn3044) + yynn3044 = 0 } - if yyr3039 || yy2arr3039 { + if yyr3044 || yy2arr3044 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3041 := z.EncBinary() - _ = yym3041 + yym3046 := z.EncBinary() + _ = yym3046 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -37842,15 +37890,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3042 := z.EncBinary() - _ = yym3042 + yym3047 := z.EncBinary() + _ = yym3047 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3039 || yy2arr3039 { + if yyr3044 || yy2arr3044 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37863,25 +37911,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3043 := z.DecBinary() - _ = yym3043 + yym3048 := z.DecBinary() + _ = yym3048 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3044 := r.ContainerType() - if yyct3044 == codecSelferValueTypeMap1234 { - yyl3044 := r.ReadMapStart() - if yyl3044 == 0 { + yyct3049 := r.ContainerType() + if yyct3049 == codecSelferValueTypeMap1234 { + yyl3049 := r.ReadMapStart() + if yyl3049 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3044, d) + x.codecDecodeSelfFromMap(yyl3049, d) } - } else if yyct3044 == codecSelferValueTypeArray1234 { - yyl3044 := r.ReadArrayStart() - if yyl3044 == 0 { + } else if yyct3049 == codecSelferValueTypeArray1234 { + yyl3049 := r.ReadArrayStart() + if yyl3049 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3044, d) + x.codecDecodeSelfFromArray(yyl3049, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37893,12 +37941,12 @@ func (x *LimitRangeSpec) 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 yys3050Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3050Slc + var yyhl3050 bool = l >= 0 + for yyj3050 := 0; ; yyj3050++ { + if yyhl3050 { + if yyj3050 >= l { break } } else { @@ -37907,26 +37955,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3045Slc = r.DecodeBytes(yys3045Slc, true, true) - yys3045 := string(yys3045Slc) + yys3050Slc = r.DecodeBytes(yys3050Slc, true, true) + yys3050 := string(yys3050Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3045 { + switch yys3050 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3046 := &x.Limits - yym3047 := z.DecBinary() - _ = yym3047 + yyv3051 := &x.Limits + yym3052 := z.DecBinary() + _ = yym3052 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3046), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3051), d) } } default: - z.DecStructFieldNotFound(-1, yys3045) - } // end switch yys3045 - } // end for yyj3045 + z.DecStructFieldNotFound(-1, yys3050) + } // end switch yys3050 + } // end for yyj3050 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37934,16 +37982,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3048 int - var yyb3048 bool - var yyhl3048 bool = l >= 0 - yyj3048++ - if yyhl3048 { - yyb3048 = yyj3048 > l + var yyj3053 int + var yyb3053 bool + var yyhl3053 bool = l >= 0 + yyj3053++ + if yyhl3053 { + yyb3053 = yyj3053 > l } else { - yyb3048 = r.CheckBreak() + yyb3053 = r.CheckBreak() } - if yyb3048 { + if yyb3053 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37951,26 +37999,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3049 := &x.Limits - yym3050 := z.DecBinary() - _ = yym3050 + yyv3054 := &x.Limits + yym3055 := z.DecBinary() + _ = yym3055 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3049), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3054), d) } } for { - yyj3048++ - if yyhl3048 { - yyb3048 = yyj3048 > l + yyj3053++ + if yyhl3053 { + yyb3053 = yyj3053 > l } else { - yyb3048 = r.CheckBreak() + yyb3053 = r.CheckBreak() } - if yyb3048 { + if yyb3053 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3048-1, "") + z.DecStructFieldNotFound(yyj3053-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37982,38 +38030,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3051 := z.EncBinary() - _ = yym3051 + yym3056 := z.EncBinary() + _ = yym3056 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3052 := !z.EncBinary() - yy2arr3052 := z.EncBasicHandle().StructToArray - var yyq3052 [4]bool - _, _, _ = yysep3052, yyq3052, yy2arr3052 - const yyr3052 bool = false - yyq3052[0] = x.Kind != "" - yyq3052[1] = x.APIVersion != "" - yyq3052[2] = true - yyq3052[3] = true - var yynn3052 int - if yyr3052 || yy2arr3052 { + yysep3057 := !z.EncBinary() + yy2arr3057 := z.EncBasicHandle().StructToArray + var yyq3057 [4]bool + _, _, _ = yysep3057, yyq3057, yy2arr3057 + const yyr3057 bool = false + yyq3057[0] = x.Kind != "" + yyq3057[1] = x.APIVersion != "" + yyq3057[2] = true + yyq3057[3] = true + var yynn3057 int + if yyr3057 || yy2arr3057 { r.EncodeArrayStart(4) } else { - yynn3052 = 0 - for _, b := range yyq3052 { + yynn3057 = 0 + for _, b := range yyq3057 { if b { - yynn3052++ + yynn3057++ } } - r.EncodeMapStart(yynn3052) - yynn3052 = 0 + r.EncodeMapStart(yynn3057) + yynn3057 = 0 } - if yyr3052 || yy2arr3052 { + if yyr3057 || yy2arr3057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[0] { - yym3054 := z.EncBinary() - _ = yym3054 + if yyq3057[0] { + yym3059 := z.EncBinary() + _ = yym3059 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38022,23 +38070,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[0] { + if yyq3057[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3055 := z.EncBinary() - _ = yym3055 + yym3060 := z.EncBinary() + _ = yym3060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3052 || yy2arr3052 { + if yyr3057 || yy2arr3057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[1] { - yym3057 := z.EncBinary() - _ = yym3057 + if yyq3057[1] { + yym3062 := z.EncBinary() + _ = yym3062 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38047,53 +38095,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3052[1] { + if yyq3057[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3058 := z.EncBinary() - _ = yym3058 + yym3063 := z.EncBinary() + _ = yym3063 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3052 || yy2arr3052 { + if yyr3057 || yy2arr3057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[2] { - yy3060 := &x.ObjectMeta - yy3060.CodecEncodeSelf(e) + if yyq3057[2] { + yy3065 := &x.ObjectMeta + yy3065.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3052[2] { + if yyq3057[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3061 := &x.ObjectMeta - yy3061.CodecEncodeSelf(e) + yy3066 := &x.ObjectMeta + yy3066.CodecEncodeSelf(e) } } - if yyr3052 || yy2arr3052 { + if yyr3057 || yy2arr3057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3052[3] { - yy3063 := &x.Spec - yy3063.CodecEncodeSelf(e) + if yyq3057[3] { + yy3068 := &x.Spec + yy3068.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3052[3] { + if yyq3057[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3064 := &x.Spec - yy3064.CodecEncodeSelf(e) + yy3069 := &x.Spec + yy3069.CodecEncodeSelf(e) } } - if yyr3052 || yy2arr3052 { + if yyr3057 || yy2arr3057 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38106,25 +38154,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3065 := z.DecBinary() - _ = yym3065 + yym3070 := z.DecBinary() + _ = yym3070 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3066 := r.ContainerType() - if yyct3066 == codecSelferValueTypeMap1234 { - yyl3066 := r.ReadMapStart() - if yyl3066 == 0 { + yyct3071 := r.ContainerType() + if yyct3071 == codecSelferValueTypeMap1234 { + yyl3071 := r.ReadMapStart() + if yyl3071 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3066, d) + x.codecDecodeSelfFromMap(yyl3071, d) } - } else if yyct3066 == codecSelferValueTypeArray1234 { - yyl3066 := r.ReadArrayStart() - if yyl3066 == 0 { + } else if yyct3071 == codecSelferValueTypeArray1234 { + yyl3071 := r.ReadArrayStart() + if yyl3071 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3066, d) + x.codecDecodeSelfFromArray(yyl3071, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38136,12 +38184,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3067Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3067Slc - var yyhl3067 bool = l >= 0 - for yyj3067 := 0; ; yyj3067++ { - if yyhl3067 { - if yyj3067 >= l { + var yys3072Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3072Slc + var yyhl3072 bool = l >= 0 + for yyj3072 := 0; ; yyj3072++ { + if yyhl3072 { + if yyj3072 >= l { break } } else { @@ -38150,10 +38198,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3067Slc = r.DecodeBytes(yys3067Slc, true, true) - yys3067 := string(yys3067Slc) + yys3072Slc = r.DecodeBytes(yys3072Slc, true, true) + yys3072 := string(yys3072Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3067 { + switch yys3072 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38170,20 +38218,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3070 := &x.ObjectMeta - yyv3070.CodecDecodeSelf(d) + yyv3075 := &x.ObjectMeta + yyv3075.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3071 := &x.Spec - yyv3071.CodecDecodeSelf(d) + yyv3076 := &x.Spec + yyv3076.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3067) - } // end switch yys3067 - } // end for yyj3067 + z.DecStructFieldNotFound(-1, yys3072) + } // end switch yys3072 + } // end for yyj3072 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38191,16 +38239,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3072 int - var yyb3072 bool - var yyhl3072 bool = l >= 0 - yyj3072++ - if yyhl3072 { - yyb3072 = yyj3072 > l + var yyj3077 int + var yyb3077 bool + var yyhl3077 bool = l >= 0 + yyj3077++ + if yyhl3077 { + yyb3077 = yyj3077 > l } else { - yyb3072 = r.CheckBreak() + yyb3077 = r.CheckBreak() } - if yyb3072 { + if yyb3077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38210,13 +38258,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3072++ - if yyhl3072 { - yyb3072 = yyj3072 > l + yyj3077++ + if yyhl3077 { + yyb3077 = yyj3077 > l } else { - yyb3072 = r.CheckBreak() + yyb3077 = r.CheckBreak() } - if yyb3072 { + if yyb3077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38226,13 +38274,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3072++ - if yyhl3072 { - yyb3072 = yyj3072 > l + yyj3077++ + if yyhl3077 { + yyb3077 = yyj3077 > l } else { - yyb3072 = r.CheckBreak() + yyb3077 = r.CheckBreak() } - if yyb3072 { + if yyb3077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38240,16 +38288,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3075 := &x.ObjectMeta - yyv3075.CodecDecodeSelf(d) + yyv3080 := &x.ObjectMeta + yyv3080.CodecDecodeSelf(d) } - yyj3072++ - if yyhl3072 { - yyb3072 = yyj3072 > l + yyj3077++ + if yyhl3077 { + yyb3077 = yyj3077 > l } else { - yyb3072 = r.CheckBreak() + yyb3077 = r.CheckBreak() } - if yyb3072 { + if yyb3077 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38257,21 +38305,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3076 := &x.Spec - yyv3076.CodecDecodeSelf(d) + yyv3081 := &x.Spec + yyv3081.CodecDecodeSelf(d) } for { - yyj3072++ - if yyhl3072 { - yyb3072 = yyj3072 > l + yyj3077++ + if yyhl3077 { + yyb3077 = yyj3077 > l } else { - yyb3072 = r.CheckBreak() + yyb3077 = r.CheckBreak() } - if yyb3072 { + if yyb3077 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3072-1, "") + z.DecStructFieldNotFound(yyj3077-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38283,37 +38331,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3077 := z.EncBinary() - _ = yym3077 + yym3082 := z.EncBinary() + _ = yym3082 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3078 := !z.EncBinary() - yy2arr3078 := z.EncBasicHandle().StructToArray - var yyq3078 [4]bool - _, _, _ = yysep3078, yyq3078, yy2arr3078 - const yyr3078 bool = false - yyq3078[0] = x.Kind != "" - yyq3078[1] = x.APIVersion != "" - yyq3078[2] = true - var yynn3078 int - if yyr3078 || yy2arr3078 { + yysep3083 := !z.EncBinary() + yy2arr3083 := z.EncBasicHandle().StructToArray + var yyq3083 [4]bool + _, _, _ = yysep3083, yyq3083, yy2arr3083 + const yyr3083 bool = false + yyq3083[0] = x.Kind != "" + yyq3083[1] = x.APIVersion != "" + yyq3083[2] = true + var yynn3083 int + if yyr3083 || yy2arr3083 { r.EncodeArrayStart(4) } else { - yynn3078 = 1 - for _, b := range yyq3078 { + yynn3083 = 1 + for _, b := range yyq3083 { if b { - yynn3078++ + yynn3083++ } } - r.EncodeMapStart(yynn3078) - yynn3078 = 0 + r.EncodeMapStart(yynn3083) + yynn3083 = 0 } - if yyr3078 || yy2arr3078 { + if yyr3083 || yy2arr3083 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[0] { - yym3080 := z.EncBinary() - _ = yym3080 + if yyq3083[0] { + yym3085 := z.EncBinary() + _ = yym3085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38322,23 +38370,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[0] { + if yyq3083[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3081 := z.EncBinary() - _ = yym3081 + yym3086 := z.EncBinary() + _ = yym3086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3078 || yy2arr3078 { + if yyr3083 || yy2arr3083 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[1] { - yym3083 := z.EncBinary() - _ = yym3083 + if yyq3083[1] { + yym3088 := z.EncBinary() + _ = yym3088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38347,54 +38395,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3078[1] { + if yyq3083[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3084 := z.EncBinary() - _ = yym3084 + yym3089 := z.EncBinary() + _ = yym3089 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3078 || yy2arr3078 { + if yyr3083 || yy2arr3083 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3078[2] { - yy3086 := &x.ListMeta - yym3087 := z.EncBinary() - _ = yym3087 + if yyq3083[2] { + yy3091 := &x.ListMeta + yym3092 := z.EncBinary() + _ = yym3092 if false { - } else if z.HasExtensions() && z.EncExt(yy3086) { + } else if z.HasExtensions() && z.EncExt(yy3091) { } else { - z.EncFallback(yy3086) + z.EncFallback(yy3091) } } else { r.EncodeNil() } } else { - if yyq3078[2] { + if yyq3083[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3088 := &x.ListMeta - yym3089 := z.EncBinary() - _ = yym3089 + yy3093 := &x.ListMeta + yym3094 := z.EncBinary() + _ = yym3094 if false { - } else if z.HasExtensions() && z.EncExt(yy3088) { + } else if z.HasExtensions() && z.EncExt(yy3093) { } else { - z.EncFallback(yy3088) + z.EncFallback(yy3093) } } } - if yyr3078 || yy2arr3078 { + if yyr3083 || yy2arr3083 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3091 := z.EncBinary() - _ = yym3091 + yym3096 := z.EncBinary() + _ = yym3096 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -38407,15 +38455,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3092 := z.EncBinary() - _ = yym3092 + yym3097 := z.EncBinary() + _ = yym3097 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3078 || yy2arr3078 { + if yyr3083 || yy2arr3083 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38428,25 +38476,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3093 := z.DecBinary() - _ = yym3093 + yym3098 := z.DecBinary() + _ = yym3098 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3094 := r.ContainerType() - if yyct3094 == codecSelferValueTypeMap1234 { - yyl3094 := r.ReadMapStart() - if yyl3094 == 0 { + yyct3099 := r.ContainerType() + if yyct3099 == codecSelferValueTypeMap1234 { + yyl3099 := r.ReadMapStart() + if yyl3099 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3094, d) + x.codecDecodeSelfFromMap(yyl3099, d) } - } else if yyct3094 == codecSelferValueTypeArray1234 { - yyl3094 := r.ReadArrayStart() - if yyl3094 == 0 { + } else if yyct3099 == codecSelferValueTypeArray1234 { + yyl3099 := r.ReadArrayStart() + if yyl3099 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3094, d) + x.codecDecodeSelfFromArray(yyl3099, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38458,12 +38506,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3095Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3095Slc - var yyhl3095 bool = l >= 0 - for yyj3095 := 0; ; yyj3095++ { - if yyhl3095 { - if yyj3095 >= l { + var yys3100Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3100Slc + var yyhl3100 bool = l >= 0 + for yyj3100 := 0; ; yyj3100++ { + if yyhl3100 { + if yyj3100 >= l { break } } else { @@ -38472,10 +38520,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3095Slc = r.DecodeBytes(yys3095Slc, true, true) - yys3095 := string(yys3095Slc) + yys3100Slc = r.DecodeBytes(yys3100Slc, true, true) + yys3100 := string(yys3100Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3095 { + switch yys3100 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38492,31 +38540,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3098 := &x.ListMeta - yym3099 := z.DecBinary() - _ = yym3099 + yyv3103 := &x.ListMeta + yym3104 := z.DecBinary() + _ = yym3104 if false { - } else if z.HasExtensions() && z.DecExt(yyv3098) { + } else if z.HasExtensions() && z.DecExt(yyv3103) { } else { - z.DecFallback(yyv3098, false) + z.DecFallback(yyv3103, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3100 := &x.Items - yym3101 := z.DecBinary() - _ = yym3101 + yyv3105 := &x.Items + yym3106 := z.DecBinary() + _ = yym3106 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3100), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3105), d) } } default: - z.DecStructFieldNotFound(-1, yys3095) - } // end switch yys3095 - } // end for yyj3095 + z.DecStructFieldNotFound(-1, yys3100) + } // end switch yys3100 + } // end for yyj3100 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38524,16 +38572,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3102 int - var yyb3102 bool - var yyhl3102 bool = l >= 0 - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + var yyj3107 int + var yyb3107 bool + var yyhl3107 bool = l >= 0 + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38543,13 +38591,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38559,13 +38607,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38573,22 +38621,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3105 := &x.ListMeta - yym3106 := z.DecBinary() - _ = yym3106 + yyv3110 := &x.ListMeta + yym3111 := z.DecBinary() + _ = yym3111 if false { - } else if z.HasExtensions() && z.DecExt(yyv3105) { + } else if z.HasExtensions() && z.DecExt(yyv3110) { } else { - z.DecFallback(yyv3105, false) + z.DecFallback(yyv3110, false) } } - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38596,26 +38644,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3107 := &x.Items - yym3108 := z.DecBinary() - _ = yym3108 + yyv3112 := &x.Items + yym3113 := z.DecBinary() + _ = yym3113 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3107), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3112), d) } } for { - yyj3102++ - if yyhl3102 { - yyb3102 = yyj3102 > l + yyj3107++ + if yyhl3107 { + yyb3107 = yyj3107 > l } else { - yyb3102 = r.CheckBreak() + yyb3107 = r.CheckBreak() } - if yyb3102 { + if yyb3107 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3102-1, "") + z.DecStructFieldNotFound(yyj3107-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38627,33 +38675,33 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3109 := z.EncBinary() - _ = yym3109 + yym3114 := z.EncBinary() + _ = yym3114 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3110 := !z.EncBinary() - yy2arr3110 := z.EncBasicHandle().StructToArray - var yyq3110 [1]bool - _, _, _ = yysep3110, yyq3110, yy2arr3110 - const yyr3110 bool = false - yyq3110[0] = len(x.Hard) != 0 - var yynn3110 int - if yyr3110 || yy2arr3110 { + yysep3115 := !z.EncBinary() + yy2arr3115 := z.EncBasicHandle().StructToArray + var yyq3115 [1]bool + _, _, _ = yysep3115, yyq3115, yy2arr3115 + const yyr3115 bool = false + yyq3115[0] = len(x.Hard) != 0 + var yynn3115 int + if yyr3115 || yy2arr3115 { r.EncodeArrayStart(1) } else { - yynn3110 = 0 - for _, b := range yyq3110 { + yynn3115 = 0 + for _, b := range yyq3115 { if b { - yynn3110++ + yynn3115++ } } - r.EncodeMapStart(yynn3110) - yynn3110 = 0 + r.EncodeMapStart(yynn3115) + yynn3115 = 0 } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3110[0] { + if yyq3115[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -38663,7 +38711,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3110[0] { + if yyq3115[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38674,7 +38722,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3110 || yy2arr3110 { + if yyr3115 || yy2arr3115 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38687,25 +38735,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3112 := z.DecBinary() - _ = yym3112 + yym3117 := z.DecBinary() + _ = yym3117 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3113 := r.ContainerType() - if yyct3113 == codecSelferValueTypeMap1234 { - yyl3113 := r.ReadMapStart() - if yyl3113 == 0 { + yyct3118 := r.ContainerType() + if yyct3118 == codecSelferValueTypeMap1234 { + yyl3118 := r.ReadMapStart() + if yyl3118 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3113, d) + x.codecDecodeSelfFromMap(yyl3118, d) } - } else if yyct3113 == codecSelferValueTypeArray1234 { - yyl3113 := r.ReadArrayStart() - if yyl3113 == 0 { + } else if yyct3118 == codecSelferValueTypeArray1234 { + yyl3118 := r.ReadArrayStart() + if yyl3118 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3113, d) + x.codecDecodeSelfFromArray(yyl3118, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38717,12 +38765,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3114Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3114Slc - var yyhl3114 bool = l >= 0 - for yyj3114 := 0; ; yyj3114++ { - if yyhl3114 { - if yyj3114 >= l { + var yys3119Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3119Slc + var yyhl3119 bool = l >= 0 + for yyj3119 := 0; ; yyj3119++ { + if yyhl3119 { + if yyj3119 >= l { break } } else { @@ -38731,21 +38779,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3114Slc = r.DecodeBytes(yys3114Slc, true, true) - yys3114 := string(yys3114Slc) + yys3119Slc = r.DecodeBytes(yys3119Slc, true, true) + yys3119 := string(yys3119Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3114 { + switch yys3119 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3115 := &x.Hard - yyv3115.CodecDecodeSelf(d) + yyv3120 := &x.Hard + yyv3120.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3114) - } // end switch yys3114 - } // end for yyj3114 + z.DecStructFieldNotFound(-1, yys3119) + } // end switch yys3119 + } // end for yyj3119 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38753,16 +38801,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3116 int - var yyb3116 bool - var yyhl3116 bool = l >= 0 - yyj3116++ - if yyhl3116 { - yyb3116 = yyj3116 > l + var yyj3121 int + var yyb3121 bool + var yyhl3121 bool = l >= 0 + yyj3121++ + if yyhl3121 { + yyb3121 = yyj3121 > l } else { - yyb3116 = r.CheckBreak() + yyb3121 = r.CheckBreak() } - if yyb3116 { + if yyb3121 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38770,21 +38818,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3117 := &x.Hard - yyv3117.CodecDecodeSelf(d) + yyv3122 := &x.Hard + yyv3122.CodecDecodeSelf(d) } for { - yyj3116++ - if yyhl3116 { - yyb3116 = yyj3116 > l + yyj3121++ + if yyhl3121 { + yyb3121 = yyj3121 > l } else { - yyb3116 = r.CheckBreak() + yyb3121 = r.CheckBreak() } - if yyb3116 { + if yyb3121 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3116-1, "") + z.DecStructFieldNotFound(yyj3121-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38796,34 +38844,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3118 := z.EncBinary() - _ = yym3118 + yym3123 := z.EncBinary() + _ = yym3123 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3119 := !z.EncBinary() - yy2arr3119 := z.EncBasicHandle().StructToArray - var yyq3119 [2]bool - _, _, _ = yysep3119, yyq3119, yy2arr3119 - const yyr3119 bool = false - yyq3119[0] = len(x.Hard) != 0 - yyq3119[1] = len(x.Used) != 0 - var yynn3119 int - if yyr3119 || yy2arr3119 { + yysep3124 := !z.EncBinary() + yy2arr3124 := z.EncBasicHandle().StructToArray + var yyq3124 [2]bool + _, _, _ = yysep3124, yyq3124, yy2arr3124 + const yyr3124 bool = false + yyq3124[0] = len(x.Hard) != 0 + yyq3124[1] = len(x.Used) != 0 + var yynn3124 int + if yyr3124 || yy2arr3124 { r.EncodeArrayStart(2) } else { - yynn3119 = 0 - for _, b := range yyq3119 { + yynn3124 = 0 + for _, b := range yyq3124 { if b { - yynn3119++ + yynn3124++ } } - r.EncodeMapStart(yynn3119) - yynn3119 = 0 + r.EncodeMapStart(yynn3124) + yynn3124 = 0 } - if yyr3119 || yy2arr3119 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3119[0] { + if yyq3124[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -38833,7 +38881,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3119[0] { + if yyq3124[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38844,9 +38892,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3119 || yy2arr3119 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3119[1] { + if yyq3124[1] { if x.Used == nil { r.EncodeNil() } else { @@ -38856,7 +38904,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3119[1] { + if yyq3124[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38867,7 +38915,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3119 || yy2arr3119 { + if yyr3124 || yy2arr3124 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38880,25 +38928,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3122 := z.DecBinary() - _ = yym3122 + yym3127 := z.DecBinary() + _ = yym3127 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3123 := r.ContainerType() - if yyct3123 == codecSelferValueTypeMap1234 { - yyl3123 := r.ReadMapStart() - if yyl3123 == 0 { + yyct3128 := r.ContainerType() + if yyct3128 == codecSelferValueTypeMap1234 { + yyl3128 := r.ReadMapStart() + if yyl3128 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3123, d) + x.codecDecodeSelfFromMap(yyl3128, d) } - } else if yyct3123 == codecSelferValueTypeArray1234 { - yyl3123 := r.ReadArrayStart() - if yyl3123 == 0 { + } else if yyct3128 == codecSelferValueTypeArray1234 { + yyl3128 := r.ReadArrayStart() + if yyl3128 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3123, d) + x.codecDecodeSelfFromArray(yyl3128, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38910,12 +38958,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3124Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3124Slc - var yyhl3124 bool = l >= 0 - for yyj3124 := 0; ; yyj3124++ { - if yyhl3124 { - if yyj3124 >= l { + var yys3129Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3129Slc + var yyhl3129 bool = l >= 0 + for yyj3129 := 0; ; yyj3129++ { + if yyhl3129 { + if yyj3129 >= l { break } } else { @@ -38924,28 +38972,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3124Slc = r.DecodeBytes(yys3124Slc, true, true) - yys3124 := string(yys3124Slc) + yys3129Slc = r.DecodeBytes(yys3129Slc, true, true) + yys3129 := string(yys3129Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3124 { + switch yys3129 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3125 := &x.Hard - yyv3125.CodecDecodeSelf(d) + yyv3130 := &x.Hard + yyv3130.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3126 := &x.Used - yyv3126.CodecDecodeSelf(d) + yyv3131 := &x.Used + yyv3131.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3124) - } // end switch yys3124 - } // end for yyj3124 + z.DecStructFieldNotFound(-1, yys3129) + } // end switch yys3129 + } // end for yyj3129 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38953,16 +39001,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3127 int - var yyb3127 bool - var yyhl3127 bool = l >= 0 - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + var yyj3132 int + var yyb3132 bool + var yyhl3132 bool = l >= 0 + yyj3132++ + if yyhl3132 { + yyb3132 = yyj3132 > l } else { - yyb3127 = r.CheckBreak() + yyb3132 = r.CheckBreak() } - if yyb3127 { + if yyb3132 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38970,16 +39018,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3128 := &x.Hard - yyv3128.CodecDecodeSelf(d) + yyv3133 := &x.Hard + yyv3133.CodecDecodeSelf(d) } - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3132++ + if yyhl3132 { + yyb3132 = yyj3132 > l } else { - yyb3127 = r.CheckBreak() + yyb3132 = r.CheckBreak() } - if yyb3127 { + if yyb3132 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38987,21 +39035,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3129 := &x.Used - yyv3129.CodecDecodeSelf(d) + yyv3134 := &x.Used + yyv3134.CodecDecodeSelf(d) } for { - yyj3127++ - if yyhl3127 { - yyb3127 = yyj3127 > l + yyj3132++ + if yyhl3132 { + yyb3132 = yyj3132 > l } else { - yyb3127 = r.CheckBreak() + yyb3132 = r.CheckBreak() } - if yyb3127 { + if yyb3132 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3127-1, "") + z.DecStructFieldNotFound(yyj3132-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39013,39 +39061,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3130 := z.EncBinary() - _ = yym3130 + yym3135 := z.EncBinary() + _ = yym3135 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3131 := !z.EncBinary() - yy2arr3131 := z.EncBasicHandle().StructToArray - var yyq3131 [5]bool - _, _, _ = yysep3131, yyq3131, yy2arr3131 - const yyr3131 bool = false - yyq3131[0] = x.Kind != "" - yyq3131[1] = x.APIVersion != "" - yyq3131[2] = true - yyq3131[3] = true - yyq3131[4] = true - var yynn3131 int - if yyr3131 || yy2arr3131 { + yysep3136 := !z.EncBinary() + yy2arr3136 := z.EncBasicHandle().StructToArray + var yyq3136 [5]bool + _, _, _ = yysep3136, yyq3136, yy2arr3136 + const yyr3136 bool = false + yyq3136[0] = x.Kind != "" + yyq3136[1] = x.APIVersion != "" + yyq3136[2] = true + yyq3136[3] = true + yyq3136[4] = true + var yynn3136 int + if yyr3136 || yy2arr3136 { r.EncodeArrayStart(5) } else { - yynn3131 = 0 - for _, b := range yyq3131 { + yynn3136 = 0 + for _, b := range yyq3136 { if b { - yynn3131++ + yynn3136++ } } - r.EncodeMapStart(yynn3131) - yynn3131 = 0 + r.EncodeMapStart(yynn3136) + yynn3136 = 0 } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3131[0] { - yym3133 := z.EncBinary() - _ = yym3133 + if yyq3136[0] { + yym3138 := z.EncBinary() + _ = yym3138 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39054,23 +39102,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3131[0] { + if yyq3136[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3134 := z.EncBinary() - _ = yym3134 + yym3139 := z.EncBinary() + _ = yym3139 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3131[1] { - yym3136 := z.EncBinary() - _ = yym3136 + if yyq3136[1] { + yym3141 := z.EncBinary() + _ = yym3141 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39079,70 +39127,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3131[1] { + if yyq3136[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3137 := z.EncBinary() - _ = yym3137 + yym3142 := z.EncBinary() + _ = yym3142 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3131[2] { - yy3139 := &x.ObjectMeta - yy3139.CodecEncodeSelf(e) + if yyq3136[2] { + yy3144 := &x.ObjectMeta + yy3144.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3131[2] { + if yyq3136[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3140 := &x.ObjectMeta - yy3140.CodecEncodeSelf(e) + yy3145 := &x.ObjectMeta + yy3145.CodecEncodeSelf(e) } } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3131[3] { - yy3142 := &x.Spec - yy3142.CodecEncodeSelf(e) + if yyq3136[3] { + yy3147 := &x.Spec + yy3147.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3131[3] { + if yyq3136[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3143 := &x.Spec - yy3143.CodecEncodeSelf(e) + yy3148 := &x.Spec + yy3148.CodecEncodeSelf(e) } } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3131[4] { - yy3145 := &x.Status - yy3145.CodecEncodeSelf(e) + if yyq3136[4] { + yy3150 := &x.Status + yy3150.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3131[4] { + if yyq3136[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3146 := &x.Status - yy3146.CodecEncodeSelf(e) + yy3151 := &x.Status + yy3151.CodecEncodeSelf(e) } } - if yyr3131 || yy2arr3131 { + if yyr3136 || yy2arr3136 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39155,25 +39203,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3147 := z.DecBinary() - _ = yym3147 + yym3152 := z.DecBinary() + _ = yym3152 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3148 := r.ContainerType() - if yyct3148 == codecSelferValueTypeMap1234 { - yyl3148 := r.ReadMapStart() - if yyl3148 == 0 { + yyct3153 := r.ContainerType() + if yyct3153 == codecSelferValueTypeMap1234 { + yyl3153 := r.ReadMapStart() + if yyl3153 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3148, d) + x.codecDecodeSelfFromMap(yyl3153, d) } - } else if yyct3148 == codecSelferValueTypeArray1234 { - yyl3148 := r.ReadArrayStart() - if yyl3148 == 0 { + } else if yyct3153 == codecSelferValueTypeArray1234 { + yyl3153 := r.ReadArrayStart() + if yyl3153 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3148, d) + x.codecDecodeSelfFromArray(yyl3153, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39185,12 +39233,12 @@ func (x *ResourceQuota) 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 yys3154Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3154Slc + var yyhl3154 bool = l >= 0 + for yyj3154 := 0; ; yyj3154++ { + if yyhl3154 { + if yyj3154 >= l { break } } else { @@ -39199,10 +39247,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3149Slc = r.DecodeBytes(yys3149Slc, true, true) - yys3149 := string(yys3149Slc) + yys3154Slc = r.DecodeBytes(yys3154Slc, true, true) + yys3154 := string(yys3154Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3149 { + switch yys3154 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39219,27 +39267,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3152 := &x.ObjectMeta - yyv3152.CodecDecodeSelf(d) + yyv3157 := &x.ObjectMeta + yyv3157.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3153 := &x.Spec - yyv3153.CodecDecodeSelf(d) + yyv3158 := &x.Spec + yyv3158.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3154 := &x.Status - yyv3154.CodecDecodeSelf(d) + yyv3159 := &x.Status + yyv3159.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3149) - } // end switch yys3149 - } // end for yyj3149 + z.DecStructFieldNotFound(-1, yys3154) + } // end switch yys3154 + } // end for yyj3154 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39247,16 +39295,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3155 int - var yyb3155 bool - var yyhl3155 bool = l >= 0 - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + var yyj3160 int + var yyb3160 bool + var yyhl3160 bool = l >= 0 + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39266,13 +39314,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39282,13 +39330,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39296,16 +39344,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3158 := &x.ObjectMeta - yyv3158.CodecDecodeSelf(d) + yyv3163 := &x.ObjectMeta + yyv3163.CodecDecodeSelf(d) } - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39313,16 +39361,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3159 := &x.Spec - yyv3159.CodecDecodeSelf(d) + yyv3164 := &x.Spec + yyv3164.CodecDecodeSelf(d) } - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39330,21 +39378,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3160 := &x.Status - yyv3160.CodecDecodeSelf(d) + yyv3165 := &x.Status + yyv3165.CodecDecodeSelf(d) } for { - yyj3155++ - if yyhl3155 { - yyb3155 = yyj3155 > l + yyj3160++ + if yyhl3160 { + yyb3160 = yyj3160 > l } else { - yyb3155 = r.CheckBreak() + yyb3160 = r.CheckBreak() } - if yyb3155 { + if yyb3160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3155-1, "") + z.DecStructFieldNotFound(yyj3160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39356,37 +39404,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3161 := z.EncBinary() - _ = yym3161 + yym3166 := z.EncBinary() + _ = yym3166 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3162 := !z.EncBinary() - yy2arr3162 := z.EncBasicHandle().StructToArray - var yyq3162 [4]bool - _, _, _ = yysep3162, yyq3162, yy2arr3162 - const yyr3162 bool = false - yyq3162[0] = x.Kind != "" - yyq3162[1] = x.APIVersion != "" - yyq3162[2] = true - var yynn3162 int - if yyr3162 || yy2arr3162 { + yysep3167 := !z.EncBinary() + yy2arr3167 := z.EncBasicHandle().StructToArray + var yyq3167 [4]bool + _, _, _ = yysep3167, yyq3167, yy2arr3167 + const yyr3167 bool = false + yyq3167[0] = x.Kind != "" + yyq3167[1] = x.APIVersion != "" + yyq3167[2] = true + var yynn3167 int + if yyr3167 || yy2arr3167 { r.EncodeArrayStart(4) } else { - yynn3162 = 1 - for _, b := range yyq3162 { + yynn3167 = 1 + for _, b := range yyq3167 { if b { - yynn3162++ + yynn3167++ } } - r.EncodeMapStart(yynn3162) - yynn3162 = 0 + r.EncodeMapStart(yynn3167) + yynn3167 = 0 } - if yyr3162 || yy2arr3162 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3162[0] { - yym3164 := z.EncBinary() - _ = yym3164 + if yyq3167[0] { + yym3169 := z.EncBinary() + _ = yym3169 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39395,23 +39443,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3162[0] { + if yyq3167[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3165 := z.EncBinary() - _ = yym3165 + yym3170 := z.EncBinary() + _ = yym3170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3162 || yy2arr3162 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3162[1] { - yym3167 := z.EncBinary() - _ = yym3167 + if yyq3167[1] { + yym3172 := z.EncBinary() + _ = yym3172 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39420,54 +39468,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3162[1] { + if yyq3167[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3168 := z.EncBinary() - _ = yym3168 + yym3173 := z.EncBinary() + _ = yym3173 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3162 || yy2arr3162 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3162[2] { - yy3170 := &x.ListMeta - yym3171 := z.EncBinary() - _ = yym3171 + if yyq3167[2] { + yy3175 := &x.ListMeta + yym3176 := z.EncBinary() + _ = yym3176 if false { - } else if z.HasExtensions() && z.EncExt(yy3170) { + } else if z.HasExtensions() && z.EncExt(yy3175) { } else { - z.EncFallback(yy3170) + z.EncFallback(yy3175) } } else { r.EncodeNil() } } else { - if yyq3162[2] { + if yyq3167[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3172 := &x.ListMeta - yym3173 := z.EncBinary() - _ = yym3173 + yy3177 := &x.ListMeta + yym3178 := z.EncBinary() + _ = yym3178 if false { - } else if z.HasExtensions() && z.EncExt(yy3172) { + } else if z.HasExtensions() && z.EncExt(yy3177) { } else { - z.EncFallback(yy3172) + z.EncFallback(yy3177) } } } - if yyr3162 || yy2arr3162 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3175 := z.EncBinary() - _ = yym3175 + yym3180 := z.EncBinary() + _ = yym3180 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -39480,15 +39528,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3176 := z.EncBinary() - _ = yym3176 + yym3181 := z.EncBinary() + _ = yym3181 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3162 || yy2arr3162 { + if yyr3167 || yy2arr3167 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39501,25 +39549,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3177 := z.DecBinary() - _ = yym3177 + yym3182 := z.DecBinary() + _ = yym3182 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3178 := r.ContainerType() - if yyct3178 == codecSelferValueTypeMap1234 { - yyl3178 := r.ReadMapStart() - if yyl3178 == 0 { + yyct3183 := r.ContainerType() + if yyct3183 == codecSelferValueTypeMap1234 { + yyl3183 := r.ReadMapStart() + if yyl3183 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3178, d) + x.codecDecodeSelfFromMap(yyl3183, d) } - } else if yyct3178 == codecSelferValueTypeArray1234 { - yyl3178 := r.ReadArrayStart() - if yyl3178 == 0 { + } else if yyct3183 == codecSelferValueTypeArray1234 { + yyl3183 := r.ReadArrayStart() + if yyl3183 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3178, d) + x.codecDecodeSelfFromArray(yyl3183, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39531,12 +39579,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3179Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3179Slc - var yyhl3179 bool = l >= 0 - for yyj3179 := 0; ; yyj3179++ { - if yyhl3179 { - if yyj3179 >= l { + var yys3184Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3184Slc + var yyhl3184 bool = l >= 0 + for yyj3184 := 0; ; yyj3184++ { + if yyhl3184 { + if yyj3184 >= l { break } } else { @@ -39545,10 +39593,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3179Slc = r.DecodeBytes(yys3179Slc, true, true) - yys3179 := string(yys3179Slc) + yys3184Slc = r.DecodeBytes(yys3184Slc, true, true) + yys3184 := string(yys3184Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3179 { + switch yys3184 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39565,31 +39613,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3182 := &x.ListMeta - yym3183 := z.DecBinary() - _ = yym3183 + yyv3187 := &x.ListMeta + yym3188 := z.DecBinary() + _ = yym3188 if false { - } else if z.HasExtensions() && z.DecExt(yyv3182) { + } else if z.HasExtensions() && z.DecExt(yyv3187) { } else { - z.DecFallback(yyv3182, false) + z.DecFallback(yyv3187, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3184 := &x.Items - yym3185 := z.DecBinary() - _ = yym3185 + yyv3189 := &x.Items + yym3190 := z.DecBinary() + _ = yym3190 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3184), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3189), d) } } default: - z.DecStructFieldNotFound(-1, yys3179) - } // end switch yys3179 - } // end for yyj3179 + z.DecStructFieldNotFound(-1, yys3184) + } // end switch yys3184 + } // end for yyj3184 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39597,16 +39645,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3186 int - var yyb3186 bool - var yyhl3186 bool = l >= 0 - yyj3186++ - if yyhl3186 { - yyb3186 = yyj3186 > l + var yyj3191 int + var yyb3191 bool + var yyhl3191 bool = l >= 0 + yyj3191++ + if yyhl3191 { + yyb3191 = yyj3191 > l } else { - yyb3186 = r.CheckBreak() + yyb3191 = r.CheckBreak() } - if yyb3186 { + if yyb3191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39616,13 +39664,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3186++ - if yyhl3186 { - yyb3186 = yyj3186 > l + yyj3191++ + if yyhl3191 { + yyb3191 = yyj3191 > l } else { - yyb3186 = r.CheckBreak() + yyb3191 = r.CheckBreak() } - if yyb3186 { + if yyb3191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39632,13 +39680,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3186++ - if yyhl3186 { - yyb3186 = yyj3186 > l + yyj3191++ + if yyhl3191 { + yyb3191 = yyj3191 > l } else { - yyb3186 = r.CheckBreak() + yyb3191 = r.CheckBreak() } - if yyb3186 { + if yyb3191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39646,22 +39694,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3189 := &x.ListMeta - yym3190 := z.DecBinary() - _ = yym3190 + yyv3194 := &x.ListMeta + yym3195 := z.DecBinary() + _ = yym3195 if false { - } else if z.HasExtensions() && z.DecExt(yyv3189) { + } else if z.HasExtensions() && z.DecExt(yyv3194) { } else { - z.DecFallback(yyv3189, false) + z.DecFallback(yyv3194, false) } } - yyj3186++ - if yyhl3186 { - yyb3186 = yyj3186 > l + yyj3191++ + if yyhl3191 { + yyb3191 = yyj3191 > l } else { - yyb3186 = r.CheckBreak() + yyb3191 = r.CheckBreak() } - if yyb3186 { + if yyb3191 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39669,26 +39717,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3191 := &x.Items - yym3192 := z.DecBinary() - _ = yym3192 + yyv3196 := &x.Items + yym3197 := z.DecBinary() + _ = yym3197 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3191), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3196), d) } } for { - yyj3186++ - if yyhl3186 { - yyb3186 = yyj3186 > l + yyj3191++ + if yyhl3191 { + yyb3191 = yyj3191 > l } else { - yyb3186 = r.CheckBreak() + yyb3191 = r.CheckBreak() } - if yyb3186 { + if yyb3191 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3186-1, "") + z.DecStructFieldNotFound(yyj3191-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39700,39 +39748,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3193 := z.EncBinary() - _ = yym3193 + yym3198 := z.EncBinary() + _ = yym3198 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3194 := !z.EncBinary() - yy2arr3194 := z.EncBasicHandle().StructToArray - var yyq3194 [5]bool - _, _, _ = yysep3194, yyq3194, yy2arr3194 - const yyr3194 bool = false - yyq3194[0] = x.Kind != "" - yyq3194[1] = x.APIVersion != "" - yyq3194[2] = true - yyq3194[3] = len(x.Data) != 0 - yyq3194[4] = x.Type != "" - var yynn3194 int - if yyr3194 || yy2arr3194 { + yysep3199 := !z.EncBinary() + yy2arr3199 := z.EncBasicHandle().StructToArray + var yyq3199 [5]bool + _, _, _ = yysep3199, yyq3199, yy2arr3199 + const yyr3199 bool = false + yyq3199[0] = x.Kind != "" + yyq3199[1] = x.APIVersion != "" + yyq3199[2] = true + yyq3199[3] = len(x.Data) != 0 + yyq3199[4] = x.Type != "" + var yynn3199 int + if yyr3199 || yy2arr3199 { r.EncodeArrayStart(5) } else { - yynn3194 = 0 - for _, b := range yyq3194 { + yynn3199 = 0 + for _, b := range yyq3199 { if b { - yynn3194++ + yynn3199++ } } - r.EncodeMapStart(yynn3194) - yynn3194 = 0 + r.EncodeMapStart(yynn3199) + yynn3199 = 0 } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3194[0] { - yym3196 := z.EncBinary() - _ = yym3196 + if yyq3199[0] { + yym3201 := z.EncBinary() + _ = yym3201 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39741,23 +39789,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3194[0] { + if yyq3199[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3197 := z.EncBinary() - _ = yym3197 + yym3202 := z.EncBinary() + _ = yym3202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3194[1] { - yym3199 := z.EncBinary() - _ = yym3199 + if yyq3199[1] { + yym3204 := z.EncBinary() + _ = yym3204 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39766,43 +39814,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3194[1] { + if yyq3199[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3200 := z.EncBinary() - _ = yym3200 + yym3205 := z.EncBinary() + _ = yym3205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3194[2] { - yy3202 := &x.ObjectMeta - yy3202.CodecEncodeSelf(e) + if yyq3199[2] { + yy3207 := &x.ObjectMeta + yy3207.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3194[2] { + if yyq3199[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3203 := &x.ObjectMeta - yy3203.CodecEncodeSelf(e) + yy3208 := &x.ObjectMeta + yy3208.CodecEncodeSelf(e) } } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3194[3] { + if yyq3199[3] { if x.Data == nil { r.EncodeNil() } else { - yym3205 := z.EncBinary() - _ = yym3205 + yym3210 := z.EncBinary() + _ = yym3210 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -39812,15 +39860,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3194[3] { + if yyq3199[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3206 := z.EncBinary() - _ = yym3206 + yym3211 := z.EncBinary() + _ = yym3211 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -39828,22 +39876,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3194[4] { + if yyq3199[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3194[4] { + if yyq3199[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3194 || yy2arr3194 { + if yyr3199 || yy2arr3199 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39856,25 +39904,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3208 := z.DecBinary() - _ = yym3208 + yym3213 := z.DecBinary() + _ = yym3213 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3209 := r.ContainerType() - if yyct3209 == codecSelferValueTypeMap1234 { - yyl3209 := r.ReadMapStart() - if yyl3209 == 0 { + yyct3214 := r.ContainerType() + if yyct3214 == codecSelferValueTypeMap1234 { + yyl3214 := r.ReadMapStart() + if yyl3214 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3209, d) + x.codecDecodeSelfFromMap(yyl3214, d) } - } else if yyct3209 == codecSelferValueTypeArray1234 { - yyl3209 := r.ReadArrayStart() - if yyl3209 == 0 { + } else if yyct3214 == codecSelferValueTypeArray1234 { + yyl3214 := r.ReadArrayStart() + if yyl3214 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3209, d) + x.codecDecodeSelfFromArray(yyl3214, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39886,12 +39934,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3210Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3210Slc - var yyhl3210 bool = l >= 0 - for yyj3210 := 0; ; yyj3210++ { - if yyhl3210 { - if yyj3210 >= 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 { @@ -39900,10 +39948,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3210Slc = r.DecodeBytes(yys3210Slc, true, true) - yys3210 := string(yys3210Slc) + yys3215Slc = r.DecodeBytes(yys3215Slc, true, true) + yys3215 := string(yys3215Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3210 { + switch yys3215 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39920,19 +39968,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3213 := &x.ObjectMeta - yyv3213.CodecDecodeSelf(d) + yyv3218 := &x.ObjectMeta + yyv3218.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3214 := &x.Data - yym3215 := z.DecBinary() - _ = yym3215 + yyv3219 := &x.Data + yym3220 := z.DecBinary() + _ = yym3220 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3214), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3219), d) } } case "type": @@ -39942,9 +39990,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3210) - } // end switch yys3210 - } // end for yyj3210 + z.DecStructFieldNotFound(-1, yys3215) + } // end switch yys3215 + } // end for yyj3215 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39952,16 +40000,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3217 int - var yyb3217 bool - var yyhl3217 bool = l >= 0 - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + var yyj3222 int + var yyb3222 bool + var yyhl3222 bool = l >= 0 + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39971,13 +40019,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39987,13 +40035,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40001,16 +40049,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3220 := &x.ObjectMeta - yyv3220.CodecDecodeSelf(d) + yyv3225 := &x.ObjectMeta + yyv3225.CodecDecodeSelf(d) } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40018,21 +40066,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3221 := &x.Data - yym3222 := z.DecBinary() - _ = yym3222 + yyv3226 := &x.Data + yym3227 := z.DecBinary() + _ = yym3227 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3221), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3226), d) } } - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40043,17 +40091,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3217++ - if yyhl3217 { - yyb3217 = yyj3217 > l + yyj3222++ + if yyhl3222 { + yyb3222 = yyj3222 > l } else { - yyb3217 = r.CheckBreak() + yyb3222 = r.CheckBreak() } - if yyb3217 { + if yyb3222 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3217-1, "") + z.DecStructFieldNotFound(yyj3222-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40062,8 +40110,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3224 := z.EncBinary() - _ = yym3224 + yym3229 := z.EncBinary() + _ = yym3229 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40075,8 +40123,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3225 := z.DecBinary() - _ = yym3225 + yym3230 := z.DecBinary() + _ = yym3230 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40091,37 +40139,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3226 := z.EncBinary() - _ = yym3226 + yym3231 := z.EncBinary() + _ = yym3231 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3227 := !z.EncBinary() - yy2arr3227 := z.EncBasicHandle().StructToArray - var yyq3227 [4]bool - _, _, _ = yysep3227, yyq3227, yy2arr3227 - const yyr3227 bool = false - yyq3227[0] = x.Kind != "" - yyq3227[1] = x.APIVersion != "" - yyq3227[2] = true - var yynn3227 int - if yyr3227 || yy2arr3227 { + yysep3232 := !z.EncBinary() + yy2arr3232 := z.EncBasicHandle().StructToArray + var yyq3232 [4]bool + _, _, _ = yysep3232, yyq3232, yy2arr3232 + const yyr3232 bool = false + yyq3232[0] = x.Kind != "" + yyq3232[1] = x.APIVersion != "" + yyq3232[2] = true + var yynn3232 int + if yyr3232 || yy2arr3232 { r.EncodeArrayStart(4) } else { - yynn3227 = 1 - for _, b := range yyq3227 { + yynn3232 = 1 + for _, b := range yyq3232 { if b { - yynn3227++ + yynn3232++ } } - r.EncodeMapStart(yynn3227) - yynn3227 = 0 + r.EncodeMapStart(yynn3232) + yynn3232 = 0 } - if yyr3227 || yy2arr3227 { + if yyr3232 || yy2arr3232 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3227[0] { - yym3229 := z.EncBinary() - _ = yym3229 + if yyq3232[0] { + yym3234 := z.EncBinary() + _ = yym3234 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40130,23 +40178,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3227[0] { + if yyq3232[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3230 := z.EncBinary() - _ = yym3230 + yym3235 := z.EncBinary() + _ = yym3235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3227 || yy2arr3227 { + if yyr3232 || yy2arr3232 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3227[1] { - yym3232 := z.EncBinary() - _ = yym3232 + if yyq3232[1] { + yym3237 := z.EncBinary() + _ = yym3237 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40155,54 +40203,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3227[1] { + if yyq3232[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3233 := z.EncBinary() - _ = yym3233 + yym3238 := z.EncBinary() + _ = yym3238 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3227 || yy2arr3227 { + if yyr3232 || yy2arr3232 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3227[2] { - yy3235 := &x.ListMeta - yym3236 := z.EncBinary() - _ = yym3236 + if yyq3232[2] { + yy3240 := &x.ListMeta + yym3241 := z.EncBinary() + _ = yym3241 if false { - } else if z.HasExtensions() && z.EncExt(yy3235) { + } else if z.HasExtensions() && z.EncExt(yy3240) { } else { - z.EncFallback(yy3235) + z.EncFallback(yy3240) } } else { r.EncodeNil() } } else { - if yyq3227[2] { + if yyq3232[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3237 := &x.ListMeta - yym3238 := z.EncBinary() - _ = yym3238 + yy3242 := &x.ListMeta + yym3243 := z.EncBinary() + _ = yym3243 if false { - } else if z.HasExtensions() && z.EncExt(yy3237) { + } else if z.HasExtensions() && z.EncExt(yy3242) { } else { - z.EncFallback(yy3237) + z.EncFallback(yy3242) } } } - if yyr3227 || yy2arr3227 { + if yyr3232 || yy2arr3232 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3240 := z.EncBinary() - _ = yym3240 + yym3245 := z.EncBinary() + _ = yym3245 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -40215,15 +40263,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3241 := z.EncBinary() - _ = yym3241 + yym3246 := z.EncBinary() + _ = yym3246 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3227 || yy2arr3227 { + if yyr3232 || yy2arr3232 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40236,25 +40284,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3242 := z.DecBinary() - _ = yym3242 + yym3247 := z.DecBinary() + _ = yym3247 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3243 := r.ContainerType() - if yyct3243 == codecSelferValueTypeMap1234 { - yyl3243 := r.ReadMapStart() - if yyl3243 == 0 { + yyct3248 := r.ContainerType() + if yyct3248 == codecSelferValueTypeMap1234 { + yyl3248 := r.ReadMapStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3243, d) + x.codecDecodeSelfFromMap(yyl3248, d) } - } else if yyct3243 == codecSelferValueTypeArray1234 { - yyl3243 := r.ReadArrayStart() - if yyl3243 == 0 { + } else if yyct3248 == codecSelferValueTypeArray1234 { + yyl3248 := r.ReadArrayStart() + if yyl3248 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3243, d) + x.codecDecodeSelfFromArray(yyl3248, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40266,12 +40314,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3244Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3244Slc - var yyhl3244 bool = l >= 0 - for yyj3244 := 0; ; yyj3244++ { - if yyhl3244 { - if yyj3244 >= l { + 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 { @@ -40280,10 +40328,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3244Slc = r.DecodeBytes(yys3244Slc, true, true) - yys3244 := string(yys3244Slc) + yys3249Slc = r.DecodeBytes(yys3249Slc, true, true) + yys3249 := string(yys3249Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3244 { + switch yys3249 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40300,31 +40348,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3247 := &x.ListMeta - yym3248 := z.DecBinary() - _ = yym3248 + yyv3252 := &x.ListMeta + yym3253 := z.DecBinary() + _ = yym3253 if false { - } else if z.HasExtensions() && z.DecExt(yyv3247) { + } else if z.HasExtensions() && z.DecExt(yyv3252) { } else { - z.DecFallback(yyv3247, false) + z.DecFallback(yyv3252, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3249 := &x.Items - yym3250 := z.DecBinary() - _ = yym3250 + yyv3254 := &x.Items + yym3255 := z.DecBinary() + _ = yym3255 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3249), d) + h.decSliceSecret((*[]Secret)(yyv3254), d) } } default: - z.DecStructFieldNotFound(-1, yys3244) - } // end switch yys3244 - } // end for yyj3244 + z.DecStructFieldNotFound(-1, yys3249) + } // end switch yys3249 + } // end for yyj3249 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40332,16 +40380,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3251 int - var yyb3251 bool - var yyhl3251 bool = l >= 0 - yyj3251++ - if yyhl3251 { - yyb3251 = yyj3251 > l + var yyj3256 int + var yyb3256 bool + var yyhl3256 bool = l >= 0 + yyj3256++ + if yyhl3256 { + yyb3256 = yyj3256 > l } else { - yyb3251 = r.CheckBreak() + yyb3256 = r.CheckBreak() } - if yyb3251 { + if yyb3256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40351,13 +40399,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3251++ - if yyhl3251 { - yyb3251 = yyj3251 > l + yyj3256++ + if yyhl3256 { + yyb3256 = yyj3256 > l } else { - yyb3251 = r.CheckBreak() + yyb3256 = r.CheckBreak() } - if yyb3251 { + if yyb3256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40367,13 +40415,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3251++ - if yyhl3251 { - yyb3251 = yyj3251 > l + yyj3256++ + if yyhl3256 { + yyb3256 = yyj3256 > l } else { - yyb3251 = r.CheckBreak() + yyb3256 = r.CheckBreak() } - if yyb3251 { + if yyb3256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40381,22 +40429,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3254 := &x.ListMeta - yym3255 := z.DecBinary() - _ = yym3255 + yyv3259 := &x.ListMeta + yym3260 := z.DecBinary() + _ = yym3260 if false { - } else if z.HasExtensions() && z.DecExt(yyv3254) { + } else if z.HasExtensions() && z.DecExt(yyv3259) { } else { - z.DecFallback(yyv3254, false) + z.DecFallback(yyv3259, false) } } - yyj3251++ - if yyhl3251 { - yyb3251 = yyj3251 > l + yyj3256++ + if yyhl3256 { + yyb3256 = yyj3256 > l } else { - yyb3251 = r.CheckBreak() + yyb3256 = r.CheckBreak() } - if yyb3251 { + if yyb3256 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40404,26 +40452,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3256 := &x.Items - yym3257 := z.DecBinary() - _ = yym3257 + yyv3261 := &x.Items + yym3262 := z.DecBinary() + _ = yym3262 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3256), d) + h.decSliceSecret((*[]Secret)(yyv3261), d) } } for { - yyj3251++ - if yyhl3251 { - yyb3251 = yyj3251 > l + yyj3256++ + if yyhl3256 { + yyb3256 = yyj3256 > l } else { - yyb3251 = r.CheckBreak() + yyb3256 = r.CheckBreak() } - if yyb3251 { + if yyb3256 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3251-1, "") + z.DecStructFieldNotFound(yyj3256-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40432,8 +40480,8 @@ func (x PatchType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3258 := z.EncBinary() - _ = yym3258 + yym3263 := z.EncBinary() + _ = yym3263 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40445,8 +40493,8 @@ func (x *PatchType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3259 := z.DecBinary() - _ = yym3259 + yym3264 := z.DecBinary() + _ = yym3264 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40458,8 +40506,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3260 := z.EncBinary() - _ = yym3260 + yym3265 := z.EncBinary() + _ = yym3265 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40471,8 +40519,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3261 := z.DecBinary() - _ = yym3261 + yym3266 := z.DecBinary() + _ = yym3266 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40487,32 +40535,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3262 := z.EncBinary() - _ = yym3262 + yym3267 := z.EncBinary() + _ = yym3267 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3263 := !z.EncBinary() - yy2arr3263 := z.EncBasicHandle().StructToArray - var yyq3263 [4]bool - _, _, _ = yysep3263, yyq3263, yy2arr3263 - const yyr3263 bool = false - yyq3263[2] = x.Message != "" - yyq3263[3] = x.Error != "" - var yynn3263 int - if yyr3263 || yy2arr3263 { + yysep3268 := !z.EncBinary() + yy2arr3268 := z.EncBasicHandle().StructToArray + var yyq3268 [4]bool + _, _, _ = yysep3268, yyq3268, yy2arr3268 + const yyr3268 bool = false + yyq3268[2] = x.Message != "" + yyq3268[3] = x.Error != "" + var yynn3268 int + if yyr3268 || yy2arr3268 { r.EncodeArrayStart(4) } else { - yynn3263 = 2 - for _, b := range yyq3263 { + yynn3268 = 2 + for _, b := range yyq3268 { if b { - yynn3263++ + yynn3268++ } } - r.EncodeMapStart(yynn3263) - yynn3263 = 0 + r.EncodeMapStart(yynn3268) + yynn3268 = 0 } - if yyr3263 || yy2arr3263 { + if yyr3268 || yy2arr3268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40521,7 +40569,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3263 || yy2arr3263 { + if yyr3268 || yy2arr3268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -40530,11 +40578,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3263 || yy2arr3263 { + if yyr3268 || yy2arr3268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3263[2] { - yym3267 := z.EncBinary() - _ = yym3267 + if yyq3268[2] { + yym3272 := z.EncBinary() + _ = yym3272 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -40543,23 +40591,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3263[2] { + if yyq3268[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3268 := z.EncBinary() - _ = yym3268 + yym3273 := z.EncBinary() + _ = yym3273 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3263 || yy2arr3263 { + if yyr3268 || yy2arr3268 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3263[3] { - yym3270 := z.EncBinary() - _ = yym3270 + if yyq3268[3] { + yym3275 := z.EncBinary() + _ = yym3275 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -40568,19 +40616,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3263[3] { + if yyq3268[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3271 := z.EncBinary() - _ = yym3271 + yym3276 := z.EncBinary() + _ = yym3276 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3263 || yy2arr3263 { + if yyr3268 || yy2arr3268 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40593,25 +40641,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3272 := z.DecBinary() - _ = yym3272 + yym3277 := z.DecBinary() + _ = yym3277 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3273 := r.ContainerType() - if yyct3273 == codecSelferValueTypeMap1234 { - yyl3273 := r.ReadMapStart() - if yyl3273 == 0 { + yyct3278 := r.ContainerType() + if yyct3278 == codecSelferValueTypeMap1234 { + yyl3278 := r.ReadMapStart() + if yyl3278 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3273, d) + x.codecDecodeSelfFromMap(yyl3278, d) } - } else if yyct3273 == codecSelferValueTypeArray1234 { - yyl3273 := r.ReadArrayStart() - if yyl3273 == 0 { + } else if yyct3278 == codecSelferValueTypeArray1234 { + yyl3278 := r.ReadArrayStart() + if yyl3278 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3273, d) + x.codecDecodeSelfFromArray(yyl3278, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40623,12 +40671,12 @@ func (x *ComponentCondition) 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 { + var yys3279Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3279Slc + var yyhl3279 bool = l >= 0 + for yyj3279 := 0; ; yyj3279++ { + if yyhl3279 { + if yyj3279 >= l { break } } else { @@ -40637,10 +40685,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3274Slc = r.DecodeBytes(yys3274Slc, true, true) - yys3274 := string(yys3274Slc) + yys3279Slc = r.DecodeBytes(yys3279Slc, true, true) + yys3279 := string(yys3279Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3274 { + switch yys3279 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40666,9 +40714,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3274) - } // end switch yys3274 - } // end for yyj3274 + z.DecStructFieldNotFound(-1, yys3279) + } // end switch yys3279 + } // end for yyj3279 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40676,16 +40724,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3279 int - var yyb3279 bool - var yyhl3279 bool = l >= 0 - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + var yyj3284 int + var yyb3284 bool + var yyhl3284 bool = l >= 0 + yyj3284++ + if yyhl3284 { + yyb3284 = yyj3284 > l } else { - yyb3279 = r.CheckBreak() + yyb3284 = r.CheckBreak() } - if yyb3279 { + if yyb3284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40695,13 +40743,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3284++ + if yyhl3284 { + yyb3284 = yyj3284 > l } else { - yyb3279 = r.CheckBreak() + yyb3284 = r.CheckBreak() } - if yyb3279 { + if yyb3284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40711,13 +40759,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3284++ + if yyhl3284 { + yyb3284 = yyj3284 > l } else { - yyb3279 = r.CheckBreak() + yyb3284 = r.CheckBreak() } - if yyb3279 { + if yyb3284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40727,13 +40775,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3284++ + if yyhl3284 { + yyb3284 = yyj3284 > l } else { - yyb3279 = r.CheckBreak() + yyb3284 = r.CheckBreak() } - if yyb3279 { + if yyb3284 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40744,17 +40792,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3279++ - if yyhl3279 { - yyb3279 = yyj3279 > l + yyj3284++ + if yyhl3284 { + yyb3284 = yyj3284 > l } else { - yyb3279 = r.CheckBreak() + yyb3284 = r.CheckBreak() } - if yyb3279 { + if yyb3284 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3279-1, "") + z.DecStructFieldNotFound(yyj3284-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40766,38 +40814,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3284 := z.EncBinary() - _ = yym3284 + yym3289 := z.EncBinary() + _ = yym3289 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3285 := !z.EncBinary() - yy2arr3285 := z.EncBasicHandle().StructToArray - var yyq3285 [4]bool - _, _, _ = yysep3285, yyq3285, yy2arr3285 - const yyr3285 bool = false - yyq3285[0] = x.Kind != "" - yyq3285[1] = x.APIVersion != "" - yyq3285[2] = true - yyq3285[3] = len(x.Conditions) != 0 - var yynn3285 int - if yyr3285 || yy2arr3285 { + yysep3290 := !z.EncBinary() + yy2arr3290 := z.EncBasicHandle().StructToArray + var yyq3290 [4]bool + _, _, _ = yysep3290, yyq3290, yy2arr3290 + const yyr3290 bool = false + yyq3290[0] = x.Kind != "" + yyq3290[1] = x.APIVersion != "" + yyq3290[2] = true + yyq3290[3] = len(x.Conditions) != 0 + var yynn3290 int + if yyr3290 || yy2arr3290 { r.EncodeArrayStart(4) } else { - yynn3285 = 0 - for _, b := range yyq3285 { + yynn3290 = 0 + for _, b := range yyq3290 { if b { - yynn3285++ + yynn3290++ } } - r.EncodeMapStart(yynn3285) - yynn3285 = 0 + r.EncodeMapStart(yynn3290) + yynn3290 = 0 } - if yyr3285 || yy2arr3285 { + if yyr3290 || yy2arr3290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3285[0] { - yym3287 := z.EncBinary() - _ = yym3287 + if yyq3290[0] { + yym3292 := z.EncBinary() + _ = yym3292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40806,23 +40854,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3285[0] { + if yyq3290[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3288 := z.EncBinary() - _ = yym3288 + yym3293 := z.EncBinary() + _ = yym3293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3285 || yy2arr3285 { + if yyr3290 || yy2arr3290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3285[1] { - yym3290 := z.EncBinary() - _ = yym3290 + if yyq3290[1] { + yym3295 := z.EncBinary() + _ = yym3295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40831,43 +40879,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3285[1] { + if yyq3290[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3291 := z.EncBinary() - _ = yym3291 + yym3296 := z.EncBinary() + _ = yym3296 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3285 || yy2arr3285 { + if yyr3290 || yy2arr3290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3285[2] { - yy3293 := &x.ObjectMeta - yy3293.CodecEncodeSelf(e) + if yyq3290[2] { + yy3298 := &x.ObjectMeta + yy3298.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3285[2] { + if yyq3290[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3294 := &x.ObjectMeta - yy3294.CodecEncodeSelf(e) + yy3299 := &x.ObjectMeta + yy3299.CodecEncodeSelf(e) } } - if yyr3285 || yy2arr3285 { + if yyr3290 || yy2arr3290 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3285[3] { + if yyq3290[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3296 := z.EncBinary() - _ = yym3296 + yym3301 := z.EncBinary() + _ = yym3301 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -40877,15 +40925,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3285[3] { + if yyq3290[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3297 := z.EncBinary() - _ = yym3297 + yym3302 := z.EncBinary() + _ = yym3302 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -40893,7 +40941,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3285 || yy2arr3285 { + if yyr3290 || yy2arr3290 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40906,25 +40954,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3298 := z.DecBinary() - _ = yym3298 + yym3303 := z.DecBinary() + _ = yym3303 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3299 := r.ContainerType() - if yyct3299 == codecSelferValueTypeMap1234 { - yyl3299 := r.ReadMapStart() - if yyl3299 == 0 { + yyct3304 := r.ContainerType() + if yyct3304 == codecSelferValueTypeMap1234 { + yyl3304 := r.ReadMapStart() + if yyl3304 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3299, d) + x.codecDecodeSelfFromMap(yyl3304, d) } - } else if yyct3299 == codecSelferValueTypeArray1234 { - yyl3299 := r.ReadArrayStart() - if yyl3299 == 0 { + } else if yyct3304 == codecSelferValueTypeArray1234 { + yyl3304 := r.ReadArrayStart() + if yyl3304 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3299, d) + x.codecDecodeSelfFromArray(yyl3304, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40936,12 +40984,12 @@ func (x *ComponentStatus) 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 { + var yys3305Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3305Slc + var yyhl3305 bool = l >= 0 + for yyj3305 := 0; ; yyj3305++ { + if yyhl3305 { + if yyj3305 >= l { break } } else { @@ -40950,10 +40998,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3300Slc = r.DecodeBytes(yys3300Slc, true, true) - yys3300 := string(yys3300Slc) + yys3305Slc = r.DecodeBytes(yys3305Slc, true, true) + yys3305 := string(yys3305Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3300 { + switch yys3305 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40970,25 +41018,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3303 := &x.ObjectMeta - yyv3303.CodecDecodeSelf(d) + yyv3308 := &x.ObjectMeta + yyv3308.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3304 := &x.Conditions - yym3305 := z.DecBinary() - _ = yym3305 + yyv3309 := &x.Conditions + yym3310 := z.DecBinary() + _ = yym3310 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3304), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3309), d) } } default: - z.DecStructFieldNotFound(-1, yys3300) - } // end switch yys3300 - } // end for yyj3300 + z.DecStructFieldNotFound(-1, yys3305) + } // end switch yys3305 + } // end for yyj3305 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40996,16 +41044,16 @@ func (x *ComponentStatus) 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 + var yyj3311 int + var yyb3311 bool + var yyhl3311 bool = l >= 0 + yyj3311++ + if yyhl3311 { + yyb3311 = yyj3311 > l } else { - yyb3306 = r.CheckBreak() + yyb3311 = r.CheckBreak() } - if yyb3306 { + if yyb3311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41015,13 +41063,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3311++ + if yyhl3311 { + yyb3311 = yyj3311 > l } else { - yyb3306 = r.CheckBreak() + yyb3311 = r.CheckBreak() } - if yyb3306 { + if yyb3311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41031,13 +41079,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3311++ + if yyhl3311 { + yyb3311 = yyj3311 > l } else { - yyb3306 = r.CheckBreak() + yyb3311 = r.CheckBreak() } - if yyb3306 { + if yyb3311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41045,16 +41093,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3309 := &x.ObjectMeta - yyv3309.CodecDecodeSelf(d) + yyv3314 := &x.ObjectMeta + yyv3314.CodecDecodeSelf(d) } - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3311++ + if yyhl3311 { + yyb3311 = yyj3311 > l } else { - yyb3306 = r.CheckBreak() + yyb3311 = r.CheckBreak() } - if yyb3306 { + if yyb3311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41062,26 +41110,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3310 := &x.Conditions - yym3311 := z.DecBinary() - _ = yym3311 + yyv3315 := &x.Conditions + yym3316 := z.DecBinary() + _ = yym3316 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3310), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3315), d) } } for { - yyj3306++ - if yyhl3306 { - yyb3306 = yyj3306 > l + yyj3311++ + if yyhl3311 { + yyb3311 = yyj3311 > l } else { - yyb3306 = r.CheckBreak() + yyb3311 = r.CheckBreak() } - if yyb3306 { + if yyb3311 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3306-1, "") + z.DecStructFieldNotFound(yyj3311-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41093,37 +41141,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3312 := z.EncBinary() - _ = yym3312 + yym3317 := z.EncBinary() + _ = yym3317 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 { + yysep3318 := !z.EncBinary() + yy2arr3318 := z.EncBasicHandle().StructToArray + var yyq3318 [4]bool + _, _, _ = yysep3318, yyq3318, yy2arr3318 + const yyr3318 bool = false + yyq3318[0] = x.Kind != "" + yyq3318[1] = x.APIVersion != "" + yyq3318[2] = true + var yynn3318 int + if yyr3318 || yy2arr3318 { r.EncodeArrayStart(4) } else { - yynn3313 = 1 - for _, b := range yyq3313 { + yynn3318 = 1 + for _, b := range yyq3318 { if b { - yynn3313++ + yynn3318++ } } - r.EncodeMapStart(yynn3313) - yynn3313 = 0 + r.EncodeMapStart(yynn3318) + yynn3318 = 0 } - if yyr3313 || yy2arr3313 { + if yyr3318 || yy2arr3318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[0] { - yym3315 := z.EncBinary() - _ = yym3315 + if yyq3318[0] { + yym3320 := z.EncBinary() + _ = yym3320 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41132,23 +41180,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[0] { + if yyq3318[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3316 := z.EncBinary() - _ = yym3316 + yym3321 := z.EncBinary() + _ = yym3321 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3313 || yy2arr3313 { + if yyr3318 || yy2arr3318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[1] { - yym3318 := z.EncBinary() - _ = yym3318 + if yyq3318[1] { + yym3323 := z.EncBinary() + _ = yym3323 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41157,54 +41205,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3313[1] { + if yyq3318[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3319 := z.EncBinary() - _ = yym3319 + yym3324 := z.EncBinary() + _ = yym3324 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3313 || yy2arr3313 { + if yyr3318 || yy2arr3318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3313[2] { - yy3321 := &x.ListMeta - yym3322 := z.EncBinary() - _ = yym3322 + if yyq3318[2] { + yy3326 := &x.ListMeta + yym3327 := z.EncBinary() + _ = yym3327 if false { - } else if z.HasExtensions() && z.EncExt(yy3321) { + } else if z.HasExtensions() && z.EncExt(yy3326) { } else { - z.EncFallback(yy3321) + z.EncFallback(yy3326) } } else { r.EncodeNil() } } else { - if yyq3313[2] { + if yyq3318[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3323 := &x.ListMeta - yym3324 := z.EncBinary() - _ = yym3324 + yy3328 := &x.ListMeta + yym3329 := z.EncBinary() + _ = yym3329 if false { - } else if z.HasExtensions() && z.EncExt(yy3323) { + } else if z.HasExtensions() && z.EncExt(yy3328) { } else { - z.EncFallback(yy3323) + z.EncFallback(yy3328) } } } - if yyr3313 || yy2arr3313 { + if yyr3318 || yy2arr3318 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3326 := z.EncBinary() - _ = yym3326 + yym3331 := z.EncBinary() + _ = yym3331 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -41217,15 +41265,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3327 := z.EncBinary() - _ = yym3327 + yym3332 := z.EncBinary() + _ = yym3332 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3313 || yy2arr3313 { + if yyr3318 || yy2arr3318 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41238,25 +41286,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3328 := z.DecBinary() - _ = yym3328 + yym3333 := z.DecBinary() + _ = yym3333 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3329 := r.ContainerType() - if yyct3329 == codecSelferValueTypeMap1234 { - yyl3329 := r.ReadMapStart() - if yyl3329 == 0 { + yyct3334 := r.ContainerType() + if yyct3334 == codecSelferValueTypeMap1234 { + yyl3334 := r.ReadMapStart() + if yyl3334 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3329, d) + x.codecDecodeSelfFromMap(yyl3334, d) } - } else if yyct3329 == codecSelferValueTypeArray1234 { - yyl3329 := r.ReadArrayStart() - if yyl3329 == 0 { + } else if yyct3334 == codecSelferValueTypeArray1234 { + yyl3334 := r.ReadArrayStart() + if yyl3334 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3329, d) + x.codecDecodeSelfFromArray(yyl3334, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41268,12 +41316,12 @@ func (x *ComponentStatusList) 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 { + var yys3335Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3335Slc + var yyhl3335 bool = l >= 0 + for yyj3335 := 0; ; yyj3335++ { + if yyhl3335 { + if yyj3335 >= l { break } } else { @@ -41282,10 +41330,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3330Slc = r.DecodeBytes(yys3330Slc, true, true) - yys3330 := string(yys3330Slc) + yys3335Slc = r.DecodeBytes(yys3335Slc, true, true) + yys3335 := string(yys3335Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3330 { + switch yys3335 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41302,31 +41350,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3333 := &x.ListMeta - yym3334 := z.DecBinary() - _ = yym3334 + yyv3338 := &x.ListMeta + yym3339 := z.DecBinary() + _ = yym3339 if false { - } else if z.HasExtensions() && z.DecExt(yyv3333) { + } else if z.HasExtensions() && z.DecExt(yyv3338) { } else { - z.DecFallback(yyv3333, false) + z.DecFallback(yyv3338, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3335 := &x.Items - yym3336 := z.DecBinary() - _ = yym3336 + yyv3340 := &x.Items + yym3341 := z.DecBinary() + _ = yym3341 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3335), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3340), d) } } default: - z.DecStructFieldNotFound(-1, yys3330) - } // end switch yys3330 - } // end for yyj3330 + z.DecStructFieldNotFound(-1, yys3335) + } // end switch yys3335 + } // end for yyj3335 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41334,16 +41382,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj3342 int + var yyb3342 bool + var yyhl3342 bool = l >= 0 + yyj3342++ + if yyhl3342 { + yyb3342 = yyj3342 > l } else { - yyb3337 = r.CheckBreak() + yyb3342 = r.CheckBreak() } - if yyb3337 { + if yyb3342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41353,13 +41401,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3342++ + if yyhl3342 { + yyb3342 = yyj3342 > l } else { - yyb3337 = r.CheckBreak() + yyb3342 = r.CheckBreak() } - if yyb3337 { + if yyb3342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41369,13 +41417,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3342++ + if yyhl3342 { + yyb3342 = yyj3342 > l } else { - yyb3337 = r.CheckBreak() + yyb3342 = r.CheckBreak() } - if yyb3337 { + if yyb3342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41383,22 +41431,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3340 := &x.ListMeta - yym3341 := z.DecBinary() - _ = yym3341 + yyv3345 := &x.ListMeta + yym3346 := z.DecBinary() + _ = yym3346 if false { - } else if z.HasExtensions() && z.DecExt(yyv3340) { + } else if z.HasExtensions() && z.DecExt(yyv3345) { } else { - z.DecFallback(yyv3340, false) + z.DecFallback(yyv3345, false) } } - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3342++ + if yyhl3342 { + yyb3342 = yyj3342 > l } else { - yyb3337 = r.CheckBreak() + yyb3342 = r.CheckBreak() } - if yyb3337 { + if yyb3342 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41406,26 +41454,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3342 := &x.Items - yym3343 := z.DecBinary() - _ = yym3343 + yyv3347 := &x.Items + yym3348 := z.DecBinary() + _ = yym3348 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3342), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3347), d) } } for { - yyj3337++ - if yyhl3337 { - yyb3337 = yyj3337 > l + yyj3342++ + if yyhl3342 { + yyb3342 = yyj3342 > l } else { - yyb3337 = r.CheckBreak() + yyb3342 = r.CheckBreak() } - if yyb3337 { + if yyb3342 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3337-1, "") + z.DecStructFieldNotFound(yyj3342-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41437,37 +41485,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3344 := z.EncBinary() - _ = yym3344 + yym3349 := z.EncBinary() + _ = yym3349 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.Capabilities != nil - yyq3345[1] = x.Privileged != nil - yyq3345[2] = x.SELinuxOptions != nil - yyq3345[3] = x.RunAsUser != nil - yyq3345[4] = x.RunAsNonRoot != nil - var yynn3345 int - if yyr3345 || yy2arr3345 { + yysep3350 := !z.EncBinary() + yy2arr3350 := z.EncBasicHandle().StructToArray + var yyq3350 [5]bool + _, _, _ = yysep3350, yyq3350, yy2arr3350 + const yyr3350 bool = false + yyq3350[0] = x.Capabilities != nil + yyq3350[1] = x.Privileged != nil + yyq3350[2] = x.SELinuxOptions != nil + yyq3350[3] = x.RunAsUser != nil + yyq3350[4] = x.RunAsNonRoot != nil + var yynn3350 int + if yyr3350 || yy2arr3350 { r.EncodeArrayStart(5) } else { - yynn3345 = 0 - for _, b := range yyq3345 { + yynn3350 = 0 + for _, b := range yyq3350 { if b { - yynn3345++ + yynn3350++ } } - r.EncodeMapStart(yynn3345) - yynn3345 = 0 + r.EncodeMapStart(yynn3350) + yynn3350 = 0 } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[0] { + if yyq3350[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -41477,7 +41525,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3345[0] { + if yyq3350[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41488,44 +41536,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[1] { + if yyq3350[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3348 := *x.Privileged - yym3349 := z.EncBinary() - _ = yym3349 + yy3353 := *x.Privileged + yym3354 := z.EncBinary() + _ = yym3354 if false { } else { - r.EncodeBool(bool(yy3348)) + r.EncodeBool(bool(yy3353)) } } } else { r.EncodeNil() } } else { - if yyq3345[1] { + if yyq3350[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3350 := *x.Privileged - yym3351 := z.EncBinary() - _ = yym3351 + yy3355 := *x.Privileged + yym3356 := z.EncBinary() + _ = yym3356 if false { } else { - r.EncodeBool(bool(yy3350)) + r.EncodeBool(bool(yy3355)) } } } } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[2] { + if yyq3350[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -41535,7 +41583,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3345[2] { + if yyq3350[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -41546,77 +41594,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[3] { + if yyq3350[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3354 := *x.RunAsUser - yym3355 := z.EncBinary() - _ = yym3355 + yy3359 := *x.RunAsUser + yym3360 := z.EncBinary() + _ = yym3360 if false { } else { - r.EncodeInt(int64(yy3354)) + r.EncodeInt(int64(yy3359)) } } } else { r.EncodeNil() } } else { - if yyq3345[3] { + if yyq3350[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3356 := *x.RunAsUser - yym3357 := z.EncBinary() - _ = yym3357 + yy3361 := *x.RunAsUser + yym3362 := z.EncBinary() + _ = yym3362 if false { } else { - r.EncodeInt(int64(yy3356)) + r.EncodeInt(int64(yy3361)) } } } } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3345[4] { + if yyq3350[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3359 := *x.RunAsNonRoot - yym3360 := z.EncBinary() - _ = yym3360 + yy3364 := *x.RunAsNonRoot + yym3365 := z.EncBinary() + _ = yym3365 if false { } else { - r.EncodeBool(bool(yy3359)) + r.EncodeBool(bool(yy3364)) } } } else { r.EncodeNil() } } else { - if yyq3345[4] { + if yyq3350[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3361 := *x.RunAsNonRoot - yym3362 := z.EncBinary() - _ = yym3362 + yy3366 := *x.RunAsNonRoot + yym3367 := z.EncBinary() + _ = yym3367 if false { } else { - r.EncodeBool(bool(yy3361)) + r.EncodeBool(bool(yy3366)) } } } } - if yyr3345 || yy2arr3345 { + if yyr3350 || yy2arr3350 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41629,25 +41677,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3363 := z.DecBinary() - _ = yym3363 + yym3368 := z.DecBinary() + _ = yym3368 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3364 := r.ContainerType() - if yyct3364 == codecSelferValueTypeMap1234 { - yyl3364 := r.ReadMapStart() - if yyl3364 == 0 { + yyct3369 := r.ContainerType() + if yyct3369 == codecSelferValueTypeMap1234 { + yyl3369 := r.ReadMapStart() + if yyl3369 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3364, d) + x.codecDecodeSelfFromMap(yyl3369, d) } - } else if yyct3364 == codecSelferValueTypeArray1234 { - yyl3364 := r.ReadArrayStart() - if yyl3364 == 0 { + } else if yyct3369 == codecSelferValueTypeArray1234 { + yyl3369 := r.ReadArrayStart() + if yyl3369 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3364, d) + x.codecDecodeSelfFromArray(yyl3369, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41659,12 +41707,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3365Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3365Slc - var yyhl3365 bool = l >= 0 - for yyj3365 := 0; ; yyj3365++ { - if yyhl3365 { - if yyj3365 >= l { + var yys3370Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3370Slc + var yyhl3370 bool = l >= 0 + for yyj3370 := 0; ; yyj3370++ { + if yyhl3370 { + if yyj3370 >= l { break } } else { @@ -41673,10 +41721,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3365Slc = r.DecodeBytes(yys3365Slc, true, true) - yys3365 := string(yys3365Slc) + yys3370Slc = r.DecodeBytes(yys3370Slc, true, true) + yys3370 := string(yys3370Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3365 { + switch yys3370 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -41697,8 +41745,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3368 := z.DecBinary() - _ = yym3368 + yym3373 := z.DecBinary() + _ = yym3373 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -41724,8 +41772,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3371 := z.DecBinary() - _ = yym3371 + yym3376 := z.DecBinary() + _ = yym3376 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -41740,17 +41788,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3373 := z.DecBinary() - _ = yym3373 + yym3378 := z.DecBinary() + _ = yym3378 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3365) - } // end switch yys3365 - } // end for yyj3365 + z.DecStructFieldNotFound(-1, yys3370) + } // end switch yys3370 + } // end for yyj3370 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41758,16 +41806,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3374 int - var yyb3374 bool - var yyhl3374 bool = l >= 0 - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + var yyj3379 int + var yyb3379 bool + var yyhl3379 bool = l >= 0 + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41782,13 +41830,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41801,20 +41849,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3377 := z.DecBinary() - _ = yym3377 + yym3382 := z.DecBinary() + _ = yym3382 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41829,13 +41877,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41848,20 +41896,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3380 := z.DecBinary() - _ = yym3380 + yym3385 := z.DecBinary() + _ = yym3385 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41874,25 +41922,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3382 := z.DecBinary() - _ = yym3382 + yym3387 := z.DecBinary() + _ = yym3387 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3374++ - if yyhl3374 { - yyb3374 = yyj3374 > l + yyj3379++ + if yyhl3379 { + yyb3379 = yyj3379 > l } else { - yyb3374 = r.CheckBreak() + yyb3379 = r.CheckBreak() } - if yyb3374 { + if yyb3379 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3374-1, "") + z.DecStructFieldNotFound(yyj3379-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41904,38 +41952,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3383 := z.EncBinary() - _ = yym3383 + yym3388 := z.EncBinary() + _ = yym3388 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3384 := !z.EncBinary() - yy2arr3384 := z.EncBasicHandle().StructToArray - var yyq3384 [4]bool - _, _, _ = yysep3384, yyq3384, yy2arr3384 - const yyr3384 bool = false - yyq3384[0] = x.User != "" - yyq3384[1] = x.Role != "" - yyq3384[2] = x.Type != "" - yyq3384[3] = x.Level != "" - var yynn3384 int - if yyr3384 || yy2arr3384 { + yysep3389 := !z.EncBinary() + yy2arr3389 := z.EncBasicHandle().StructToArray + var yyq3389 [4]bool + _, _, _ = yysep3389, yyq3389, yy2arr3389 + const yyr3389 bool = false + yyq3389[0] = x.User != "" + yyq3389[1] = x.Role != "" + yyq3389[2] = x.Type != "" + yyq3389[3] = x.Level != "" + var yynn3389 int + if yyr3389 || yy2arr3389 { r.EncodeArrayStart(4) } else { - yynn3384 = 0 - for _, b := range yyq3384 { + yynn3389 = 0 + for _, b := range yyq3389 { if b { - yynn3384++ + yynn3389++ } } - r.EncodeMapStart(yynn3384) - yynn3384 = 0 + r.EncodeMapStart(yynn3389) + yynn3389 = 0 } - if yyr3384 || yy2arr3384 { + if yyr3389 || yy2arr3389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3384[0] { - yym3386 := z.EncBinary() - _ = yym3386 + if yyq3389[0] { + yym3391 := z.EncBinary() + _ = yym3391 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -41944,23 +41992,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3384[0] { + if yyq3389[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3387 := z.EncBinary() - _ = yym3387 + yym3392 := z.EncBinary() + _ = yym3392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3384 || yy2arr3384 { + if yyr3389 || yy2arr3389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3384[1] { - yym3389 := z.EncBinary() - _ = yym3389 + if yyq3389[1] { + yym3394 := z.EncBinary() + _ = yym3394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -41969,23 +42017,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3384[1] { + if yyq3389[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3390 := z.EncBinary() - _ = yym3390 + yym3395 := z.EncBinary() + _ = yym3395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3384 || yy2arr3384 { + if yyr3389 || yy2arr3389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3384[2] { - yym3392 := z.EncBinary() - _ = yym3392 + if yyq3389[2] { + yym3397 := z.EncBinary() + _ = yym3397 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -41994,23 +42042,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3384[2] { + if yyq3389[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3393 := z.EncBinary() - _ = yym3393 + yym3398 := z.EncBinary() + _ = yym3398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3384 || yy2arr3384 { + if yyr3389 || yy2arr3389 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3384[3] { - yym3395 := z.EncBinary() - _ = yym3395 + if yyq3389[3] { + yym3400 := z.EncBinary() + _ = yym3400 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -42019,19 +42067,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3384[3] { + if yyq3389[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3396 := z.EncBinary() - _ = yym3396 + yym3401 := z.EncBinary() + _ = yym3401 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3384 || yy2arr3384 { + if yyr3389 || yy2arr3389 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42044,25 +42092,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3397 := z.DecBinary() - _ = yym3397 + yym3402 := z.DecBinary() + _ = yym3402 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3398 := r.ContainerType() - if yyct3398 == codecSelferValueTypeMap1234 { - yyl3398 := r.ReadMapStart() - if yyl3398 == 0 { + yyct3403 := r.ContainerType() + if yyct3403 == codecSelferValueTypeMap1234 { + yyl3403 := r.ReadMapStart() + if yyl3403 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3398, d) + x.codecDecodeSelfFromMap(yyl3403, d) } - } else if yyct3398 == codecSelferValueTypeArray1234 { - yyl3398 := r.ReadArrayStart() - if yyl3398 == 0 { + } else if yyct3403 == codecSelferValueTypeArray1234 { + yyl3403 := r.ReadArrayStart() + if yyl3403 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3398, d) + x.codecDecodeSelfFromArray(yyl3403, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42074,12 +42122,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3399Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3399Slc - var yyhl3399 bool = l >= 0 - for yyj3399 := 0; ; yyj3399++ { - if yyhl3399 { - if yyj3399 >= l { + var yys3404Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3404Slc + var yyhl3404 bool = l >= 0 + for yyj3404 := 0; ; yyj3404++ { + if yyhl3404 { + if yyj3404 >= l { break } } else { @@ -42088,10 +42136,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3399Slc = r.DecodeBytes(yys3399Slc, true, true) - yys3399 := string(yys3399Slc) + yys3404Slc = r.DecodeBytes(yys3404Slc, true, true) + yys3404 := string(yys3404Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3399 { + switch yys3404 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -42117,9 +42165,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3399) - } // end switch yys3399 - } // end for yyj3399 + z.DecStructFieldNotFound(-1, yys3404) + } // end switch yys3404 + } // end for yyj3404 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42127,16 +42175,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3404 int - var yyb3404 bool - var yyhl3404 bool = l >= 0 - yyj3404++ - if yyhl3404 { - yyb3404 = yyj3404 > l + var yyj3409 int + var yyb3409 bool + var yyhl3409 bool = l >= 0 + yyj3409++ + if yyhl3409 { + yyb3409 = yyj3409 > l } else { - yyb3404 = r.CheckBreak() + yyb3409 = r.CheckBreak() } - if yyb3404 { + if yyb3409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42146,13 +42194,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3404++ - if yyhl3404 { - yyb3404 = yyj3404 > l + yyj3409++ + if yyhl3409 { + yyb3409 = yyj3409 > l } else { - yyb3404 = r.CheckBreak() + yyb3409 = r.CheckBreak() } - if yyb3404 { + if yyb3409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42162,13 +42210,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3404++ - if yyhl3404 { - yyb3404 = yyj3404 > l + yyj3409++ + if yyhl3409 { + yyb3409 = yyj3409 > l } else { - yyb3404 = r.CheckBreak() + yyb3409 = r.CheckBreak() } - if yyb3404 { + if yyb3409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42178,13 +42226,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3404++ - if yyhl3404 { - yyb3404 = yyj3404 > l + yyj3409++ + if yyhl3409 { + yyb3409 = yyj3409 > l } else { - yyb3404 = r.CheckBreak() + yyb3409 = r.CheckBreak() } - if yyb3404 { + if yyb3409 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42195,17 +42243,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3404++ - if yyhl3404 { - yyb3404 = yyj3404 > l + yyj3409++ + if yyhl3409 { + yyb3409 = yyj3409 > l } else { - yyb3404 = r.CheckBreak() + yyb3409 = r.CheckBreak() } - if yyb3404 { + if yyb3409 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3404-1, "") + z.DecStructFieldNotFound(yyj3409-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42217,37 +42265,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3409 := z.EncBinary() - _ = yym3409 + yym3414 := z.EncBinary() + _ = yym3414 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3410 := !z.EncBinary() - yy2arr3410 := z.EncBasicHandle().StructToArray - var yyq3410 [5]bool - _, _, _ = yysep3410, yyq3410, yy2arr3410 - const yyr3410 bool = false - yyq3410[0] = x.Kind != "" - yyq3410[1] = x.APIVersion != "" - yyq3410[2] = true - var yynn3410 int - if yyr3410 || yy2arr3410 { + yysep3415 := !z.EncBinary() + yy2arr3415 := z.EncBasicHandle().StructToArray + var yyq3415 [5]bool + _, _, _ = yysep3415, yyq3415, yy2arr3415 + const yyr3415 bool = false + yyq3415[0] = x.Kind != "" + yyq3415[1] = x.APIVersion != "" + yyq3415[2] = true + var yynn3415 int + if yyr3415 || yy2arr3415 { r.EncodeArrayStart(5) } else { - yynn3410 = 2 - for _, b := range yyq3410 { + yynn3415 = 2 + for _, b := range yyq3415 { if b { - yynn3410++ + yynn3415++ } } - r.EncodeMapStart(yynn3410) - yynn3410 = 0 + r.EncodeMapStart(yynn3415) + yynn3415 = 0 } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3410[0] { - yym3412 := z.EncBinary() - _ = yym3412 + if yyq3415[0] { + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42256,23 +42304,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3410[0] { + if yyq3415[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3413 := z.EncBinary() - _ = yym3413 + yym3418 := z.EncBinary() + _ = yym3418 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3410[1] { - yym3415 := z.EncBinary() - _ = yym3415 + if yyq3415[1] { + yym3420 := z.EncBinary() + _ = yym3420 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42281,39 +42329,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3410[1] { + if yyq3415[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3416 := z.EncBinary() - _ = yym3416 + yym3421 := z.EncBinary() + _ = yym3421 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3410[2] { - yy3418 := &x.ObjectMeta - yy3418.CodecEncodeSelf(e) + if yyq3415[2] { + yy3423 := &x.ObjectMeta + yy3423.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3410[2] { + if yyq3415[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3419 := &x.ObjectMeta - yy3419.CodecEncodeSelf(e) + yy3424 := &x.ObjectMeta + yy3424.CodecEncodeSelf(e) } } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3421 := z.EncBinary() - _ = yym3421 + yym3426 := z.EncBinary() + _ = yym3426 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -42322,20 +42370,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3422 := z.EncBinary() - _ = yym3422 + yym3427 := z.EncBinary() + _ = yym3427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3424 := z.EncBinary() - _ = yym3424 + yym3429 := z.EncBinary() + _ = yym3429 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -42348,15 +42396,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3425 := z.EncBinary() - _ = yym3425 + yym3430 := z.EncBinary() + _ = yym3430 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3410 || yy2arr3410 { + if yyr3415 || yy2arr3415 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42369,25 +42417,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3426 := z.DecBinary() - _ = yym3426 + yym3431 := z.DecBinary() + _ = yym3431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3427 := r.ContainerType() - if yyct3427 == codecSelferValueTypeMap1234 { - yyl3427 := r.ReadMapStart() - if yyl3427 == 0 { + yyct3432 := r.ContainerType() + if yyct3432 == codecSelferValueTypeMap1234 { + yyl3432 := r.ReadMapStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3427, d) + x.codecDecodeSelfFromMap(yyl3432, d) } - } else if yyct3427 == codecSelferValueTypeArray1234 { - yyl3427 := r.ReadArrayStart() - if yyl3427 == 0 { + } else if yyct3432 == codecSelferValueTypeArray1234 { + yyl3432 := r.ReadArrayStart() + if yyl3432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3427, d) + x.codecDecodeSelfFromArray(yyl3432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42399,12 +42447,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3428Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3428Slc - var yyhl3428 bool = l >= 0 - for yyj3428 := 0; ; yyj3428++ { - if yyhl3428 { - if yyj3428 >= l { + var yys3433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3433Slc + var yyhl3433 bool = l >= 0 + for yyj3433 := 0; ; yyj3433++ { + if yyhl3433 { + if yyj3433 >= l { break } } else { @@ -42413,10 +42461,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3428Slc = r.DecodeBytes(yys3428Slc, true, true) - yys3428 := string(yys3428Slc) + yys3433Slc = r.DecodeBytes(yys3433Slc, true, true) + yys3433 := string(yys3433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3428 { + switch yys3433 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42433,8 +42481,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3431 := &x.ObjectMeta - yyv3431.CodecDecodeSelf(d) + yyv3436 := &x.ObjectMeta + yyv3436.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -42446,18 +42494,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3433 := &x.Data - yym3434 := z.DecBinary() - _ = yym3434 + yyv3438 := &x.Data + yym3439 := z.DecBinary() + _ = yym3439 if false { } else { - *yyv3433 = r.DecodeBytes(*(*[]byte)(yyv3433), false, false) + *yyv3438 = r.DecodeBytes(*(*[]byte)(yyv3438), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3428) - } // end switch yys3428 - } // end for yyj3428 + z.DecStructFieldNotFound(-1, yys3433) + } // end switch yys3433 + } // end for yyj3433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42465,16 +42513,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3435 int - var yyb3435 bool - var yyhl3435 bool = l >= 0 - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + var yyj3440 int + var yyb3440 bool + var yyhl3440 bool = l >= 0 + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42484,13 +42532,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42500,13 +42548,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42514,16 +42562,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3438 := &x.ObjectMeta - yyv3438.CodecDecodeSelf(d) + yyv3443 := &x.ObjectMeta + yyv3443.CodecDecodeSelf(d) } - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42533,13 +42581,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42547,26 +42595,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3440 := &x.Data - yym3441 := z.DecBinary() - _ = yym3441 + yyv3445 := &x.Data + yym3446 := z.DecBinary() + _ = yym3446 if false { } else { - *yyv3440 = r.DecodeBytes(*(*[]byte)(yyv3440), false, false) + *yyv3445 = r.DecodeBytes(*(*[]byte)(yyv3445), false, false) } } for { - yyj3435++ - if yyhl3435 { - yyb3435 = yyj3435 > l + yyj3440++ + if yyhl3440 { + yyb3440 = yyj3440 > l } else { - yyb3435 = r.CheckBreak() + yyb3440 = r.CheckBreak() } - if yyb3435 { + if yyb3440 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3435-1, "") + z.DecStructFieldNotFound(yyj3440-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42576,9 +42624,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3442 := range v { + for _, yyv3447 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3442.CodecEncodeSelf(e) + yyv3447.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42588,75 +42636,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3443 := *v - yyh3443, yyl3443 := z.DecSliceHelperStart() - var yyc3443 bool - if yyl3443 == 0 { - if yyv3443 == nil { - yyv3443 = []PersistentVolumeAccessMode{} - yyc3443 = true - } else if len(yyv3443) != 0 { - yyv3443 = yyv3443[:0] - yyc3443 = true + yyv3448 := *v + yyh3448, yyl3448 := z.DecSliceHelperStart() + var yyc3448 bool + if yyl3448 == 0 { + if yyv3448 == nil { + yyv3448 = []PersistentVolumeAccessMode{} + yyc3448 = true + } else if len(yyv3448) != 0 { + yyv3448 = yyv3448[:0] + yyc3448 = true } - } else if yyl3443 > 0 { - var yyrr3443, yyrl3443 int - var yyrt3443 bool - if yyl3443 > cap(yyv3443) { + } else if yyl3448 > 0 { + var yyrr3448, yyrl3448 int + var yyrt3448 bool + if yyl3448 > cap(yyv3448) { - yyrl3443, yyrt3443 = z.DecInferLen(yyl3443, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3443 { - if yyrl3443 <= cap(yyv3443) { - yyv3443 = yyv3443[:yyrl3443] + yyrl3448, yyrt3448 = z.DecInferLen(yyl3448, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3448 { + if yyrl3448 <= cap(yyv3448) { + yyv3448 = yyv3448[:yyrl3448] } else { - yyv3443 = make([]PersistentVolumeAccessMode, yyrl3443) + yyv3448 = make([]PersistentVolumeAccessMode, yyrl3448) } } else { - yyv3443 = make([]PersistentVolumeAccessMode, yyrl3443) + yyv3448 = make([]PersistentVolumeAccessMode, yyrl3448) } - yyc3443 = true - yyrr3443 = len(yyv3443) - } else if yyl3443 != len(yyv3443) { - yyv3443 = yyv3443[:yyl3443] - yyc3443 = true + yyc3448 = true + yyrr3448 = len(yyv3448) + } else if yyl3448 != len(yyv3448) { + yyv3448 = yyv3448[:yyl3448] + yyc3448 = true } - yyj3443 := 0 - for ; yyj3443 < yyrr3443; yyj3443++ { - yyh3443.ElemContainerState(yyj3443) + yyj3448 := 0 + for ; yyj3448 < yyrr3448; yyj3448++ { + yyh3448.ElemContainerState(yyj3448) if r.TryDecodeAsNil() { - yyv3443[yyj3443] = "" + yyv3448[yyj3448] = "" } else { - yyv3443[yyj3443] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3448[yyj3448] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt3443 { - for ; yyj3443 < yyl3443; yyj3443++ { - yyv3443 = append(yyv3443, "") - yyh3443.ElemContainerState(yyj3443) + if yyrt3448 { + for ; yyj3448 < yyl3448; yyj3448++ { + yyv3448 = append(yyv3448, "") + yyh3448.ElemContainerState(yyj3448) if r.TryDecodeAsNil() { - yyv3443[yyj3443] = "" + yyv3448[yyj3448] = "" } else { - yyv3443[yyj3443] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3448[yyj3448] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj3443 := 0 - for ; !r.CheckBreak(); yyj3443++ { + yyj3448 := 0 + for ; !r.CheckBreak(); yyj3448++ { - if yyj3443 >= len(yyv3443) { - yyv3443 = append(yyv3443, "") // var yyz3443 PersistentVolumeAccessMode - yyc3443 = true + if yyj3448 >= len(yyv3448) { + yyv3448 = append(yyv3448, "") // var yyz3448 PersistentVolumeAccessMode + yyc3448 = true } - yyh3443.ElemContainerState(yyj3443) - if yyj3443 < len(yyv3443) { + yyh3448.ElemContainerState(yyj3448) + if yyj3448 < len(yyv3448) { if r.TryDecodeAsNil() { - yyv3443[yyj3443] = "" + yyv3448[yyj3448] = "" } else { - yyv3443[yyj3443] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3448[yyj3448] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -42664,17 +42712,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj3443 < len(yyv3443) { - yyv3443 = yyv3443[:yyj3443] - yyc3443 = true - } else if yyj3443 == 0 && yyv3443 == nil { - yyv3443 = []PersistentVolumeAccessMode{} - yyc3443 = true + if yyj3448 < len(yyv3448) { + yyv3448 = yyv3448[:yyj3448] + yyc3448 = true + } else if yyj3448 == 0 && yyv3448 == nil { + yyv3448 = []PersistentVolumeAccessMode{} + yyc3448 = true } } - yyh3443.End() - if yyc3443 { - *v = yyv3443 + yyh3448.End() + if yyc3448 { + *v = yyv3448 } } @@ -42683,10 +42731,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3447 := range v { + for _, yyv3452 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3448 := &yyv3447 - yy3448.CodecEncodeSelf(e) + yy3453 := &yyv3452 + yy3453.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42696,83 +42744,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3449 := *v - yyh3449, yyl3449 := z.DecSliceHelperStart() - var yyc3449 bool - if yyl3449 == 0 { - if yyv3449 == nil { - yyv3449 = []PersistentVolume{} - yyc3449 = true - } else if len(yyv3449) != 0 { - yyv3449 = yyv3449[:0] - yyc3449 = true + yyv3454 := *v + yyh3454, yyl3454 := z.DecSliceHelperStart() + var yyc3454 bool + if yyl3454 == 0 { + if yyv3454 == nil { + yyv3454 = []PersistentVolume{} + yyc3454 = true + } else if len(yyv3454) != 0 { + yyv3454 = yyv3454[:0] + yyc3454 = true } - } else if yyl3449 > 0 { - var yyrr3449, yyrl3449 int - var yyrt3449 bool - if yyl3449 > cap(yyv3449) { + } else if yyl3454 > 0 { + var yyrr3454, yyrl3454 int + var yyrt3454 bool + if yyl3454 > cap(yyv3454) { - yyrg3449 := len(yyv3449) > 0 - yyv23449 := yyv3449 - yyrl3449, yyrt3449 = z.DecInferLen(yyl3449, z.DecBasicHandle().MaxInitLen, 384) - if yyrt3449 { - if yyrl3449 <= cap(yyv3449) { - yyv3449 = yyv3449[:yyrl3449] + yyrg3454 := len(yyv3454) > 0 + yyv23454 := yyv3454 + yyrl3454, yyrt3454 = z.DecInferLen(yyl3454, z.DecBasicHandle().MaxInitLen, 384) + if yyrt3454 { + if yyrl3454 <= cap(yyv3454) { + yyv3454 = yyv3454[:yyrl3454] } else { - yyv3449 = make([]PersistentVolume, yyrl3449) + yyv3454 = make([]PersistentVolume, yyrl3454) } } else { - yyv3449 = make([]PersistentVolume, yyrl3449) + yyv3454 = make([]PersistentVolume, yyrl3454) } - yyc3449 = true - yyrr3449 = len(yyv3449) - if yyrg3449 { - copy(yyv3449, yyv23449) + yyc3454 = true + yyrr3454 = len(yyv3454) + if yyrg3454 { + copy(yyv3454, yyv23454) } - } else if yyl3449 != len(yyv3449) { - yyv3449 = yyv3449[:yyl3449] - yyc3449 = true + } else if yyl3454 != len(yyv3454) { + yyv3454 = yyv3454[:yyl3454] + yyc3454 = true } - yyj3449 := 0 - for ; yyj3449 < yyrr3449; yyj3449++ { - yyh3449.ElemContainerState(yyj3449) + yyj3454 := 0 + for ; yyj3454 < yyrr3454; yyj3454++ { + yyh3454.ElemContainerState(yyj3454) if r.TryDecodeAsNil() { - yyv3449[yyj3449] = PersistentVolume{} + yyv3454[yyj3454] = PersistentVolume{} } else { - yyv3450 := &yyv3449[yyj3449] - yyv3450.CodecDecodeSelf(d) + yyv3455 := &yyv3454[yyj3454] + yyv3455.CodecDecodeSelf(d) } } - if yyrt3449 { - for ; yyj3449 < yyl3449; yyj3449++ { - yyv3449 = append(yyv3449, PersistentVolume{}) - yyh3449.ElemContainerState(yyj3449) + if yyrt3454 { + for ; yyj3454 < yyl3454; yyj3454++ { + yyv3454 = append(yyv3454, PersistentVolume{}) + yyh3454.ElemContainerState(yyj3454) if r.TryDecodeAsNil() { - yyv3449[yyj3449] = PersistentVolume{} + yyv3454[yyj3454] = PersistentVolume{} } else { - yyv3451 := &yyv3449[yyj3449] - yyv3451.CodecDecodeSelf(d) + yyv3456 := &yyv3454[yyj3454] + yyv3456.CodecDecodeSelf(d) } } } } else { - yyj3449 := 0 - for ; !r.CheckBreak(); yyj3449++ { + yyj3454 := 0 + for ; !r.CheckBreak(); yyj3454++ { - if yyj3449 >= len(yyv3449) { - yyv3449 = append(yyv3449, PersistentVolume{}) // var yyz3449 PersistentVolume - yyc3449 = true + if yyj3454 >= len(yyv3454) { + yyv3454 = append(yyv3454, PersistentVolume{}) // var yyz3454 PersistentVolume + yyc3454 = true } - yyh3449.ElemContainerState(yyj3449) - if yyj3449 < len(yyv3449) { + yyh3454.ElemContainerState(yyj3454) + if yyj3454 < len(yyv3454) { if r.TryDecodeAsNil() { - yyv3449[yyj3449] = PersistentVolume{} + yyv3454[yyj3454] = PersistentVolume{} } else { - yyv3452 := &yyv3449[yyj3449] - yyv3452.CodecDecodeSelf(d) + yyv3457 := &yyv3454[yyj3454] + yyv3457.CodecDecodeSelf(d) } } else { @@ -42780,17 +42828,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj3449 < len(yyv3449) { - yyv3449 = yyv3449[:yyj3449] - yyc3449 = true - } else if yyj3449 == 0 && yyv3449 == nil { - yyv3449 = []PersistentVolume{} - yyc3449 = true + if yyj3454 < len(yyv3454) { + yyv3454 = yyv3454[:yyj3454] + yyc3454 = true + } else if yyj3454 == 0 && yyv3454 == nil { + yyv3454 = []PersistentVolume{} + yyc3454 = true } } - yyh3449.End() - if yyc3449 { - *v = yyv3449 + yyh3454.End() + if yyc3454 { + *v = yyv3454 } } @@ -42799,10 +42847,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3453 := range v { + for _, yyv3458 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3454 := &yyv3453 - yy3454.CodecEncodeSelf(e) + yy3459 := &yyv3458 + yy3459.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42812,83 +42860,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3455 := *v - yyh3455, yyl3455 := z.DecSliceHelperStart() - var yyc3455 bool - if yyl3455 == 0 { - if yyv3455 == nil { - yyv3455 = []PersistentVolumeClaim{} - yyc3455 = true - } else if len(yyv3455) != 0 { - yyv3455 = yyv3455[:0] - yyc3455 = true + yyv3460 := *v + yyh3460, yyl3460 := z.DecSliceHelperStart() + var yyc3460 bool + if yyl3460 == 0 { + if yyv3460 == nil { + yyv3460 = []PersistentVolumeClaim{} + yyc3460 = true + } else if len(yyv3460) != 0 { + yyv3460 = yyv3460[:0] + yyc3460 = true } - } else if yyl3455 > 0 { - var yyrr3455, yyrl3455 int - var yyrt3455 bool - if yyl3455 > cap(yyv3455) { + } else if yyl3460 > 0 { + var yyrr3460, yyrl3460 int + var yyrt3460 bool + if yyl3460 > cap(yyv3460) { - yyrg3455 := len(yyv3455) > 0 - yyv23455 := yyv3455 - yyrl3455, yyrt3455 = z.DecInferLen(yyl3455, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3455 { - if yyrl3455 <= cap(yyv3455) { - yyv3455 = yyv3455[:yyrl3455] + yyrg3460 := len(yyv3460) > 0 + yyv23460 := yyv3460 + yyrl3460, yyrt3460 = z.DecInferLen(yyl3460, z.DecBasicHandle().MaxInitLen, 296) + if yyrt3460 { + if yyrl3460 <= cap(yyv3460) { + yyv3460 = yyv3460[:yyrl3460] } else { - yyv3455 = make([]PersistentVolumeClaim, yyrl3455) + yyv3460 = make([]PersistentVolumeClaim, yyrl3460) } } else { - yyv3455 = make([]PersistentVolumeClaim, yyrl3455) + yyv3460 = make([]PersistentVolumeClaim, yyrl3460) } - yyc3455 = true - yyrr3455 = len(yyv3455) - if yyrg3455 { - copy(yyv3455, yyv23455) + yyc3460 = true + yyrr3460 = len(yyv3460) + if yyrg3460 { + copy(yyv3460, yyv23460) } - } else if yyl3455 != len(yyv3455) { - yyv3455 = yyv3455[:yyl3455] - yyc3455 = true + } else if yyl3460 != len(yyv3460) { + yyv3460 = yyv3460[:yyl3460] + yyc3460 = true } - yyj3455 := 0 - for ; yyj3455 < yyrr3455; yyj3455++ { - yyh3455.ElemContainerState(yyj3455) + yyj3460 := 0 + for ; yyj3460 < yyrr3460; yyj3460++ { + yyh3460.ElemContainerState(yyj3460) if r.TryDecodeAsNil() { - yyv3455[yyj3455] = PersistentVolumeClaim{} + yyv3460[yyj3460] = PersistentVolumeClaim{} } else { - yyv3456 := &yyv3455[yyj3455] - yyv3456.CodecDecodeSelf(d) + yyv3461 := &yyv3460[yyj3460] + yyv3461.CodecDecodeSelf(d) } } - if yyrt3455 { - for ; yyj3455 < yyl3455; yyj3455++ { - yyv3455 = append(yyv3455, PersistentVolumeClaim{}) - yyh3455.ElemContainerState(yyj3455) + if yyrt3460 { + for ; yyj3460 < yyl3460; yyj3460++ { + yyv3460 = append(yyv3460, PersistentVolumeClaim{}) + yyh3460.ElemContainerState(yyj3460) if r.TryDecodeAsNil() { - yyv3455[yyj3455] = PersistentVolumeClaim{} + yyv3460[yyj3460] = PersistentVolumeClaim{} } else { - yyv3457 := &yyv3455[yyj3455] - yyv3457.CodecDecodeSelf(d) + yyv3462 := &yyv3460[yyj3460] + yyv3462.CodecDecodeSelf(d) } } } } else { - yyj3455 := 0 - for ; !r.CheckBreak(); yyj3455++ { + yyj3460 := 0 + for ; !r.CheckBreak(); yyj3460++ { - if yyj3455 >= len(yyv3455) { - yyv3455 = append(yyv3455, PersistentVolumeClaim{}) // var yyz3455 PersistentVolumeClaim - yyc3455 = true + if yyj3460 >= len(yyv3460) { + yyv3460 = append(yyv3460, PersistentVolumeClaim{}) // var yyz3460 PersistentVolumeClaim + yyc3460 = true } - yyh3455.ElemContainerState(yyj3455) - if yyj3455 < len(yyv3455) { + yyh3460.ElemContainerState(yyj3460) + if yyj3460 < len(yyv3460) { if r.TryDecodeAsNil() { - yyv3455[yyj3455] = PersistentVolumeClaim{} + yyv3460[yyj3460] = PersistentVolumeClaim{} } else { - yyv3458 := &yyv3455[yyj3455] - yyv3458.CodecDecodeSelf(d) + yyv3463 := &yyv3460[yyj3460] + yyv3463.CodecDecodeSelf(d) } } else { @@ -42896,17 +42944,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj3455 < len(yyv3455) { - yyv3455 = yyv3455[:yyj3455] - yyc3455 = true - } else if yyj3455 == 0 && yyv3455 == nil { - yyv3455 = []PersistentVolumeClaim{} - yyc3455 = true + if yyj3460 < len(yyv3460) { + yyv3460 = yyv3460[:yyj3460] + yyc3460 = true + } else if yyj3460 == 0 && yyv3460 == nil { + yyv3460 = []PersistentVolumeClaim{} + yyc3460 = true } } - yyh3455.End() - if yyc3455 { - *v = yyv3455 + yyh3460.End() + if yyc3460 { + *v = yyv3460 } } @@ -42915,10 +42963,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3459 := range v { + for _, yyv3464 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3460 := &yyv3459 - yy3460.CodecEncodeSelf(e) + yy3465 := &yyv3464 + yy3465.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42928,83 +42976,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3461 := *v - yyh3461, yyl3461 := z.DecSliceHelperStart() - var yyc3461 bool - if yyl3461 == 0 { - if yyv3461 == nil { - yyv3461 = []DownwardAPIVolumeFile{} - yyc3461 = true - } else if len(yyv3461) != 0 { - yyv3461 = yyv3461[:0] - yyc3461 = true + yyv3466 := *v + yyh3466, yyl3466 := z.DecSliceHelperStart() + var yyc3466 bool + if yyl3466 == 0 { + if yyv3466 == nil { + yyv3466 = []DownwardAPIVolumeFile{} + yyc3466 = true + } else if len(yyv3466) != 0 { + yyv3466 = yyv3466[:0] + yyc3466 = true } - } else if yyl3461 > 0 { - var yyrr3461, yyrl3461 int - var yyrt3461 bool - if yyl3461 > cap(yyv3461) { + } else if yyl3466 > 0 { + var yyrr3466, yyrl3466 int + var yyrt3466 bool + if yyl3466 > cap(yyv3466) { - yyrg3461 := len(yyv3461) > 0 - yyv23461 := yyv3461 - yyrl3461, yyrt3461 = z.DecInferLen(yyl3461, z.DecBasicHandle().MaxInitLen, 48) - if yyrt3461 { - if yyrl3461 <= cap(yyv3461) { - yyv3461 = yyv3461[:yyrl3461] + yyrg3466 := len(yyv3466) > 0 + yyv23466 := yyv3466 + yyrl3466, yyrt3466 = z.DecInferLen(yyl3466, z.DecBasicHandle().MaxInitLen, 48) + if yyrt3466 { + if yyrl3466 <= cap(yyv3466) { + yyv3466 = yyv3466[:yyrl3466] } else { - yyv3461 = make([]DownwardAPIVolumeFile, yyrl3461) + yyv3466 = make([]DownwardAPIVolumeFile, yyrl3466) } } else { - yyv3461 = make([]DownwardAPIVolumeFile, yyrl3461) + yyv3466 = make([]DownwardAPIVolumeFile, yyrl3466) } - yyc3461 = true - yyrr3461 = len(yyv3461) - if yyrg3461 { - copy(yyv3461, yyv23461) + yyc3466 = true + yyrr3466 = len(yyv3466) + if yyrg3466 { + copy(yyv3466, yyv23466) } - } else if yyl3461 != len(yyv3461) { - yyv3461 = yyv3461[:yyl3461] - yyc3461 = true + } else if yyl3466 != len(yyv3466) { + yyv3466 = yyv3466[:yyl3466] + yyc3466 = true } - yyj3461 := 0 - for ; yyj3461 < yyrr3461; yyj3461++ { - yyh3461.ElemContainerState(yyj3461) + yyj3466 := 0 + for ; yyj3466 < yyrr3466; yyj3466++ { + yyh3466.ElemContainerState(yyj3466) if r.TryDecodeAsNil() { - yyv3461[yyj3461] = DownwardAPIVolumeFile{} + yyv3466[yyj3466] = DownwardAPIVolumeFile{} } else { - yyv3462 := &yyv3461[yyj3461] - yyv3462.CodecDecodeSelf(d) + yyv3467 := &yyv3466[yyj3466] + yyv3467.CodecDecodeSelf(d) } } - if yyrt3461 { - for ; yyj3461 < yyl3461; yyj3461++ { - yyv3461 = append(yyv3461, DownwardAPIVolumeFile{}) - yyh3461.ElemContainerState(yyj3461) + if yyrt3466 { + for ; yyj3466 < yyl3466; yyj3466++ { + yyv3466 = append(yyv3466, DownwardAPIVolumeFile{}) + yyh3466.ElemContainerState(yyj3466) if r.TryDecodeAsNil() { - yyv3461[yyj3461] = DownwardAPIVolumeFile{} + yyv3466[yyj3466] = DownwardAPIVolumeFile{} } else { - yyv3463 := &yyv3461[yyj3461] - yyv3463.CodecDecodeSelf(d) + yyv3468 := &yyv3466[yyj3466] + yyv3468.CodecDecodeSelf(d) } } } } else { - yyj3461 := 0 - for ; !r.CheckBreak(); yyj3461++ { + yyj3466 := 0 + for ; !r.CheckBreak(); yyj3466++ { - if yyj3461 >= len(yyv3461) { - yyv3461 = append(yyv3461, DownwardAPIVolumeFile{}) // var yyz3461 DownwardAPIVolumeFile - yyc3461 = true + if yyj3466 >= len(yyv3466) { + yyv3466 = append(yyv3466, DownwardAPIVolumeFile{}) // var yyz3466 DownwardAPIVolumeFile + yyc3466 = true } - yyh3461.ElemContainerState(yyj3461) - if yyj3461 < len(yyv3461) { + yyh3466.ElemContainerState(yyj3466) + if yyj3466 < len(yyv3466) { if r.TryDecodeAsNil() { - yyv3461[yyj3461] = DownwardAPIVolumeFile{} + yyv3466[yyj3466] = DownwardAPIVolumeFile{} } else { - yyv3464 := &yyv3461[yyj3461] - yyv3464.CodecDecodeSelf(d) + yyv3469 := &yyv3466[yyj3466] + yyv3469.CodecDecodeSelf(d) } } else { @@ -43012,17 +43060,17 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj3461 < len(yyv3461) { - yyv3461 = yyv3461[:yyj3461] - yyc3461 = true - } else if yyj3461 == 0 && yyv3461 == nil { - yyv3461 = []DownwardAPIVolumeFile{} - yyc3461 = true + if yyj3466 < len(yyv3466) { + yyv3466 = yyv3466[:yyj3466] + yyc3466 = true + } else if yyj3466 == 0 && yyv3466 == nil { + yyv3466 = []DownwardAPIVolumeFile{} + yyc3466 = true } } - yyh3461.End() - if yyc3461 { - *v = yyv3461 + yyh3466.End() + if yyc3466 { + *v = yyv3466 } } @@ -43031,9 +43079,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3465 := range v { + for _, yyv3470 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3465.CodecEncodeSelf(e) + yyv3470.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43043,75 +43091,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3466 := *v - yyh3466, yyl3466 := z.DecSliceHelperStart() - var yyc3466 bool - if yyl3466 == 0 { - if yyv3466 == nil { - yyv3466 = []Capability{} - yyc3466 = true - } else if len(yyv3466) != 0 { - yyv3466 = yyv3466[:0] - yyc3466 = true + yyv3471 := *v + yyh3471, yyl3471 := z.DecSliceHelperStart() + var yyc3471 bool + if yyl3471 == 0 { + if yyv3471 == nil { + yyv3471 = []Capability{} + yyc3471 = true + } else if len(yyv3471) != 0 { + yyv3471 = yyv3471[:0] + yyc3471 = true } - } else if yyl3466 > 0 { - var yyrr3466, yyrl3466 int - var yyrt3466 bool - if yyl3466 > cap(yyv3466) { + } else if yyl3471 > 0 { + var yyrr3471, yyrl3471 int + var yyrt3471 bool + if yyl3471 > cap(yyv3471) { - yyrl3466, yyrt3466 = z.DecInferLen(yyl3466, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3466 { - if yyrl3466 <= cap(yyv3466) { - yyv3466 = yyv3466[:yyrl3466] + yyrl3471, yyrt3471 = z.DecInferLen(yyl3471, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3471 { + if yyrl3471 <= cap(yyv3471) { + yyv3471 = yyv3471[:yyrl3471] } else { - yyv3466 = make([]Capability, yyrl3466) + yyv3471 = make([]Capability, yyrl3471) } } else { - yyv3466 = make([]Capability, yyrl3466) + yyv3471 = make([]Capability, yyrl3471) } - yyc3466 = true - yyrr3466 = len(yyv3466) - } else if yyl3466 != len(yyv3466) { - yyv3466 = yyv3466[:yyl3466] - yyc3466 = true + yyc3471 = true + yyrr3471 = len(yyv3471) + } else if yyl3471 != len(yyv3471) { + yyv3471 = yyv3471[:yyl3471] + yyc3471 = true } - yyj3466 := 0 - for ; yyj3466 < yyrr3466; yyj3466++ { - yyh3466.ElemContainerState(yyj3466) + yyj3471 := 0 + for ; yyj3471 < yyrr3471; yyj3471++ { + yyh3471.ElemContainerState(yyj3471) if r.TryDecodeAsNil() { - yyv3466[yyj3466] = "" + yyv3471[yyj3471] = "" } else { - yyv3466[yyj3466] = Capability(r.DecodeString()) + yyv3471[yyj3471] = Capability(r.DecodeString()) } } - if yyrt3466 { - for ; yyj3466 < yyl3466; yyj3466++ { - yyv3466 = append(yyv3466, "") - yyh3466.ElemContainerState(yyj3466) + if yyrt3471 { + for ; yyj3471 < yyl3471; yyj3471++ { + yyv3471 = append(yyv3471, "") + yyh3471.ElemContainerState(yyj3471) if r.TryDecodeAsNil() { - yyv3466[yyj3466] = "" + yyv3471[yyj3471] = "" } else { - yyv3466[yyj3466] = Capability(r.DecodeString()) + yyv3471[yyj3471] = Capability(r.DecodeString()) } } } } else { - yyj3466 := 0 - for ; !r.CheckBreak(); yyj3466++ { + yyj3471 := 0 + for ; !r.CheckBreak(); yyj3471++ { - if yyj3466 >= len(yyv3466) { - yyv3466 = append(yyv3466, "") // var yyz3466 Capability - yyc3466 = true + if yyj3471 >= len(yyv3471) { + yyv3471 = append(yyv3471, "") // var yyz3471 Capability + yyc3471 = true } - yyh3466.ElemContainerState(yyj3466) - if yyj3466 < len(yyv3466) { + yyh3471.ElemContainerState(yyj3471) + if yyj3471 < len(yyv3471) { if r.TryDecodeAsNil() { - yyv3466[yyj3466] = "" + yyv3471[yyj3471] = "" } else { - yyv3466[yyj3466] = Capability(r.DecodeString()) + yyv3471[yyj3471] = Capability(r.DecodeString()) } } else { @@ -43119,17 +43167,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj3466 < len(yyv3466) { - yyv3466 = yyv3466[:yyj3466] - yyc3466 = true - } else if yyj3466 == 0 && yyv3466 == nil { - yyv3466 = []Capability{} - yyc3466 = true + if yyj3471 < len(yyv3471) { + yyv3471 = yyv3471[:yyj3471] + yyc3471 = true + } else if yyj3471 == 0 && yyv3471 == nil { + yyv3471 = []Capability{} + yyc3471 = true } } - yyh3466.End() - if yyc3466 { - *v = yyv3466 + yyh3471.End() + if yyc3471 { + *v = yyv3471 } } @@ -43138,10 +43186,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3470 := range v { + for _, yyv3475 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3471 := &yyv3470 - yy3471.CodecEncodeSelf(e) + yy3476 := &yyv3475 + yy3476.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43151,83 +43199,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3472 := *v - yyh3472, yyl3472 := z.DecSliceHelperStart() - var yyc3472 bool - if yyl3472 == 0 { - if yyv3472 == nil { - yyv3472 = []ContainerPort{} - yyc3472 = true - } else if len(yyv3472) != 0 { - yyv3472 = yyv3472[:0] - yyc3472 = true + yyv3477 := *v + yyh3477, yyl3477 := z.DecSliceHelperStart() + var yyc3477 bool + if yyl3477 == 0 { + if yyv3477 == nil { + yyv3477 = []ContainerPort{} + yyc3477 = true + } else if len(yyv3477) != 0 { + yyv3477 = yyv3477[:0] + yyc3477 = true } - } else if yyl3472 > 0 { - var yyrr3472, yyrl3472 int - var yyrt3472 bool - if yyl3472 > cap(yyv3472) { + } else if yyl3477 > 0 { + var yyrr3477, yyrl3477 int + var yyrt3477 bool + if yyl3477 > cap(yyv3477) { - yyrg3472 := len(yyv3472) > 0 - yyv23472 := yyv3472 - yyrl3472, yyrt3472 = z.DecInferLen(yyl3472, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3472 { - if yyrl3472 <= cap(yyv3472) { - yyv3472 = yyv3472[:yyrl3472] + yyrg3477 := len(yyv3477) > 0 + yyv23477 := yyv3477 + yyrl3477, yyrt3477 = z.DecInferLen(yyl3477, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3477 { + if yyrl3477 <= cap(yyv3477) { + yyv3477 = yyv3477[:yyrl3477] } else { - yyv3472 = make([]ContainerPort, yyrl3472) + yyv3477 = make([]ContainerPort, yyrl3477) } } else { - yyv3472 = make([]ContainerPort, yyrl3472) + yyv3477 = make([]ContainerPort, yyrl3477) } - yyc3472 = true - yyrr3472 = len(yyv3472) - if yyrg3472 { - copy(yyv3472, yyv23472) + yyc3477 = true + yyrr3477 = len(yyv3477) + if yyrg3477 { + copy(yyv3477, yyv23477) } - } else if yyl3472 != len(yyv3472) { - yyv3472 = yyv3472[:yyl3472] - yyc3472 = true + } else if yyl3477 != len(yyv3477) { + yyv3477 = yyv3477[:yyl3477] + yyc3477 = true } - yyj3472 := 0 - for ; yyj3472 < yyrr3472; yyj3472++ { - yyh3472.ElemContainerState(yyj3472) + yyj3477 := 0 + for ; yyj3477 < yyrr3477; yyj3477++ { + yyh3477.ElemContainerState(yyj3477) if r.TryDecodeAsNil() { - yyv3472[yyj3472] = ContainerPort{} + yyv3477[yyj3477] = ContainerPort{} } else { - yyv3473 := &yyv3472[yyj3472] - yyv3473.CodecDecodeSelf(d) + yyv3478 := &yyv3477[yyj3477] + yyv3478.CodecDecodeSelf(d) } } - if yyrt3472 { - for ; yyj3472 < yyl3472; yyj3472++ { - yyv3472 = append(yyv3472, ContainerPort{}) - yyh3472.ElemContainerState(yyj3472) + if yyrt3477 { + for ; yyj3477 < yyl3477; yyj3477++ { + yyv3477 = append(yyv3477, ContainerPort{}) + yyh3477.ElemContainerState(yyj3477) if r.TryDecodeAsNil() { - yyv3472[yyj3472] = ContainerPort{} + yyv3477[yyj3477] = ContainerPort{} } else { - yyv3474 := &yyv3472[yyj3472] - yyv3474.CodecDecodeSelf(d) + yyv3479 := &yyv3477[yyj3477] + yyv3479.CodecDecodeSelf(d) } } } } else { - yyj3472 := 0 - for ; !r.CheckBreak(); yyj3472++ { + yyj3477 := 0 + for ; !r.CheckBreak(); yyj3477++ { - if yyj3472 >= len(yyv3472) { - yyv3472 = append(yyv3472, ContainerPort{}) // var yyz3472 ContainerPort - yyc3472 = true + if yyj3477 >= len(yyv3477) { + yyv3477 = append(yyv3477, ContainerPort{}) // var yyz3477 ContainerPort + yyc3477 = true } - yyh3472.ElemContainerState(yyj3472) - if yyj3472 < len(yyv3472) { + yyh3477.ElemContainerState(yyj3477) + if yyj3477 < len(yyv3477) { if r.TryDecodeAsNil() { - yyv3472[yyj3472] = ContainerPort{} + yyv3477[yyj3477] = ContainerPort{} } else { - yyv3475 := &yyv3472[yyj3472] - yyv3475.CodecDecodeSelf(d) + yyv3480 := &yyv3477[yyj3477] + yyv3480.CodecDecodeSelf(d) } } else { @@ -43235,17 +43283,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj3472 < len(yyv3472) { - yyv3472 = yyv3472[:yyj3472] - yyc3472 = true - } else if yyj3472 == 0 && yyv3472 == nil { - yyv3472 = []ContainerPort{} - yyc3472 = true + if yyj3477 < len(yyv3477) { + yyv3477 = yyv3477[:yyj3477] + yyc3477 = true + } else if yyj3477 == 0 && yyv3477 == nil { + yyv3477 = []ContainerPort{} + yyc3477 = true } } - yyh3472.End() - if yyc3472 { - *v = yyv3472 + yyh3477.End() + if yyc3477 { + *v = yyv3477 } } @@ -43254,10 +43302,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3476 := range v { + for _, yyv3481 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3477 := &yyv3476 - yy3477.CodecEncodeSelf(e) + yy3482 := &yyv3481 + yy3482.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43267,83 +43315,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3478 := *v - yyh3478, yyl3478 := z.DecSliceHelperStart() - var yyc3478 bool - if yyl3478 == 0 { - if yyv3478 == nil { - yyv3478 = []EnvVar{} - yyc3478 = true - } else if len(yyv3478) != 0 { - yyv3478 = yyv3478[:0] - yyc3478 = true + yyv3483 := *v + yyh3483, yyl3483 := z.DecSliceHelperStart() + var yyc3483 bool + if yyl3483 == 0 { + if yyv3483 == nil { + yyv3483 = []EnvVar{} + yyc3483 = true + } else if len(yyv3483) != 0 { + yyv3483 = yyv3483[:0] + yyc3483 = true } - } else if yyl3478 > 0 { - var yyrr3478, yyrl3478 int - var yyrt3478 bool - if yyl3478 > cap(yyv3478) { + } else if yyl3483 > 0 { + var yyrr3483, yyrl3483 int + var yyrt3483 bool + if yyl3483 > cap(yyv3483) { - yyrg3478 := len(yyv3478) > 0 - yyv23478 := yyv3478 - yyrl3478, yyrt3478 = z.DecInferLen(yyl3478, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3478 { - if yyrl3478 <= cap(yyv3478) { - yyv3478 = yyv3478[:yyrl3478] + yyrg3483 := len(yyv3483) > 0 + yyv23483 := yyv3483 + yyrl3483, yyrt3483 = z.DecInferLen(yyl3483, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3483 { + if yyrl3483 <= cap(yyv3483) { + yyv3483 = yyv3483[:yyrl3483] } else { - yyv3478 = make([]EnvVar, yyrl3478) + yyv3483 = make([]EnvVar, yyrl3483) } } else { - yyv3478 = make([]EnvVar, yyrl3478) + yyv3483 = make([]EnvVar, yyrl3483) } - yyc3478 = true - yyrr3478 = len(yyv3478) - if yyrg3478 { - copy(yyv3478, yyv23478) + yyc3483 = true + yyrr3483 = len(yyv3483) + if yyrg3483 { + copy(yyv3483, yyv23483) } - } else if yyl3478 != len(yyv3478) { - yyv3478 = yyv3478[:yyl3478] - yyc3478 = true + } else if yyl3483 != len(yyv3483) { + yyv3483 = yyv3483[:yyl3483] + yyc3483 = true } - yyj3478 := 0 - for ; yyj3478 < yyrr3478; yyj3478++ { - yyh3478.ElemContainerState(yyj3478) + yyj3483 := 0 + for ; yyj3483 < yyrr3483; yyj3483++ { + yyh3483.ElemContainerState(yyj3483) if r.TryDecodeAsNil() { - yyv3478[yyj3478] = EnvVar{} + yyv3483[yyj3483] = EnvVar{} } else { - yyv3479 := &yyv3478[yyj3478] - yyv3479.CodecDecodeSelf(d) + yyv3484 := &yyv3483[yyj3483] + yyv3484.CodecDecodeSelf(d) } } - if yyrt3478 { - for ; yyj3478 < yyl3478; yyj3478++ { - yyv3478 = append(yyv3478, EnvVar{}) - yyh3478.ElemContainerState(yyj3478) + if yyrt3483 { + for ; yyj3483 < yyl3483; yyj3483++ { + yyv3483 = append(yyv3483, EnvVar{}) + yyh3483.ElemContainerState(yyj3483) if r.TryDecodeAsNil() { - yyv3478[yyj3478] = EnvVar{} + yyv3483[yyj3483] = EnvVar{} } else { - yyv3480 := &yyv3478[yyj3478] - yyv3480.CodecDecodeSelf(d) + yyv3485 := &yyv3483[yyj3483] + yyv3485.CodecDecodeSelf(d) } } } } else { - yyj3478 := 0 - for ; !r.CheckBreak(); yyj3478++ { + yyj3483 := 0 + for ; !r.CheckBreak(); yyj3483++ { - if yyj3478 >= len(yyv3478) { - yyv3478 = append(yyv3478, EnvVar{}) // var yyz3478 EnvVar - yyc3478 = true + if yyj3483 >= len(yyv3483) { + yyv3483 = append(yyv3483, EnvVar{}) // var yyz3483 EnvVar + yyc3483 = true } - yyh3478.ElemContainerState(yyj3478) - if yyj3478 < len(yyv3478) { + yyh3483.ElemContainerState(yyj3483) + if yyj3483 < len(yyv3483) { if r.TryDecodeAsNil() { - yyv3478[yyj3478] = EnvVar{} + yyv3483[yyj3483] = EnvVar{} } else { - yyv3481 := &yyv3478[yyj3478] - yyv3481.CodecDecodeSelf(d) + yyv3486 := &yyv3483[yyj3483] + yyv3486.CodecDecodeSelf(d) } } else { @@ -43351,17 +43399,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj3478 < len(yyv3478) { - yyv3478 = yyv3478[:yyj3478] - yyc3478 = true - } else if yyj3478 == 0 && yyv3478 == nil { - yyv3478 = []EnvVar{} - yyc3478 = true + if yyj3483 < len(yyv3483) { + yyv3483 = yyv3483[:yyj3483] + yyc3483 = true + } else if yyj3483 == 0 && yyv3483 == nil { + yyv3483 = []EnvVar{} + yyc3483 = true } } - yyh3478.End() - if yyc3478 { - *v = yyv3478 + yyh3483.End() + if yyc3483 { + *v = yyv3483 } } @@ -43370,10 +43418,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3482 := range v { + for _, yyv3487 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3483 := &yyv3482 - yy3483.CodecEncodeSelf(e) + yy3488 := &yyv3487 + yy3488.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43383,83 +43431,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3484 := *v - yyh3484, yyl3484 := z.DecSliceHelperStart() - var yyc3484 bool - if yyl3484 == 0 { - if yyv3484 == nil { - yyv3484 = []VolumeMount{} - yyc3484 = true - } else if len(yyv3484) != 0 { - yyv3484 = yyv3484[:0] - yyc3484 = true + yyv3489 := *v + yyh3489, yyl3489 := z.DecSliceHelperStart() + var yyc3489 bool + if yyl3489 == 0 { + if yyv3489 == nil { + yyv3489 = []VolumeMount{} + yyc3489 = true + } else if len(yyv3489) != 0 { + yyv3489 = yyv3489[:0] + yyc3489 = true } - } else if yyl3484 > 0 { - var yyrr3484, yyrl3484 int - var yyrt3484 bool - if yyl3484 > cap(yyv3484) { + } else if yyl3489 > 0 { + var yyrr3489, yyrl3489 int + var yyrt3489 bool + if yyl3489 > cap(yyv3489) { - yyrg3484 := len(yyv3484) > 0 - yyv23484 := yyv3484 - yyrl3484, yyrt3484 = z.DecInferLen(yyl3484, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3484 { - if yyrl3484 <= cap(yyv3484) { - yyv3484 = yyv3484[:yyrl3484] + yyrg3489 := len(yyv3489) > 0 + yyv23489 := yyv3489 + yyrl3489, yyrt3489 = z.DecInferLen(yyl3489, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3489 { + if yyrl3489 <= cap(yyv3489) { + yyv3489 = yyv3489[:yyrl3489] } else { - yyv3484 = make([]VolumeMount, yyrl3484) + yyv3489 = make([]VolumeMount, yyrl3489) } } else { - yyv3484 = make([]VolumeMount, yyrl3484) + yyv3489 = make([]VolumeMount, yyrl3489) } - yyc3484 = true - yyrr3484 = len(yyv3484) - if yyrg3484 { - copy(yyv3484, yyv23484) + yyc3489 = true + yyrr3489 = len(yyv3489) + if yyrg3489 { + copy(yyv3489, yyv23489) } - } else if yyl3484 != len(yyv3484) { - yyv3484 = yyv3484[:yyl3484] - yyc3484 = true + } else if yyl3489 != len(yyv3489) { + yyv3489 = yyv3489[:yyl3489] + yyc3489 = true } - yyj3484 := 0 - for ; yyj3484 < yyrr3484; yyj3484++ { - yyh3484.ElemContainerState(yyj3484) + yyj3489 := 0 + for ; yyj3489 < yyrr3489; yyj3489++ { + yyh3489.ElemContainerState(yyj3489) if r.TryDecodeAsNil() { - yyv3484[yyj3484] = VolumeMount{} + yyv3489[yyj3489] = VolumeMount{} } else { - yyv3485 := &yyv3484[yyj3484] - yyv3485.CodecDecodeSelf(d) + yyv3490 := &yyv3489[yyj3489] + yyv3490.CodecDecodeSelf(d) } } - if yyrt3484 { - for ; yyj3484 < yyl3484; yyj3484++ { - yyv3484 = append(yyv3484, VolumeMount{}) - yyh3484.ElemContainerState(yyj3484) + if yyrt3489 { + for ; yyj3489 < yyl3489; yyj3489++ { + yyv3489 = append(yyv3489, VolumeMount{}) + yyh3489.ElemContainerState(yyj3489) if r.TryDecodeAsNil() { - yyv3484[yyj3484] = VolumeMount{} + yyv3489[yyj3489] = VolumeMount{} } else { - yyv3486 := &yyv3484[yyj3484] - yyv3486.CodecDecodeSelf(d) + yyv3491 := &yyv3489[yyj3489] + yyv3491.CodecDecodeSelf(d) } } } } else { - yyj3484 := 0 - for ; !r.CheckBreak(); yyj3484++ { + yyj3489 := 0 + for ; !r.CheckBreak(); yyj3489++ { - if yyj3484 >= len(yyv3484) { - yyv3484 = append(yyv3484, VolumeMount{}) // var yyz3484 VolumeMount - yyc3484 = true + if yyj3489 >= len(yyv3489) { + yyv3489 = append(yyv3489, VolumeMount{}) // var yyz3489 VolumeMount + yyc3489 = true } - yyh3484.ElemContainerState(yyj3484) - if yyj3484 < len(yyv3484) { + yyh3489.ElemContainerState(yyj3489) + if yyj3489 < len(yyv3489) { if r.TryDecodeAsNil() { - yyv3484[yyj3484] = VolumeMount{} + yyv3489[yyj3489] = VolumeMount{} } else { - yyv3487 := &yyv3484[yyj3484] - yyv3487.CodecDecodeSelf(d) + yyv3492 := &yyv3489[yyj3489] + yyv3492.CodecDecodeSelf(d) } } else { @@ -43467,17 +43515,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj3484 < len(yyv3484) { - yyv3484 = yyv3484[:yyj3484] - yyc3484 = true - } else if yyj3484 == 0 && yyv3484 == nil { - yyv3484 = []VolumeMount{} - yyc3484 = true + if yyj3489 < len(yyv3489) { + yyv3489 = yyv3489[:yyj3489] + yyc3489 = true + } else if yyj3489 == 0 && yyv3489 == nil { + yyv3489 = []VolumeMount{} + yyc3489 = true } } - yyh3484.End() - if yyc3484 { - *v = yyv3484 + yyh3489.End() + if yyc3489 { + *v = yyv3489 } } @@ -43486,10 +43534,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3488 := range v { + for _, yyv3493 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3489 := &yyv3488 - yy3489.CodecEncodeSelf(e) + yy3494 := &yyv3493 + yy3494.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43499,83 +43547,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3490 := *v - yyh3490, yyl3490 := z.DecSliceHelperStart() - var yyc3490 bool - if yyl3490 == 0 { - if yyv3490 == nil { - yyv3490 = []Pod{} - yyc3490 = true - } else if len(yyv3490) != 0 { - yyv3490 = yyv3490[:0] - yyc3490 = true + yyv3495 := *v + yyh3495, yyl3495 := z.DecSliceHelperStart() + var yyc3495 bool + if yyl3495 == 0 { + if yyv3495 == nil { + yyv3495 = []Pod{} + yyc3495 = true + } else if len(yyv3495) != 0 { + yyv3495 = yyv3495[:0] + yyc3495 = true } - } else if yyl3490 > 0 { - var yyrr3490, yyrl3490 int - var yyrt3490 bool - if yyl3490 > cap(yyv3490) { + } else if yyl3495 > 0 { + var yyrr3495, yyrl3495 int + var yyrt3495 bool + if yyl3495 > cap(yyv3495) { - yyrg3490 := len(yyv3490) > 0 - yyv23490 := yyv3490 - yyrl3490, yyrt3490 = z.DecInferLen(yyl3490, z.DecBasicHandle().MaxInitLen, 496) - if yyrt3490 { - if yyrl3490 <= cap(yyv3490) { - yyv3490 = yyv3490[:yyrl3490] + yyrg3495 := len(yyv3495) > 0 + yyv23495 := yyv3495 + yyrl3495, yyrt3495 = z.DecInferLen(yyl3495, z.DecBasicHandle().MaxInitLen, 496) + if yyrt3495 { + if yyrl3495 <= cap(yyv3495) { + yyv3495 = yyv3495[:yyrl3495] } else { - yyv3490 = make([]Pod, yyrl3490) + yyv3495 = make([]Pod, yyrl3495) } } else { - yyv3490 = make([]Pod, yyrl3490) + yyv3495 = make([]Pod, yyrl3495) } - yyc3490 = true - yyrr3490 = len(yyv3490) - if yyrg3490 { - copy(yyv3490, yyv23490) + yyc3495 = true + yyrr3495 = len(yyv3495) + if yyrg3495 { + copy(yyv3495, yyv23495) } - } else if yyl3490 != len(yyv3490) { - yyv3490 = yyv3490[:yyl3490] - yyc3490 = true + } else if yyl3495 != len(yyv3495) { + yyv3495 = yyv3495[:yyl3495] + yyc3495 = true } - yyj3490 := 0 - for ; yyj3490 < yyrr3490; yyj3490++ { - yyh3490.ElemContainerState(yyj3490) + yyj3495 := 0 + for ; yyj3495 < yyrr3495; yyj3495++ { + yyh3495.ElemContainerState(yyj3495) if r.TryDecodeAsNil() { - yyv3490[yyj3490] = Pod{} + yyv3495[yyj3495] = Pod{} } else { - yyv3491 := &yyv3490[yyj3490] - yyv3491.CodecDecodeSelf(d) + yyv3496 := &yyv3495[yyj3495] + yyv3496.CodecDecodeSelf(d) } } - if yyrt3490 { - for ; yyj3490 < yyl3490; yyj3490++ { - yyv3490 = append(yyv3490, Pod{}) - yyh3490.ElemContainerState(yyj3490) + if yyrt3495 { + for ; yyj3495 < yyl3495; yyj3495++ { + yyv3495 = append(yyv3495, Pod{}) + yyh3495.ElemContainerState(yyj3495) if r.TryDecodeAsNil() { - yyv3490[yyj3490] = Pod{} + yyv3495[yyj3495] = Pod{} } else { - yyv3492 := &yyv3490[yyj3490] - yyv3492.CodecDecodeSelf(d) + yyv3497 := &yyv3495[yyj3495] + yyv3497.CodecDecodeSelf(d) } } } } else { - yyj3490 := 0 - for ; !r.CheckBreak(); yyj3490++ { + yyj3495 := 0 + for ; !r.CheckBreak(); yyj3495++ { - if yyj3490 >= len(yyv3490) { - yyv3490 = append(yyv3490, Pod{}) // var yyz3490 Pod - yyc3490 = true + if yyj3495 >= len(yyv3495) { + yyv3495 = append(yyv3495, Pod{}) // var yyz3495 Pod + yyc3495 = true } - yyh3490.ElemContainerState(yyj3490) - if yyj3490 < len(yyv3490) { + yyh3495.ElemContainerState(yyj3495) + if yyj3495 < len(yyv3495) { if r.TryDecodeAsNil() { - yyv3490[yyj3490] = Pod{} + yyv3495[yyj3495] = Pod{} } else { - yyv3493 := &yyv3490[yyj3490] - yyv3493.CodecDecodeSelf(d) + yyv3498 := &yyv3495[yyj3495] + yyv3498.CodecDecodeSelf(d) } } else { @@ -43583,17 +43631,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj3490 < len(yyv3490) { - yyv3490 = yyv3490[:yyj3490] - yyc3490 = true - } else if yyj3490 == 0 && yyv3490 == nil { - yyv3490 = []Pod{} - yyc3490 = true + if yyj3495 < len(yyv3495) { + yyv3495 = yyv3495[:yyj3495] + yyc3495 = true + } else if yyj3495 == 0 && yyv3495 == nil { + yyv3495 = []Pod{} + yyc3495 = true } } - yyh3490.End() - if yyc3490 { - *v = yyv3490 + yyh3495.End() + if yyc3495 { + *v = yyv3495 } } @@ -43602,10 +43650,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3494 := range v { + for _, yyv3499 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3495 := &yyv3494 - yy3495.CodecEncodeSelf(e) + yy3500 := &yyv3499 + yy3500.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43615,83 +43663,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3496 := *v - yyh3496, yyl3496 := z.DecSliceHelperStart() - var yyc3496 bool - if yyl3496 == 0 { - if yyv3496 == nil { - yyv3496 = []Volume{} - yyc3496 = true - } else if len(yyv3496) != 0 { - yyv3496 = yyv3496[:0] - yyc3496 = true + yyv3501 := *v + yyh3501, yyl3501 := z.DecSliceHelperStart() + var yyc3501 bool + if yyl3501 == 0 { + if yyv3501 == nil { + yyv3501 = []Volume{} + yyc3501 = true + } else if len(yyv3501) != 0 { + yyv3501 = yyv3501[:0] + yyc3501 = true } - } else if yyl3496 > 0 { - var yyrr3496, yyrl3496 int - var yyrt3496 bool - if yyl3496 > cap(yyv3496) { + } else if yyl3501 > 0 { + var yyrr3501, yyrl3501 int + var yyrt3501 bool + if yyl3501 > cap(yyv3501) { - yyrg3496 := len(yyv3496) > 0 - yyv23496 := yyv3496 - yyrl3496, yyrt3496 = z.DecInferLen(yyl3496, z.DecBasicHandle().MaxInitLen, 144) - if yyrt3496 { - if yyrl3496 <= cap(yyv3496) { - yyv3496 = yyv3496[:yyrl3496] + yyrg3501 := len(yyv3501) > 0 + yyv23501 := yyv3501 + yyrl3501, yyrt3501 = z.DecInferLen(yyl3501, z.DecBasicHandle().MaxInitLen, 144) + if yyrt3501 { + if yyrl3501 <= cap(yyv3501) { + yyv3501 = yyv3501[:yyrl3501] } else { - yyv3496 = make([]Volume, yyrl3496) + yyv3501 = make([]Volume, yyrl3501) } } else { - yyv3496 = make([]Volume, yyrl3496) + yyv3501 = make([]Volume, yyrl3501) } - yyc3496 = true - yyrr3496 = len(yyv3496) - if yyrg3496 { - copy(yyv3496, yyv23496) + yyc3501 = true + yyrr3501 = len(yyv3501) + if yyrg3501 { + copy(yyv3501, yyv23501) } - } else if yyl3496 != len(yyv3496) { - yyv3496 = yyv3496[:yyl3496] - yyc3496 = true + } else if yyl3501 != len(yyv3501) { + yyv3501 = yyv3501[:yyl3501] + yyc3501 = true } - yyj3496 := 0 - for ; yyj3496 < yyrr3496; yyj3496++ { - yyh3496.ElemContainerState(yyj3496) + yyj3501 := 0 + for ; yyj3501 < yyrr3501; yyj3501++ { + yyh3501.ElemContainerState(yyj3501) if r.TryDecodeAsNil() { - yyv3496[yyj3496] = Volume{} + yyv3501[yyj3501] = Volume{} } else { - yyv3497 := &yyv3496[yyj3496] - yyv3497.CodecDecodeSelf(d) + yyv3502 := &yyv3501[yyj3501] + yyv3502.CodecDecodeSelf(d) } } - if yyrt3496 { - for ; yyj3496 < yyl3496; yyj3496++ { - yyv3496 = append(yyv3496, Volume{}) - yyh3496.ElemContainerState(yyj3496) + if yyrt3501 { + for ; yyj3501 < yyl3501; yyj3501++ { + yyv3501 = append(yyv3501, Volume{}) + yyh3501.ElemContainerState(yyj3501) if r.TryDecodeAsNil() { - yyv3496[yyj3496] = Volume{} + yyv3501[yyj3501] = Volume{} } else { - yyv3498 := &yyv3496[yyj3496] - yyv3498.CodecDecodeSelf(d) + yyv3503 := &yyv3501[yyj3501] + yyv3503.CodecDecodeSelf(d) } } } } else { - yyj3496 := 0 - for ; !r.CheckBreak(); yyj3496++ { + yyj3501 := 0 + for ; !r.CheckBreak(); yyj3501++ { - if yyj3496 >= len(yyv3496) { - yyv3496 = append(yyv3496, Volume{}) // var yyz3496 Volume - yyc3496 = true + if yyj3501 >= len(yyv3501) { + yyv3501 = append(yyv3501, Volume{}) // var yyz3501 Volume + yyc3501 = true } - yyh3496.ElemContainerState(yyj3496) - if yyj3496 < len(yyv3496) { + yyh3501.ElemContainerState(yyj3501) + if yyj3501 < len(yyv3501) { if r.TryDecodeAsNil() { - yyv3496[yyj3496] = Volume{} + yyv3501[yyj3501] = Volume{} } else { - yyv3499 := &yyv3496[yyj3496] - yyv3499.CodecDecodeSelf(d) + yyv3504 := &yyv3501[yyj3501] + yyv3504.CodecDecodeSelf(d) } } else { @@ -43699,17 +43747,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3496 < len(yyv3496) { - yyv3496 = yyv3496[:yyj3496] - yyc3496 = true - } else if yyj3496 == 0 && yyv3496 == nil { - yyv3496 = []Volume{} - yyc3496 = true + if yyj3501 < len(yyv3501) { + yyv3501 = yyv3501[:yyj3501] + yyc3501 = true + } else if yyj3501 == 0 && yyv3501 == nil { + yyv3501 = []Volume{} + yyc3501 = true } } - yyh3496.End() - if yyc3496 { - *v = yyv3496 + yyh3501.End() + if yyc3501 { + *v = yyv3501 } } @@ -43718,10 +43766,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3500 := range v { + for _, yyv3505 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3501 := &yyv3500 - yy3501.CodecEncodeSelf(e) + yy3506 := &yyv3505 + yy3506.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43731,83 +43779,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3502 := *v - yyh3502, yyl3502 := z.DecSliceHelperStart() - var yyc3502 bool - if yyl3502 == 0 { - if yyv3502 == nil { - yyv3502 = []Container{} - yyc3502 = true - } else if len(yyv3502) != 0 { - yyv3502 = yyv3502[:0] - yyc3502 = true + yyv3507 := *v + yyh3507, yyl3507 := z.DecSliceHelperStart() + var yyc3507 bool + if yyl3507 == 0 { + if yyv3507 == nil { + yyv3507 = []Container{} + yyc3507 = true + } else if len(yyv3507) != 0 { + yyv3507 = yyv3507[:0] + yyc3507 = true } - } else if yyl3502 > 0 { - var yyrr3502, yyrl3502 int - var yyrt3502 bool - if yyl3502 > cap(yyv3502) { + } else if yyl3507 > 0 { + var yyrr3507, yyrl3507 int + var yyrt3507 bool + if yyl3507 > cap(yyv3507) { - yyrg3502 := len(yyv3502) > 0 - yyv23502 := yyv3502 - yyrl3502, yyrt3502 = z.DecInferLen(yyl3502, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3502 { - if yyrl3502 <= cap(yyv3502) { - yyv3502 = yyv3502[:yyrl3502] + yyrg3507 := len(yyv3507) > 0 + yyv23507 := yyv3507 + yyrl3507, yyrt3507 = z.DecInferLen(yyl3507, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3507 { + if yyrl3507 <= cap(yyv3507) { + yyv3507 = yyv3507[:yyrl3507] } else { - yyv3502 = make([]Container, yyrl3502) + yyv3507 = make([]Container, yyrl3507) } } else { - yyv3502 = make([]Container, yyrl3502) + yyv3507 = make([]Container, yyrl3507) } - yyc3502 = true - yyrr3502 = len(yyv3502) - if yyrg3502 { - copy(yyv3502, yyv23502) + yyc3507 = true + yyrr3507 = len(yyv3507) + if yyrg3507 { + copy(yyv3507, yyv23507) } - } else if yyl3502 != len(yyv3502) { - yyv3502 = yyv3502[:yyl3502] - yyc3502 = true + } else if yyl3507 != len(yyv3507) { + yyv3507 = yyv3507[:yyl3507] + yyc3507 = true } - yyj3502 := 0 - for ; yyj3502 < yyrr3502; yyj3502++ { - yyh3502.ElemContainerState(yyj3502) + yyj3507 := 0 + for ; yyj3507 < yyrr3507; yyj3507++ { + yyh3507.ElemContainerState(yyj3507) if r.TryDecodeAsNil() { - yyv3502[yyj3502] = Container{} + yyv3507[yyj3507] = Container{} } else { - yyv3503 := &yyv3502[yyj3502] - yyv3503.CodecDecodeSelf(d) + yyv3508 := &yyv3507[yyj3507] + yyv3508.CodecDecodeSelf(d) } } - if yyrt3502 { - for ; yyj3502 < yyl3502; yyj3502++ { - yyv3502 = append(yyv3502, Container{}) - yyh3502.ElemContainerState(yyj3502) + if yyrt3507 { + for ; yyj3507 < yyl3507; yyj3507++ { + yyv3507 = append(yyv3507, Container{}) + yyh3507.ElemContainerState(yyj3507) if r.TryDecodeAsNil() { - yyv3502[yyj3502] = Container{} + yyv3507[yyj3507] = Container{} } else { - yyv3504 := &yyv3502[yyj3502] - yyv3504.CodecDecodeSelf(d) + yyv3509 := &yyv3507[yyj3507] + yyv3509.CodecDecodeSelf(d) } } } } else { - yyj3502 := 0 - for ; !r.CheckBreak(); yyj3502++ { + yyj3507 := 0 + for ; !r.CheckBreak(); yyj3507++ { - if yyj3502 >= len(yyv3502) { - yyv3502 = append(yyv3502, Container{}) // var yyz3502 Container - yyc3502 = true + if yyj3507 >= len(yyv3507) { + yyv3507 = append(yyv3507, Container{}) // var yyz3507 Container + yyc3507 = true } - yyh3502.ElemContainerState(yyj3502) - if yyj3502 < len(yyv3502) { + yyh3507.ElemContainerState(yyj3507) + if yyj3507 < len(yyv3507) { if r.TryDecodeAsNil() { - yyv3502[yyj3502] = Container{} + yyv3507[yyj3507] = Container{} } else { - yyv3505 := &yyv3502[yyj3502] - yyv3505.CodecDecodeSelf(d) + yyv3510 := &yyv3507[yyj3507] + yyv3510.CodecDecodeSelf(d) } } else { @@ -43815,17 +43863,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3502 < len(yyv3502) { - yyv3502 = yyv3502[:yyj3502] - yyc3502 = true - } else if yyj3502 == 0 && yyv3502 == nil { - yyv3502 = []Container{} - yyc3502 = true + if yyj3507 < len(yyv3507) { + yyv3507 = yyv3507[:yyj3507] + yyc3507 = true + } else if yyj3507 == 0 && yyv3507 == nil { + yyv3507 = []Container{} + yyc3507 = true } } - yyh3502.End() - if yyc3502 { - *v = yyv3502 + yyh3507.End() + if yyc3507 { + *v = yyv3507 } } @@ -43834,10 +43882,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3506 := range v { + for _, yyv3511 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3507 := &yyv3506 - yy3507.CodecEncodeSelf(e) + yy3512 := &yyv3511 + yy3512.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43847,83 +43895,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3508 := *v - yyh3508, yyl3508 := z.DecSliceHelperStart() - var yyc3508 bool - if yyl3508 == 0 { - if yyv3508 == nil { - yyv3508 = []LocalObjectReference{} - yyc3508 = true - } else if len(yyv3508) != 0 { - yyv3508 = yyv3508[:0] - yyc3508 = true + yyv3513 := *v + yyh3513, yyl3513 := z.DecSliceHelperStart() + var yyc3513 bool + if yyl3513 == 0 { + if yyv3513 == nil { + yyv3513 = []LocalObjectReference{} + yyc3513 = true + } else if len(yyv3513) != 0 { + yyv3513 = yyv3513[:0] + yyc3513 = true } - } else if yyl3508 > 0 { - var yyrr3508, yyrl3508 int - var yyrt3508 bool - if yyl3508 > cap(yyv3508) { + } else if yyl3513 > 0 { + var yyrr3513, yyrl3513 int + var yyrt3513 bool + if yyl3513 > cap(yyv3513) { - yyrg3508 := len(yyv3508) > 0 - yyv23508 := yyv3508 - yyrl3508, yyrt3508 = z.DecInferLen(yyl3508, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3508 { - if yyrl3508 <= cap(yyv3508) { - yyv3508 = yyv3508[:yyrl3508] + yyrg3513 := len(yyv3513) > 0 + yyv23513 := yyv3513 + yyrl3513, yyrt3513 = z.DecInferLen(yyl3513, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3513 { + if yyrl3513 <= cap(yyv3513) { + yyv3513 = yyv3513[:yyrl3513] } else { - yyv3508 = make([]LocalObjectReference, yyrl3508) + yyv3513 = make([]LocalObjectReference, yyrl3513) } } else { - yyv3508 = make([]LocalObjectReference, yyrl3508) + yyv3513 = make([]LocalObjectReference, yyrl3513) } - yyc3508 = true - yyrr3508 = len(yyv3508) - if yyrg3508 { - copy(yyv3508, yyv23508) + yyc3513 = true + yyrr3513 = len(yyv3513) + if yyrg3513 { + copy(yyv3513, yyv23513) } - } else if yyl3508 != len(yyv3508) { - yyv3508 = yyv3508[:yyl3508] - yyc3508 = true + } else if yyl3513 != len(yyv3513) { + yyv3513 = yyv3513[:yyl3513] + yyc3513 = true } - yyj3508 := 0 - for ; yyj3508 < yyrr3508; yyj3508++ { - yyh3508.ElemContainerState(yyj3508) + yyj3513 := 0 + for ; yyj3513 < yyrr3513; yyj3513++ { + yyh3513.ElemContainerState(yyj3513) if r.TryDecodeAsNil() { - yyv3508[yyj3508] = LocalObjectReference{} + yyv3513[yyj3513] = LocalObjectReference{} } else { - yyv3509 := &yyv3508[yyj3508] - yyv3509.CodecDecodeSelf(d) + yyv3514 := &yyv3513[yyj3513] + yyv3514.CodecDecodeSelf(d) } } - if yyrt3508 { - for ; yyj3508 < yyl3508; yyj3508++ { - yyv3508 = append(yyv3508, LocalObjectReference{}) - yyh3508.ElemContainerState(yyj3508) + if yyrt3513 { + for ; yyj3513 < yyl3513; yyj3513++ { + yyv3513 = append(yyv3513, LocalObjectReference{}) + yyh3513.ElemContainerState(yyj3513) if r.TryDecodeAsNil() { - yyv3508[yyj3508] = LocalObjectReference{} + yyv3513[yyj3513] = LocalObjectReference{} } else { - yyv3510 := &yyv3508[yyj3508] - yyv3510.CodecDecodeSelf(d) + yyv3515 := &yyv3513[yyj3513] + yyv3515.CodecDecodeSelf(d) } } } } else { - yyj3508 := 0 - for ; !r.CheckBreak(); yyj3508++ { + yyj3513 := 0 + for ; !r.CheckBreak(); yyj3513++ { - if yyj3508 >= len(yyv3508) { - yyv3508 = append(yyv3508, LocalObjectReference{}) // var yyz3508 LocalObjectReference - yyc3508 = true + if yyj3513 >= len(yyv3513) { + yyv3513 = append(yyv3513, LocalObjectReference{}) // var yyz3513 LocalObjectReference + yyc3513 = true } - yyh3508.ElemContainerState(yyj3508) - if yyj3508 < len(yyv3508) { + yyh3513.ElemContainerState(yyj3513) + if yyj3513 < len(yyv3513) { if r.TryDecodeAsNil() { - yyv3508[yyj3508] = LocalObjectReference{} + yyv3513[yyj3513] = LocalObjectReference{} } else { - yyv3511 := &yyv3508[yyj3508] - yyv3511.CodecDecodeSelf(d) + yyv3516 := &yyv3513[yyj3513] + yyv3516.CodecDecodeSelf(d) } } else { @@ -43931,17 +43979,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3508 < len(yyv3508) { - yyv3508 = yyv3508[:yyj3508] - yyc3508 = true - } else if yyj3508 == 0 && yyv3508 == nil { - yyv3508 = []LocalObjectReference{} - yyc3508 = true + if yyj3513 < len(yyv3513) { + yyv3513 = yyv3513[:yyj3513] + yyc3513 = true + } else if yyj3513 == 0 && yyv3513 == nil { + yyv3513 = []LocalObjectReference{} + yyc3513 = true } } - yyh3508.End() - if yyc3508 { - *v = yyv3508 + yyh3513.End() + if yyc3513 { + *v = yyv3513 } } @@ -43950,10 +43998,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3512 := range v { + for _, yyv3517 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3513 := &yyv3512 - yy3513.CodecEncodeSelf(e) + yy3518 := &yyv3517 + yy3518.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43963,83 +44011,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3514 := *v - yyh3514, yyl3514 := z.DecSliceHelperStart() - var yyc3514 bool - if yyl3514 == 0 { - if yyv3514 == nil { - yyv3514 = []PodCondition{} - yyc3514 = true - } else if len(yyv3514) != 0 { - yyv3514 = yyv3514[:0] - yyc3514 = true + yyv3519 := *v + yyh3519, yyl3519 := z.DecSliceHelperStart() + var yyc3519 bool + if yyl3519 == 0 { + if yyv3519 == nil { + yyv3519 = []PodCondition{} + yyc3519 = true + } else if len(yyv3519) != 0 { + yyv3519 = yyv3519[:0] + yyc3519 = true } - } else if yyl3514 > 0 { - var yyrr3514, yyrl3514 int - var yyrt3514 bool - if yyl3514 > cap(yyv3514) { + } else if yyl3519 > 0 { + var yyrr3519, yyrl3519 int + var yyrt3519 bool + if yyl3519 > cap(yyv3519) { - yyrg3514 := len(yyv3514) > 0 - yyv23514 := yyv3514 - yyrl3514, yyrt3514 = z.DecInferLen(yyl3514, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3514 { - if yyrl3514 <= cap(yyv3514) { - yyv3514 = yyv3514[:yyrl3514] + yyrg3519 := len(yyv3519) > 0 + yyv23519 := yyv3519 + yyrl3519, yyrt3519 = z.DecInferLen(yyl3519, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3519 { + if yyrl3519 <= cap(yyv3519) { + yyv3519 = yyv3519[:yyrl3519] } else { - yyv3514 = make([]PodCondition, yyrl3514) + yyv3519 = make([]PodCondition, yyrl3519) } } else { - yyv3514 = make([]PodCondition, yyrl3514) + yyv3519 = make([]PodCondition, yyrl3519) } - yyc3514 = true - yyrr3514 = len(yyv3514) - if yyrg3514 { - copy(yyv3514, yyv23514) + yyc3519 = true + yyrr3519 = len(yyv3519) + if yyrg3519 { + copy(yyv3519, yyv23519) } - } else if yyl3514 != len(yyv3514) { - yyv3514 = yyv3514[:yyl3514] - yyc3514 = true + } else if yyl3519 != len(yyv3519) { + yyv3519 = yyv3519[:yyl3519] + yyc3519 = true } - yyj3514 := 0 - for ; yyj3514 < yyrr3514; yyj3514++ { - yyh3514.ElemContainerState(yyj3514) + yyj3519 := 0 + for ; yyj3519 < yyrr3519; yyj3519++ { + yyh3519.ElemContainerState(yyj3519) if r.TryDecodeAsNil() { - yyv3514[yyj3514] = PodCondition{} + yyv3519[yyj3519] = PodCondition{} } else { - yyv3515 := &yyv3514[yyj3514] - yyv3515.CodecDecodeSelf(d) + yyv3520 := &yyv3519[yyj3519] + yyv3520.CodecDecodeSelf(d) } } - if yyrt3514 { - for ; yyj3514 < yyl3514; yyj3514++ { - yyv3514 = append(yyv3514, PodCondition{}) - yyh3514.ElemContainerState(yyj3514) + if yyrt3519 { + for ; yyj3519 < yyl3519; yyj3519++ { + yyv3519 = append(yyv3519, PodCondition{}) + yyh3519.ElemContainerState(yyj3519) if r.TryDecodeAsNil() { - yyv3514[yyj3514] = PodCondition{} + yyv3519[yyj3519] = PodCondition{} } else { - yyv3516 := &yyv3514[yyj3514] - yyv3516.CodecDecodeSelf(d) + yyv3521 := &yyv3519[yyj3519] + yyv3521.CodecDecodeSelf(d) } } } } else { - yyj3514 := 0 - for ; !r.CheckBreak(); yyj3514++ { + yyj3519 := 0 + for ; !r.CheckBreak(); yyj3519++ { - if yyj3514 >= len(yyv3514) { - yyv3514 = append(yyv3514, PodCondition{}) // var yyz3514 PodCondition - yyc3514 = true + if yyj3519 >= len(yyv3519) { + yyv3519 = append(yyv3519, PodCondition{}) // var yyz3519 PodCondition + yyc3519 = true } - yyh3514.ElemContainerState(yyj3514) - if yyj3514 < len(yyv3514) { + yyh3519.ElemContainerState(yyj3519) + if yyj3519 < len(yyv3519) { if r.TryDecodeAsNil() { - yyv3514[yyj3514] = PodCondition{} + yyv3519[yyj3519] = PodCondition{} } else { - yyv3517 := &yyv3514[yyj3514] - yyv3517.CodecDecodeSelf(d) + yyv3522 := &yyv3519[yyj3519] + yyv3522.CodecDecodeSelf(d) } } else { @@ -44047,17 +44095,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3514 < len(yyv3514) { - yyv3514 = yyv3514[:yyj3514] - yyc3514 = true - } else if yyj3514 == 0 && yyv3514 == nil { - yyv3514 = []PodCondition{} - yyc3514 = true + if yyj3519 < len(yyv3519) { + yyv3519 = yyv3519[:yyj3519] + yyc3519 = true + } else if yyj3519 == 0 && yyv3519 == nil { + yyv3519 = []PodCondition{} + yyc3519 = true } } - yyh3514.End() - if yyc3514 { - *v = yyv3514 + yyh3519.End() + if yyc3519 { + *v = yyv3519 } } @@ -44066,10 +44114,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3518 := range v { + for _, yyv3523 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3519 := &yyv3518 - yy3519.CodecEncodeSelf(e) + yy3524 := &yyv3523 + yy3524.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44079,83 +44127,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3520 := *v - yyh3520, yyl3520 := z.DecSliceHelperStart() - var yyc3520 bool - if yyl3520 == 0 { - if yyv3520 == nil { - yyv3520 = []ContainerStatus{} - yyc3520 = true - } else if len(yyv3520) != 0 { - yyv3520 = yyv3520[:0] - yyc3520 = true + yyv3525 := *v + yyh3525, yyl3525 := z.DecSliceHelperStart() + var yyc3525 bool + if yyl3525 == 0 { + if yyv3525 == nil { + yyv3525 = []ContainerStatus{} + yyc3525 = true + } else if len(yyv3525) != 0 { + yyv3525 = yyv3525[:0] + yyc3525 = true } - } else if yyl3520 > 0 { - var yyrr3520, yyrl3520 int - var yyrt3520 bool - if yyl3520 > cap(yyv3520) { + } else if yyl3525 > 0 { + var yyrr3525, yyrl3525 int + var yyrt3525 bool + if yyl3525 > cap(yyv3525) { - yyrg3520 := len(yyv3520) > 0 - yyv23520 := yyv3520 - yyrl3520, yyrt3520 = z.DecInferLen(yyl3520, z.DecBasicHandle().MaxInitLen, 128) - if yyrt3520 { - if yyrl3520 <= cap(yyv3520) { - yyv3520 = yyv3520[:yyrl3520] + yyrg3525 := len(yyv3525) > 0 + yyv23525 := yyv3525 + yyrl3525, yyrt3525 = z.DecInferLen(yyl3525, z.DecBasicHandle().MaxInitLen, 128) + if yyrt3525 { + if yyrl3525 <= cap(yyv3525) { + yyv3525 = yyv3525[:yyrl3525] } else { - yyv3520 = make([]ContainerStatus, yyrl3520) + yyv3525 = make([]ContainerStatus, yyrl3525) } } else { - yyv3520 = make([]ContainerStatus, yyrl3520) + yyv3525 = make([]ContainerStatus, yyrl3525) } - yyc3520 = true - yyrr3520 = len(yyv3520) - if yyrg3520 { - copy(yyv3520, yyv23520) + yyc3525 = true + yyrr3525 = len(yyv3525) + if yyrg3525 { + copy(yyv3525, yyv23525) } - } else if yyl3520 != len(yyv3520) { - yyv3520 = yyv3520[:yyl3520] - yyc3520 = true + } else if yyl3525 != len(yyv3525) { + yyv3525 = yyv3525[:yyl3525] + yyc3525 = true } - yyj3520 := 0 - for ; yyj3520 < yyrr3520; yyj3520++ { - yyh3520.ElemContainerState(yyj3520) + yyj3525 := 0 + for ; yyj3525 < yyrr3525; yyj3525++ { + yyh3525.ElemContainerState(yyj3525) if r.TryDecodeAsNil() { - yyv3520[yyj3520] = ContainerStatus{} + yyv3525[yyj3525] = ContainerStatus{} } else { - yyv3521 := &yyv3520[yyj3520] - yyv3521.CodecDecodeSelf(d) + yyv3526 := &yyv3525[yyj3525] + yyv3526.CodecDecodeSelf(d) } } - if yyrt3520 { - for ; yyj3520 < yyl3520; yyj3520++ { - yyv3520 = append(yyv3520, ContainerStatus{}) - yyh3520.ElemContainerState(yyj3520) + if yyrt3525 { + for ; yyj3525 < yyl3525; yyj3525++ { + yyv3525 = append(yyv3525, ContainerStatus{}) + yyh3525.ElemContainerState(yyj3525) if r.TryDecodeAsNil() { - yyv3520[yyj3520] = ContainerStatus{} + yyv3525[yyj3525] = ContainerStatus{} } else { - yyv3522 := &yyv3520[yyj3520] - yyv3522.CodecDecodeSelf(d) + yyv3527 := &yyv3525[yyj3525] + yyv3527.CodecDecodeSelf(d) } } } } else { - yyj3520 := 0 - for ; !r.CheckBreak(); yyj3520++ { + yyj3525 := 0 + for ; !r.CheckBreak(); yyj3525++ { - if yyj3520 >= len(yyv3520) { - yyv3520 = append(yyv3520, ContainerStatus{}) // var yyz3520 ContainerStatus - yyc3520 = true + if yyj3525 >= len(yyv3525) { + yyv3525 = append(yyv3525, ContainerStatus{}) // var yyz3525 ContainerStatus + yyc3525 = true } - yyh3520.ElemContainerState(yyj3520) - if yyj3520 < len(yyv3520) { + yyh3525.ElemContainerState(yyj3525) + if yyj3525 < len(yyv3525) { if r.TryDecodeAsNil() { - yyv3520[yyj3520] = ContainerStatus{} + yyv3525[yyj3525] = ContainerStatus{} } else { - yyv3523 := &yyv3520[yyj3520] - yyv3523.CodecDecodeSelf(d) + yyv3528 := &yyv3525[yyj3525] + yyv3528.CodecDecodeSelf(d) } } else { @@ -44163,17 +44211,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3520 < len(yyv3520) { - yyv3520 = yyv3520[:yyj3520] - yyc3520 = true - } else if yyj3520 == 0 && yyv3520 == nil { - yyv3520 = []ContainerStatus{} - yyc3520 = true + if yyj3525 < len(yyv3525) { + yyv3525 = yyv3525[:yyj3525] + yyc3525 = true + } else if yyj3525 == 0 && yyv3525 == nil { + yyv3525 = []ContainerStatus{} + yyc3525 = true } } - yyh3520.End() - if yyc3520 { - *v = yyv3520 + yyh3525.End() + if yyc3525 { + *v = yyv3525 } } @@ -44182,10 +44230,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3524 := range v { + for _, yyv3529 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3525 := &yyv3524 - yy3525.CodecEncodeSelf(e) + yy3530 := &yyv3529 + yy3530.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44195,83 +44243,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3526 := *v - yyh3526, yyl3526 := z.DecSliceHelperStart() - var yyc3526 bool - if yyl3526 == 0 { - if yyv3526 == nil { - yyv3526 = []PodTemplate{} - yyc3526 = true - } else if len(yyv3526) != 0 { - yyv3526 = yyv3526[:0] - yyc3526 = true + yyv3531 := *v + yyh3531, yyl3531 := z.DecSliceHelperStart() + var yyc3531 bool + if yyl3531 == 0 { + if yyv3531 == nil { + yyv3531 = []PodTemplate{} + yyc3531 = true + } else if len(yyv3531) != 0 { + yyv3531 = yyv3531[:0] + yyc3531 = true } - } else if yyl3526 > 0 { - var yyrr3526, yyrl3526 int - var yyrt3526 bool - if yyl3526 > cap(yyv3526) { + } else if yyl3531 > 0 { + var yyrr3531, yyrl3531 int + var yyrt3531 bool + if yyl3531 > cap(yyv3531) { - yyrg3526 := len(yyv3526) > 0 - yyv23526 := yyv3526 - yyrl3526, yyrt3526 = z.DecInferLen(yyl3526, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3526 { - if yyrl3526 <= cap(yyv3526) { - yyv3526 = yyv3526[:yyrl3526] + yyrg3531 := len(yyv3531) > 0 + yyv23531 := yyv3531 + yyrl3531, yyrt3531 = z.DecInferLen(yyl3531, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3531 { + if yyrl3531 <= cap(yyv3531) { + yyv3531 = yyv3531[:yyrl3531] } else { - yyv3526 = make([]PodTemplate, yyrl3526) + yyv3531 = make([]PodTemplate, yyrl3531) } } else { - yyv3526 = make([]PodTemplate, yyrl3526) + yyv3531 = make([]PodTemplate, yyrl3531) } - yyc3526 = true - yyrr3526 = len(yyv3526) - if yyrg3526 { - copy(yyv3526, yyv23526) + yyc3531 = true + yyrr3531 = len(yyv3531) + if yyrg3531 { + copy(yyv3531, yyv23531) } - } else if yyl3526 != len(yyv3526) { - yyv3526 = yyv3526[:yyl3526] - yyc3526 = true + } else if yyl3531 != len(yyv3531) { + yyv3531 = yyv3531[:yyl3531] + yyc3531 = true } - yyj3526 := 0 - for ; yyj3526 < yyrr3526; yyj3526++ { - yyh3526.ElemContainerState(yyj3526) + yyj3531 := 0 + for ; yyj3531 < yyrr3531; yyj3531++ { + yyh3531.ElemContainerState(yyj3531) if r.TryDecodeAsNil() { - yyv3526[yyj3526] = PodTemplate{} + yyv3531[yyj3531] = PodTemplate{} } else { - yyv3527 := &yyv3526[yyj3526] - yyv3527.CodecDecodeSelf(d) + yyv3532 := &yyv3531[yyj3531] + yyv3532.CodecDecodeSelf(d) } } - if yyrt3526 { - for ; yyj3526 < yyl3526; yyj3526++ { - yyv3526 = append(yyv3526, PodTemplate{}) - yyh3526.ElemContainerState(yyj3526) + if yyrt3531 { + for ; yyj3531 < yyl3531; yyj3531++ { + yyv3531 = append(yyv3531, PodTemplate{}) + yyh3531.ElemContainerState(yyj3531) if r.TryDecodeAsNil() { - yyv3526[yyj3526] = PodTemplate{} + yyv3531[yyj3531] = PodTemplate{} } else { - yyv3528 := &yyv3526[yyj3526] - yyv3528.CodecDecodeSelf(d) + yyv3533 := &yyv3531[yyj3531] + yyv3533.CodecDecodeSelf(d) } } } } else { - yyj3526 := 0 - for ; !r.CheckBreak(); yyj3526++ { + yyj3531 := 0 + for ; !r.CheckBreak(); yyj3531++ { - if yyj3526 >= len(yyv3526) { - yyv3526 = append(yyv3526, PodTemplate{}) // var yyz3526 PodTemplate - yyc3526 = true + if yyj3531 >= len(yyv3531) { + yyv3531 = append(yyv3531, PodTemplate{}) // var yyz3531 PodTemplate + yyc3531 = true } - yyh3526.ElemContainerState(yyj3526) - if yyj3526 < len(yyv3526) { + yyh3531.ElemContainerState(yyj3531) + if yyj3531 < len(yyv3531) { if r.TryDecodeAsNil() { - yyv3526[yyj3526] = PodTemplate{} + yyv3531[yyj3531] = PodTemplate{} } else { - yyv3529 := &yyv3526[yyj3526] - yyv3529.CodecDecodeSelf(d) + yyv3534 := &yyv3531[yyj3531] + yyv3534.CodecDecodeSelf(d) } } else { @@ -44279,17 +44327,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3526 < len(yyv3526) { - yyv3526 = yyv3526[:yyj3526] - yyc3526 = true - } else if yyj3526 == 0 && yyv3526 == nil { - yyv3526 = []PodTemplate{} - yyc3526 = true + if yyj3531 < len(yyv3531) { + yyv3531 = yyv3531[:yyj3531] + yyc3531 = true + } else if yyj3531 == 0 && yyv3531 == nil { + yyv3531 = []PodTemplate{} + yyc3531 = true } } - yyh3526.End() - if yyc3526 { - *v = yyv3526 + yyh3531.End() + if yyc3531 { + *v = yyv3531 } } @@ -44298,10 +44346,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3530 := range v { + for _, yyv3535 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3531 := &yyv3530 - yy3531.CodecEncodeSelf(e) + yy3536 := &yyv3535 + yy3536.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44311,83 +44359,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3532 := *v - yyh3532, yyl3532 := z.DecSliceHelperStart() - var yyc3532 bool - if yyl3532 == 0 { - if yyv3532 == nil { - yyv3532 = []ReplicationController{} - yyc3532 = true - } else if len(yyv3532) != 0 { - yyv3532 = yyv3532[:0] - yyc3532 = true + yyv3537 := *v + yyh3537, yyl3537 := z.DecSliceHelperStart() + var yyc3537 bool + if yyl3537 == 0 { + if yyv3537 == nil { + yyv3537 = []ReplicationController{} + yyc3537 = true + } else if len(yyv3537) != 0 { + yyv3537 = yyv3537[:0] + yyc3537 = true } - } else if yyl3532 > 0 { - var yyrr3532, yyrl3532 int - var yyrt3532 bool - if yyl3532 > cap(yyv3532) { + } else if yyl3537 > 0 { + var yyrr3537, yyrl3537 int + var yyrt3537 bool + if yyl3537 > cap(yyv3537) { - yyrg3532 := len(yyv3532) > 0 - yyv23532 := yyv3532 - yyrl3532, yyrt3532 = z.DecInferLen(yyl3532, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3532 { - if yyrl3532 <= cap(yyv3532) { - yyv3532 = yyv3532[:yyrl3532] + yyrg3537 := len(yyv3537) > 0 + yyv23537 := yyv3537 + yyrl3537, yyrt3537 = z.DecInferLen(yyl3537, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3537 { + if yyrl3537 <= cap(yyv3537) { + yyv3537 = yyv3537[:yyrl3537] } else { - yyv3532 = make([]ReplicationController, yyrl3532) + yyv3537 = make([]ReplicationController, yyrl3537) } } else { - yyv3532 = make([]ReplicationController, yyrl3532) + yyv3537 = make([]ReplicationController, yyrl3537) } - yyc3532 = true - yyrr3532 = len(yyv3532) - if yyrg3532 { - copy(yyv3532, yyv23532) + yyc3537 = true + yyrr3537 = len(yyv3537) + if yyrg3537 { + copy(yyv3537, yyv23537) } - } else if yyl3532 != len(yyv3532) { - yyv3532 = yyv3532[:yyl3532] - yyc3532 = true + } else if yyl3537 != len(yyv3537) { + yyv3537 = yyv3537[:yyl3537] + yyc3537 = true } - yyj3532 := 0 - for ; yyj3532 < yyrr3532; yyj3532++ { - yyh3532.ElemContainerState(yyj3532) + yyj3537 := 0 + for ; yyj3537 < yyrr3537; yyj3537++ { + yyh3537.ElemContainerState(yyj3537) if r.TryDecodeAsNil() { - yyv3532[yyj3532] = ReplicationController{} + yyv3537[yyj3537] = ReplicationController{} } else { - yyv3533 := &yyv3532[yyj3532] - yyv3533.CodecDecodeSelf(d) + yyv3538 := &yyv3537[yyj3537] + yyv3538.CodecDecodeSelf(d) } } - if yyrt3532 { - for ; yyj3532 < yyl3532; yyj3532++ { - yyv3532 = append(yyv3532, ReplicationController{}) - yyh3532.ElemContainerState(yyj3532) + if yyrt3537 { + for ; yyj3537 < yyl3537; yyj3537++ { + yyv3537 = append(yyv3537, ReplicationController{}) + yyh3537.ElemContainerState(yyj3537) if r.TryDecodeAsNil() { - yyv3532[yyj3532] = ReplicationController{} + yyv3537[yyj3537] = ReplicationController{} } else { - yyv3534 := &yyv3532[yyj3532] - yyv3534.CodecDecodeSelf(d) + yyv3539 := &yyv3537[yyj3537] + yyv3539.CodecDecodeSelf(d) } } } } else { - yyj3532 := 0 - for ; !r.CheckBreak(); yyj3532++ { + yyj3537 := 0 + for ; !r.CheckBreak(); yyj3537++ { - if yyj3532 >= len(yyv3532) { - yyv3532 = append(yyv3532, ReplicationController{}) // var yyz3532 ReplicationController - yyc3532 = true + if yyj3537 >= len(yyv3537) { + yyv3537 = append(yyv3537, ReplicationController{}) // var yyz3537 ReplicationController + yyc3537 = true } - yyh3532.ElemContainerState(yyj3532) - if yyj3532 < len(yyv3532) { + yyh3537.ElemContainerState(yyj3537) + if yyj3537 < len(yyv3537) { if r.TryDecodeAsNil() { - yyv3532[yyj3532] = ReplicationController{} + yyv3537[yyj3537] = ReplicationController{} } else { - yyv3535 := &yyv3532[yyj3532] - yyv3535.CodecDecodeSelf(d) + yyv3540 := &yyv3537[yyj3537] + yyv3540.CodecDecodeSelf(d) } } else { @@ -44395,17 +44443,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3532 < len(yyv3532) { - yyv3532 = yyv3532[:yyj3532] - yyc3532 = true - } else if yyj3532 == 0 && yyv3532 == nil { - yyv3532 = []ReplicationController{} - yyc3532 = true + if yyj3537 < len(yyv3537) { + yyv3537 = yyv3537[:yyj3537] + yyc3537 = true + } else if yyj3537 == 0 && yyv3537 == nil { + yyv3537 = []ReplicationController{} + yyc3537 = true } } - yyh3532.End() - if yyc3532 { - *v = yyv3532 + yyh3537.End() + if yyc3537 { + *v = yyv3537 } } @@ -44414,10 +44462,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3536 := range v { + for _, yyv3541 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3537 := &yyv3536 - yy3537.CodecEncodeSelf(e) + yy3542 := &yyv3541 + yy3542.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44427,83 +44475,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3538 := *v - yyh3538, yyl3538 := z.DecSliceHelperStart() - var yyc3538 bool - if yyl3538 == 0 { - if yyv3538 == nil { - yyv3538 = []Service{} - yyc3538 = true - } else if len(yyv3538) != 0 { - yyv3538 = yyv3538[:0] - yyc3538 = true + yyv3543 := *v + yyh3543, yyl3543 := z.DecSliceHelperStart() + var yyc3543 bool + if yyl3543 == 0 { + if yyv3543 == nil { + yyv3543 = []Service{} + yyc3543 = true + } else if len(yyv3543) != 0 { + yyv3543 = yyv3543[:0] + yyc3543 = true } - } else if yyl3538 > 0 { - var yyrr3538, yyrl3538 int - var yyrt3538 bool - if yyl3538 > cap(yyv3538) { + } else if yyl3543 > 0 { + var yyrr3543, yyrl3543 int + var yyrt3543 bool + if yyl3543 > cap(yyv3543) { - yyrg3538 := len(yyv3538) > 0 - yyv23538 := yyv3538 - yyrl3538, yyrt3538 = z.DecInferLen(yyl3538, z.DecBasicHandle().MaxInitLen, 336) - if yyrt3538 { - if yyrl3538 <= cap(yyv3538) { - yyv3538 = yyv3538[:yyrl3538] + yyrg3543 := len(yyv3543) > 0 + yyv23543 := yyv3543 + yyrl3543, yyrt3543 = z.DecInferLen(yyl3543, z.DecBasicHandle().MaxInitLen, 336) + if yyrt3543 { + if yyrl3543 <= cap(yyv3543) { + yyv3543 = yyv3543[:yyrl3543] } else { - yyv3538 = make([]Service, yyrl3538) + yyv3543 = make([]Service, yyrl3543) } } else { - yyv3538 = make([]Service, yyrl3538) + yyv3543 = make([]Service, yyrl3543) } - yyc3538 = true - yyrr3538 = len(yyv3538) - if yyrg3538 { - copy(yyv3538, yyv23538) + yyc3543 = true + yyrr3543 = len(yyv3543) + if yyrg3543 { + copy(yyv3543, yyv23543) } - } else if yyl3538 != len(yyv3538) { - yyv3538 = yyv3538[:yyl3538] - yyc3538 = true + } else if yyl3543 != len(yyv3543) { + yyv3543 = yyv3543[:yyl3543] + yyc3543 = true } - yyj3538 := 0 - for ; yyj3538 < yyrr3538; yyj3538++ { - yyh3538.ElemContainerState(yyj3538) + yyj3543 := 0 + for ; yyj3543 < yyrr3543; yyj3543++ { + yyh3543.ElemContainerState(yyj3543) if r.TryDecodeAsNil() { - yyv3538[yyj3538] = Service{} + yyv3543[yyj3543] = Service{} } else { - yyv3539 := &yyv3538[yyj3538] - yyv3539.CodecDecodeSelf(d) + yyv3544 := &yyv3543[yyj3543] + yyv3544.CodecDecodeSelf(d) } } - if yyrt3538 { - for ; yyj3538 < yyl3538; yyj3538++ { - yyv3538 = append(yyv3538, Service{}) - yyh3538.ElemContainerState(yyj3538) + if yyrt3543 { + for ; yyj3543 < yyl3543; yyj3543++ { + yyv3543 = append(yyv3543, Service{}) + yyh3543.ElemContainerState(yyj3543) if r.TryDecodeAsNil() { - yyv3538[yyj3538] = Service{} + yyv3543[yyj3543] = Service{} } else { - yyv3540 := &yyv3538[yyj3538] - yyv3540.CodecDecodeSelf(d) + yyv3545 := &yyv3543[yyj3543] + yyv3545.CodecDecodeSelf(d) } } } } else { - yyj3538 := 0 - for ; !r.CheckBreak(); yyj3538++ { + yyj3543 := 0 + for ; !r.CheckBreak(); yyj3543++ { - if yyj3538 >= len(yyv3538) { - yyv3538 = append(yyv3538, Service{}) // var yyz3538 Service - yyc3538 = true + if yyj3543 >= len(yyv3543) { + yyv3543 = append(yyv3543, Service{}) // var yyz3543 Service + yyc3543 = true } - yyh3538.ElemContainerState(yyj3538) - if yyj3538 < len(yyv3538) { + yyh3543.ElemContainerState(yyj3543) + if yyj3543 < len(yyv3543) { if r.TryDecodeAsNil() { - yyv3538[yyj3538] = Service{} + yyv3543[yyj3543] = Service{} } else { - yyv3541 := &yyv3538[yyj3538] - yyv3541.CodecDecodeSelf(d) + yyv3546 := &yyv3543[yyj3543] + yyv3546.CodecDecodeSelf(d) } } else { @@ -44511,17 +44559,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3538 < len(yyv3538) { - yyv3538 = yyv3538[:yyj3538] - yyc3538 = true - } else if yyj3538 == 0 && yyv3538 == nil { - yyv3538 = []Service{} - yyc3538 = true + if yyj3543 < len(yyv3543) { + yyv3543 = yyv3543[:yyj3543] + yyc3543 = true + } else if yyj3543 == 0 && yyv3543 == nil { + yyv3543 = []Service{} + yyc3543 = true } } - yyh3538.End() - if yyc3538 { - *v = yyv3538 + yyh3543.End() + if yyc3543 { + *v = yyv3543 } } @@ -44530,10 +44578,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3542 := range v { + for _, yyv3547 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3543 := &yyv3542 - yy3543.CodecEncodeSelf(e) + yy3548 := &yyv3547 + yy3548.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44543,83 +44591,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3544 := *v - yyh3544, yyl3544 := z.DecSliceHelperStart() - var yyc3544 bool - if yyl3544 == 0 { - if yyv3544 == nil { - yyv3544 = []LoadBalancerIngress{} - yyc3544 = true - } else if len(yyv3544) != 0 { - yyv3544 = yyv3544[:0] - yyc3544 = true + yyv3549 := *v + yyh3549, yyl3549 := z.DecSliceHelperStart() + var yyc3549 bool + if yyl3549 == 0 { + if yyv3549 == nil { + yyv3549 = []LoadBalancerIngress{} + yyc3549 = true + } else if len(yyv3549) != 0 { + yyv3549 = yyv3549[:0] + yyc3549 = true } - } else if yyl3544 > 0 { - var yyrr3544, yyrl3544 int - var yyrt3544 bool - if yyl3544 > cap(yyv3544) { + } else if yyl3549 > 0 { + var yyrr3549, yyrl3549 int + var yyrt3549 bool + if yyl3549 > cap(yyv3549) { - yyrg3544 := len(yyv3544) > 0 - yyv23544 := yyv3544 - yyrl3544, yyrt3544 = z.DecInferLen(yyl3544, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3544 { - if yyrl3544 <= cap(yyv3544) { - yyv3544 = yyv3544[:yyrl3544] + yyrg3549 := len(yyv3549) > 0 + yyv23549 := yyv3549 + yyrl3549, yyrt3549 = z.DecInferLen(yyl3549, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3549 { + if yyrl3549 <= cap(yyv3549) { + yyv3549 = yyv3549[:yyrl3549] } else { - yyv3544 = make([]LoadBalancerIngress, yyrl3544) + yyv3549 = make([]LoadBalancerIngress, yyrl3549) } } else { - yyv3544 = make([]LoadBalancerIngress, yyrl3544) + yyv3549 = make([]LoadBalancerIngress, yyrl3549) } - yyc3544 = true - yyrr3544 = len(yyv3544) - if yyrg3544 { - copy(yyv3544, yyv23544) + yyc3549 = true + yyrr3549 = len(yyv3549) + if yyrg3549 { + copy(yyv3549, yyv23549) } - } else if yyl3544 != len(yyv3544) { - yyv3544 = yyv3544[:yyl3544] - yyc3544 = true + } else if yyl3549 != len(yyv3549) { + yyv3549 = yyv3549[:yyl3549] + yyc3549 = true } - yyj3544 := 0 - for ; yyj3544 < yyrr3544; yyj3544++ { - yyh3544.ElemContainerState(yyj3544) + yyj3549 := 0 + for ; yyj3549 < yyrr3549; yyj3549++ { + yyh3549.ElemContainerState(yyj3549) if r.TryDecodeAsNil() { - yyv3544[yyj3544] = LoadBalancerIngress{} + yyv3549[yyj3549] = LoadBalancerIngress{} } else { - yyv3545 := &yyv3544[yyj3544] - yyv3545.CodecDecodeSelf(d) + yyv3550 := &yyv3549[yyj3549] + yyv3550.CodecDecodeSelf(d) } } - if yyrt3544 { - for ; yyj3544 < yyl3544; yyj3544++ { - yyv3544 = append(yyv3544, LoadBalancerIngress{}) - yyh3544.ElemContainerState(yyj3544) + if yyrt3549 { + for ; yyj3549 < yyl3549; yyj3549++ { + yyv3549 = append(yyv3549, LoadBalancerIngress{}) + yyh3549.ElemContainerState(yyj3549) if r.TryDecodeAsNil() { - yyv3544[yyj3544] = LoadBalancerIngress{} + yyv3549[yyj3549] = LoadBalancerIngress{} } else { - yyv3546 := &yyv3544[yyj3544] - yyv3546.CodecDecodeSelf(d) + yyv3551 := &yyv3549[yyj3549] + yyv3551.CodecDecodeSelf(d) } } } } else { - yyj3544 := 0 - for ; !r.CheckBreak(); yyj3544++ { + yyj3549 := 0 + for ; !r.CheckBreak(); yyj3549++ { - if yyj3544 >= len(yyv3544) { - yyv3544 = append(yyv3544, LoadBalancerIngress{}) // var yyz3544 LoadBalancerIngress - yyc3544 = true + if yyj3549 >= len(yyv3549) { + yyv3549 = append(yyv3549, LoadBalancerIngress{}) // var yyz3549 LoadBalancerIngress + yyc3549 = true } - yyh3544.ElemContainerState(yyj3544) - if yyj3544 < len(yyv3544) { + yyh3549.ElemContainerState(yyj3549) + if yyj3549 < len(yyv3549) { if r.TryDecodeAsNil() { - yyv3544[yyj3544] = LoadBalancerIngress{} + yyv3549[yyj3549] = LoadBalancerIngress{} } else { - yyv3547 := &yyv3544[yyj3544] - yyv3547.CodecDecodeSelf(d) + yyv3552 := &yyv3549[yyj3549] + yyv3552.CodecDecodeSelf(d) } } else { @@ -44627,17 +44675,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3544 < len(yyv3544) { - yyv3544 = yyv3544[:yyj3544] - yyc3544 = true - } else if yyj3544 == 0 && yyv3544 == nil { - yyv3544 = []LoadBalancerIngress{} - yyc3544 = true + if yyj3549 < len(yyv3549) { + yyv3549 = yyv3549[:yyj3549] + yyc3549 = true + } else if yyj3549 == 0 && yyv3549 == nil { + yyv3549 = []LoadBalancerIngress{} + yyc3549 = true } } - yyh3544.End() - if yyc3544 { - *v = yyv3544 + yyh3549.End() + if yyc3549 { + *v = yyv3549 } } @@ -44646,10 +44694,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3548 := range v { + for _, yyv3553 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3549 := &yyv3548 - yy3549.CodecEncodeSelf(e) + yy3554 := &yyv3553 + yy3554.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44659,83 +44707,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3550 := *v - yyh3550, yyl3550 := z.DecSliceHelperStart() - var yyc3550 bool - if yyl3550 == 0 { - if yyv3550 == nil { - yyv3550 = []ServicePort{} - yyc3550 = true - } else if len(yyv3550) != 0 { - yyv3550 = yyv3550[:0] - yyc3550 = true + yyv3555 := *v + yyh3555, yyl3555 := z.DecSliceHelperStart() + var yyc3555 bool + if yyl3555 == 0 { + if yyv3555 == nil { + yyv3555 = []ServicePort{} + yyc3555 = true + } else if len(yyv3555) != 0 { + yyv3555 = yyv3555[:0] + yyc3555 = true } - } else if yyl3550 > 0 { - var yyrr3550, yyrl3550 int - var yyrt3550 bool - if yyl3550 > cap(yyv3550) { + } else if yyl3555 > 0 { + var yyrr3555, yyrl3555 int + var yyrt3555 bool + if yyl3555 > cap(yyv3555) { - yyrg3550 := len(yyv3550) > 0 - yyv23550 := yyv3550 - yyrl3550, yyrt3550 = z.DecInferLen(yyl3550, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3550 { - if yyrl3550 <= cap(yyv3550) { - yyv3550 = yyv3550[:yyrl3550] + yyrg3555 := len(yyv3555) > 0 + yyv23555 := yyv3555 + yyrl3555, yyrt3555 = z.DecInferLen(yyl3555, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3555 { + if yyrl3555 <= cap(yyv3555) { + yyv3555 = yyv3555[:yyrl3555] } else { - yyv3550 = make([]ServicePort, yyrl3550) + yyv3555 = make([]ServicePort, yyrl3555) } } else { - yyv3550 = make([]ServicePort, yyrl3550) + yyv3555 = make([]ServicePort, yyrl3555) } - yyc3550 = true - yyrr3550 = len(yyv3550) - if yyrg3550 { - copy(yyv3550, yyv23550) + yyc3555 = true + yyrr3555 = len(yyv3555) + if yyrg3555 { + copy(yyv3555, yyv23555) } - } else if yyl3550 != len(yyv3550) { - yyv3550 = yyv3550[:yyl3550] - yyc3550 = true + } else if yyl3555 != len(yyv3555) { + yyv3555 = yyv3555[:yyl3555] + yyc3555 = true } - yyj3550 := 0 - for ; yyj3550 < yyrr3550; yyj3550++ { - yyh3550.ElemContainerState(yyj3550) + yyj3555 := 0 + for ; yyj3555 < yyrr3555; yyj3555++ { + yyh3555.ElemContainerState(yyj3555) if r.TryDecodeAsNil() { - yyv3550[yyj3550] = ServicePort{} + yyv3555[yyj3555] = ServicePort{} } else { - yyv3551 := &yyv3550[yyj3550] - yyv3551.CodecDecodeSelf(d) + yyv3556 := &yyv3555[yyj3555] + yyv3556.CodecDecodeSelf(d) } } - if yyrt3550 { - for ; yyj3550 < yyl3550; yyj3550++ { - yyv3550 = append(yyv3550, ServicePort{}) - yyh3550.ElemContainerState(yyj3550) + if yyrt3555 { + for ; yyj3555 < yyl3555; yyj3555++ { + yyv3555 = append(yyv3555, ServicePort{}) + yyh3555.ElemContainerState(yyj3555) if r.TryDecodeAsNil() { - yyv3550[yyj3550] = ServicePort{} + yyv3555[yyj3555] = ServicePort{} } else { - yyv3552 := &yyv3550[yyj3550] - yyv3552.CodecDecodeSelf(d) + yyv3557 := &yyv3555[yyj3555] + yyv3557.CodecDecodeSelf(d) } } } } else { - yyj3550 := 0 - for ; !r.CheckBreak(); yyj3550++ { + yyj3555 := 0 + for ; !r.CheckBreak(); yyj3555++ { - if yyj3550 >= len(yyv3550) { - yyv3550 = append(yyv3550, ServicePort{}) // var yyz3550 ServicePort - yyc3550 = true + if yyj3555 >= len(yyv3555) { + yyv3555 = append(yyv3555, ServicePort{}) // var yyz3555 ServicePort + yyc3555 = true } - yyh3550.ElemContainerState(yyj3550) - if yyj3550 < len(yyv3550) { + yyh3555.ElemContainerState(yyj3555) + if yyj3555 < len(yyv3555) { if r.TryDecodeAsNil() { - yyv3550[yyj3550] = ServicePort{} + yyv3555[yyj3555] = ServicePort{} } else { - yyv3553 := &yyv3550[yyj3550] - yyv3553.CodecDecodeSelf(d) + yyv3558 := &yyv3555[yyj3555] + yyv3558.CodecDecodeSelf(d) } } else { @@ -44743,17 +44791,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3550 < len(yyv3550) { - yyv3550 = yyv3550[:yyj3550] - yyc3550 = true - } else if yyj3550 == 0 && yyv3550 == nil { - yyv3550 = []ServicePort{} - yyc3550 = true + if yyj3555 < len(yyv3555) { + yyv3555 = yyv3555[:yyj3555] + yyc3555 = true + } else if yyj3555 == 0 && yyv3555 == nil { + yyv3555 = []ServicePort{} + yyc3555 = true } } - yyh3550.End() - if yyc3550 { - *v = yyv3550 + yyh3555.End() + if yyc3555 { + *v = yyv3555 } } @@ -44762,10 +44810,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3554 := range v { + for _, yyv3559 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3555 := &yyv3554 - yy3555.CodecEncodeSelf(e) + yy3560 := &yyv3559 + yy3560.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44775,83 +44823,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3556 := *v - yyh3556, yyl3556 := z.DecSliceHelperStart() - var yyc3556 bool - if yyl3556 == 0 { - if yyv3556 == nil { - yyv3556 = []ObjectReference{} - yyc3556 = true - } else if len(yyv3556) != 0 { - yyv3556 = yyv3556[:0] - yyc3556 = true + yyv3561 := *v + yyh3561, yyl3561 := z.DecSliceHelperStart() + var yyc3561 bool + if yyl3561 == 0 { + if yyv3561 == nil { + yyv3561 = []ObjectReference{} + yyc3561 = true + } else if len(yyv3561) != 0 { + yyv3561 = yyv3561[:0] + yyc3561 = true } - } else if yyl3556 > 0 { - var yyrr3556, yyrl3556 int - var yyrt3556 bool - if yyl3556 > cap(yyv3556) { + } else if yyl3561 > 0 { + var yyrr3561, yyrl3561 int + var yyrt3561 bool + if yyl3561 > cap(yyv3561) { - yyrg3556 := len(yyv3556) > 0 - yyv23556 := yyv3556 - yyrl3556, yyrt3556 = z.DecInferLen(yyl3556, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3556 { - if yyrl3556 <= cap(yyv3556) { - yyv3556 = yyv3556[:yyrl3556] + yyrg3561 := len(yyv3561) > 0 + yyv23561 := yyv3561 + yyrl3561, yyrt3561 = z.DecInferLen(yyl3561, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3561 { + if yyrl3561 <= cap(yyv3561) { + yyv3561 = yyv3561[:yyrl3561] } else { - yyv3556 = make([]ObjectReference, yyrl3556) + yyv3561 = make([]ObjectReference, yyrl3561) } } else { - yyv3556 = make([]ObjectReference, yyrl3556) + yyv3561 = make([]ObjectReference, yyrl3561) } - yyc3556 = true - yyrr3556 = len(yyv3556) - if yyrg3556 { - copy(yyv3556, yyv23556) + yyc3561 = true + yyrr3561 = len(yyv3561) + if yyrg3561 { + copy(yyv3561, yyv23561) } - } else if yyl3556 != len(yyv3556) { - yyv3556 = yyv3556[:yyl3556] - yyc3556 = true + } else if yyl3561 != len(yyv3561) { + yyv3561 = yyv3561[:yyl3561] + yyc3561 = true } - yyj3556 := 0 - for ; yyj3556 < yyrr3556; yyj3556++ { - yyh3556.ElemContainerState(yyj3556) + yyj3561 := 0 + for ; yyj3561 < yyrr3561; yyj3561++ { + yyh3561.ElemContainerState(yyj3561) if r.TryDecodeAsNil() { - yyv3556[yyj3556] = ObjectReference{} + yyv3561[yyj3561] = ObjectReference{} } else { - yyv3557 := &yyv3556[yyj3556] - yyv3557.CodecDecodeSelf(d) + yyv3562 := &yyv3561[yyj3561] + yyv3562.CodecDecodeSelf(d) } } - if yyrt3556 { - for ; yyj3556 < yyl3556; yyj3556++ { - yyv3556 = append(yyv3556, ObjectReference{}) - yyh3556.ElemContainerState(yyj3556) + if yyrt3561 { + for ; yyj3561 < yyl3561; yyj3561++ { + yyv3561 = append(yyv3561, ObjectReference{}) + yyh3561.ElemContainerState(yyj3561) if r.TryDecodeAsNil() { - yyv3556[yyj3556] = ObjectReference{} + yyv3561[yyj3561] = ObjectReference{} } else { - yyv3558 := &yyv3556[yyj3556] - yyv3558.CodecDecodeSelf(d) + yyv3563 := &yyv3561[yyj3561] + yyv3563.CodecDecodeSelf(d) } } } } else { - yyj3556 := 0 - for ; !r.CheckBreak(); yyj3556++ { + yyj3561 := 0 + for ; !r.CheckBreak(); yyj3561++ { - if yyj3556 >= len(yyv3556) { - yyv3556 = append(yyv3556, ObjectReference{}) // var yyz3556 ObjectReference - yyc3556 = true + if yyj3561 >= len(yyv3561) { + yyv3561 = append(yyv3561, ObjectReference{}) // var yyz3561 ObjectReference + yyc3561 = true } - yyh3556.ElemContainerState(yyj3556) - if yyj3556 < len(yyv3556) { + yyh3561.ElemContainerState(yyj3561) + if yyj3561 < len(yyv3561) { if r.TryDecodeAsNil() { - yyv3556[yyj3556] = ObjectReference{} + yyv3561[yyj3561] = ObjectReference{} } else { - yyv3559 := &yyv3556[yyj3556] - yyv3559.CodecDecodeSelf(d) + yyv3564 := &yyv3561[yyj3561] + yyv3564.CodecDecodeSelf(d) } } else { @@ -44859,17 +44907,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3556 < len(yyv3556) { - yyv3556 = yyv3556[:yyj3556] - yyc3556 = true - } else if yyj3556 == 0 && yyv3556 == nil { - yyv3556 = []ObjectReference{} - yyc3556 = true + if yyj3561 < len(yyv3561) { + yyv3561 = yyv3561[:yyj3561] + yyc3561 = true + } else if yyj3561 == 0 && yyv3561 == nil { + yyv3561 = []ObjectReference{} + yyc3561 = true } } - yyh3556.End() - if yyc3556 { - *v = yyv3556 + yyh3561.End() + if yyc3561 { + *v = yyv3561 } } @@ -44878,10 +44926,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3560 := range v { + for _, yyv3565 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3561 := &yyv3560 - yy3561.CodecEncodeSelf(e) + yy3566 := &yyv3565 + yy3566.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44891,83 +44939,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3562 := *v - yyh3562, yyl3562 := z.DecSliceHelperStart() - var yyc3562 bool - if yyl3562 == 0 { - if yyv3562 == nil { - yyv3562 = []ServiceAccount{} - yyc3562 = true - } else if len(yyv3562) != 0 { - yyv3562 = yyv3562[:0] - yyc3562 = true + yyv3567 := *v + yyh3567, yyl3567 := z.DecSliceHelperStart() + var yyc3567 bool + if yyl3567 == 0 { + if yyv3567 == nil { + yyv3567 = []ServiceAccount{} + yyc3567 = true + } else if len(yyv3567) != 0 { + yyv3567 = yyv3567[:0] + yyc3567 = true } - } else if yyl3562 > 0 { - var yyrr3562, yyrl3562 int - var yyrt3562 bool - if yyl3562 > cap(yyv3562) { + } else if yyl3567 > 0 { + var yyrr3567, yyrl3567 int + var yyrt3567 bool + if yyl3567 > cap(yyv3567) { - yyrg3562 := len(yyv3562) > 0 - yyv23562 := yyv3562 - yyrl3562, yyrt3562 = z.DecInferLen(yyl3562, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3562 { - if yyrl3562 <= cap(yyv3562) { - yyv3562 = yyv3562[:yyrl3562] + yyrg3567 := len(yyv3567) > 0 + yyv23567 := yyv3567 + yyrl3567, yyrt3567 = z.DecInferLen(yyl3567, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3567 { + if yyrl3567 <= cap(yyv3567) { + yyv3567 = yyv3567[:yyrl3567] } else { - yyv3562 = make([]ServiceAccount, yyrl3562) + yyv3567 = make([]ServiceAccount, yyrl3567) } } else { - yyv3562 = make([]ServiceAccount, yyrl3562) + yyv3567 = make([]ServiceAccount, yyrl3567) } - yyc3562 = true - yyrr3562 = len(yyv3562) - if yyrg3562 { - copy(yyv3562, yyv23562) + yyc3567 = true + yyrr3567 = len(yyv3567) + if yyrg3567 { + copy(yyv3567, yyv23567) } - } else if yyl3562 != len(yyv3562) { - yyv3562 = yyv3562[:yyl3562] - yyc3562 = true + } else if yyl3567 != len(yyv3567) { + yyv3567 = yyv3567[:yyl3567] + yyc3567 = true } - yyj3562 := 0 - for ; yyj3562 < yyrr3562; yyj3562++ { - yyh3562.ElemContainerState(yyj3562) + yyj3567 := 0 + for ; yyj3567 < yyrr3567; yyj3567++ { + yyh3567.ElemContainerState(yyj3567) if r.TryDecodeAsNil() { - yyv3562[yyj3562] = ServiceAccount{} + yyv3567[yyj3567] = ServiceAccount{} } else { - yyv3563 := &yyv3562[yyj3562] - yyv3563.CodecDecodeSelf(d) + yyv3568 := &yyv3567[yyj3567] + yyv3568.CodecDecodeSelf(d) } } - if yyrt3562 { - for ; yyj3562 < yyl3562; yyj3562++ { - yyv3562 = append(yyv3562, ServiceAccount{}) - yyh3562.ElemContainerState(yyj3562) + if yyrt3567 { + for ; yyj3567 < yyl3567; yyj3567++ { + yyv3567 = append(yyv3567, ServiceAccount{}) + yyh3567.ElemContainerState(yyj3567) if r.TryDecodeAsNil() { - yyv3562[yyj3562] = ServiceAccount{} + yyv3567[yyj3567] = ServiceAccount{} } else { - yyv3564 := &yyv3562[yyj3562] - yyv3564.CodecDecodeSelf(d) + yyv3569 := &yyv3567[yyj3567] + yyv3569.CodecDecodeSelf(d) } } } } else { - yyj3562 := 0 - for ; !r.CheckBreak(); yyj3562++ { + yyj3567 := 0 + for ; !r.CheckBreak(); yyj3567++ { - if yyj3562 >= len(yyv3562) { - yyv3562 = append(yyv3562, ServiceAccount{}) // var yyz3562 ServiceAccount - yyc3562 = true + if yyj3567 >= len(yyv3567) { + yyv3567 = append(yyv3567, ServiceAccount{}) // var yyz3567 ServiceAccount + yyc3567 = true } - yyh3562.ElemContainerState(yyj3562) - if yyj3562 < len(yyv3562) { + yyh3567.ElemContainerState(yyj3567) + if yyj3567 < len(yyv3567) { if r.TryDecodeAsNil() { - yyv3562[yyj3562] = ServiceAccount{} + yyv3567[yyj3567] = ServiceAccount{} } else { - yyv3565 := &yyv3562[yyj3562] - yyv3565.CodecDecodeSelf(d) + yyv3570 := &yyv3567[yyj3567] + yyv3570.CodecDecodeSelf(d) } } else { @@ -44975,17 +45023,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3562 < len(yyv3562) { - yyv3562 = yyv3562[:yyj3562] - yyc3562 = true - } else if yyj3562 == 0 && yyv3562 == nil { - yyv3562 = []ServiceAccount{} - yyc3562 = true + if yyj3567 < len(yyv3567) { + yyv3567 = yyv3567[:yyj3567] + yyc3567 = true + } else if yyj3567 == 0 && yyv3567 == nil { + yyv3567 = []ServiceAccount{} + yyc3567 = true } } - yyh3562.End() - if yyc3562 { - *v = yyv3562 + yyh3567.End() + if yyc3567 { + *v = yyv3567 } } @@ -44994,10 +45042,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3566 := range v { + for _, yyv3571 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3567 := &yyv3566 - yy3567.CodecEncodeSelf(e) + yy3572 := &yyv3571 + yy3572.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45007,83 +45055,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3568 := *v - yyh3568, yyl3568 := z.DecSliceHelperStart() - var yyc3568 bool - if yyl3568 == 0 { - if yyv3568 == nil { - yyv3568 = []EndpointSubset{} - yyc3568 = true - } else if len(yyv3568) != 0 { - yyv3568 = yyv3568[:0] - yyc3568 = true + yyv3573 := *v + yyh3573, yyl3573 := z.DecSliceHelperStart() + var yyc3573 bool + if yyl3573 == 0 { + if yyv3573 == nil { + yyv3573 = []EndpointSubset{} + yyc3573 = true + } else if len(yyv3573) != 0 { + yyv3573 = yyv3573[:0] + yyc3573 = true } - } else if yyl3568 > 0 { - var yyrr3568, yyrl3568 int - var yyrt3568 bool - if yyl3568 > cap(yyv3568) { + } else if yyl3573 > 0 { + var yyrr3573, yyrl3573 int + var yyrt3573 bool + if yyl3573 > cap(yyv3573) { - yyrg3568 := len(yyv3568) > 0 - yyv23568 := yyv3568 - yyrl3568, yyrt3568 = z.DecInferLen(yyl3568, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3568 { - if yyrl3568 <= cap(yyv3568) { - yyv3568 = yyv3568[:yyrl3568] + yyrg3573 := len(yyv3573) > 0 + yyv23573 := yyv3573 + yyrl3573, yyrt3573 = z.DecInferLen(yyl3573, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3573 { + if yyrl3573 <= cap(yyv3573) { + yyv3573 = yyv3573[:yyrl3573] } else { - yyv3568 = make([]EndpointSubset, yyrl3568) + yyv3573 = make([]EndpointSubset, yyrl3573) } } else { - yyv3568 = make([]EndpointSubset, yyrl3568) + yyv3573 = make([]EndpointSubset, yyrl3573) } - yyc3568 = true - yyrr3568 = len(yyv3568) - if yyrg3568 { - copy(yyv3568, yyv23568) + yyc3573 = true + yyrr3573 = len(yyv3573) + if yyrg3573 { + copy(yyv3573, yyv23573) } - } else if yyl3568 != len(yyv3568) { - yyv3568 = yyv3568[:yyl3568] - yyc3568 = true + } else if yyl3573 != len(yyv3573) { + yyv3573 = yyv3573[:yyl3573] + yyc3573 = true } - yyj3568 := 0 - for ; yyj3568 < yyrr3568; yyj3568++ { - yyh3568.ElemContainerState(yyj3568) + yyj3573 := 0 + for ; yyj3573 < yyrr3573; yyj3573++ { + yyh3573.ElemContainerState(yyj3573) if r.TryDecodeAsNil() { - yyv3568[yyj3568] = EndpointSubset{} + yyv3573[yyj3573] = EndpointSubset{} } else { - yyv3569 := &yyv3568[yyj3568] - yyv3569.CodecDecodeSelf(d) + yyv3574 := &yyv3573[yyj3573] + yyv3574.CodecDecodeSelf(d) } } - if yyrt3568 { - for ; yyj3568 < yyl3568; yyj3568++ { - yyv3568 = append(yyv3568, EndpointSubset{}) - yyh3568.ElemContainerState(yyj3568) + if yyrt3573 { + for ; yyj3573 < yyl3573; yyj3573++ { + yyv3573 = append(yyv3573, EndpointSubset{}) + yyh3573.ElemContainerState(yyj3573) if r.TryDecodeAsNil() { - yyv3568[yyj3568] = EndpointSubset{} + yyv3573[yyj3573] = EndpointSubset{} } else { - yyv3570 := &yyv3568[yyj3568] - yyv3570.CodecDecodeSelf(d) + yyv3575 := &yyv3573[yyj3573] + yyv3575.CodecDecodeSelf(d) } } } } else { - yyj3568 := 0 - for ; !r.CheckBreak(); yyj3568++ { + yyj3573 := 0 + for ; !r.CheckBreak(); yyj3573++ { - if yyj3568 >= len(yyv3568) { - yyv3568 = append(yyv3568, EndpointSubset{}) // var yyz3568 EndpointSubset - yyc3568 = true + if yyj3573 >= len(yyv3573) { + yyv3573 = append(yyv3573, EndpointSubset{}) // var yyz3573 EndpointSubset + yyc3573 = true } - yyh3568.ElemContainerState(yyj3568) - if yyj3568 < len(yyv3568) { + yyh3573.ElemContainerState(yyj3573) + if yyj3573 < len(yyv3573) { if r.TryDecodeAsNil() { - yyv3568[yyj3568] = EndpointSubset{} + yyv3573[yyj3573] = EndpointSubset{} } else { - yyv3571 := &yyv3568[yyj3568] - yyv3571.CodecDecodeSelf(d) + yyv3576 := &yyv3573[yyj3573] + yyv3576.CodecDecodeSelf(d) } } else { @@ -45091,17 +45139,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3568 < len(yyv3568) { - yyv3568 = yyv3568[:yyj3568] - yyc3568 = true - } else if yyj3568 == 0 && yyv3568 == nil { - yyv3568 = []EndpointSubset{} - yyc3568 = true + if yyj3573 < len(yyv3573) { + yyv3573 = yyv3573[:yyj3573] + yyc3573 = true + } else if yyj3573 == 0 && yyv3573 == nil { + yyv3573 = []EndpointSubset{} + yyc3573 = true } } - yyh3568.End() - if yyc3568 { - *v = yyv3568 + yyh3573.End() + if yyc3573 { + *v = yyv3573 } } @@ -45110,10 +45158,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3572 := range v { + for _, yyv3577 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3573 := &yyv3572 - yy3573.CodecEncodeSelf(e) + yy3578 := &yyv3577 + yy3578.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45123,83 +45171,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3574 := *v - yyh3574, yyl3574 := z.DecSliceHelperStart() - var yyc3574 bool - if yyl3574 == 0 { - if yyv3574 == nil { - yyv3574 = []EndpointAddress{} - yyc3574 = true - } else if len(yyv3574) != 0 { - yyv3574 = yyv3574[:0] - yyc3574 = true + yyv3579 := *v + yyh3579, yyl3579 := z.DecSliceHelperStart() + var yyc3579 bool + if yyl3579 == 0 { + if yyv3579 == nil { + yyv3579 = []EndpointAddress{} + yyc3579 = true + } else if len(yyv3579) != 0 { + yyv3579 = yyv3579[:0] + yyc3579 = true } - } else if yyl3574 > 0 { - var yyrr3574, yyrl3574 int - var yyrt3574 bool - if yyl3574 > cap(yyv3574) { + } else if yyl3579 > 0 { + var yyrr3579, yyrl3579 int + var yyrt3579 bool + if yyl3579 > cap(yyv3579) { - yyrg3574 := len(yyv3574) > 0 - yyv23574 := yyv3574 - yyrl3574, yyrt3574 = z.DecInferLen(yyl3574, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3574 { - if yyrl3574 <= cap(yyv3574) { - yyv3574 = yyv3574[:yyrl3574] + yyrg3579 := len(yyv3579) > 0 + yyv23579 := yyv3579 + yyrl3579, yyrt3579 = z.DecInferLen(yyl3579, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3579 { + if yyrl3579 <= cap(yyv3579) { + yyv3579 = yyv3579[:yyrl3579] } else { - yyv3574 = make([]EndpointAddress, yyrl3574) + yyv3579 = make([]EndpointAddress, yyrl3579) } } else { - yyv3574 = make([]EndpointAddress, yyrl3574) + yyv3579 = make([]EndpointAddress, yyrl3579) } - yyc3574 = true - yyrr3574 = len(yyv3574) - if yyrg3574 { - copy(yyv3574, yyv23574) + yyc3579 = true + yyrr3579 = len(yyv3579) + if yyrg3579 { + copy(yyv3579, yyv23579) } - } else if yyl3574 != len(yyv3574) { - yyv3574 = yyv3574[:yyl3574] - yyc3574 = true + } else if yyl3579 != len(yyv3579) { + yyv3579 = yyv3579[:yyl3579] + yyc3579 = true } - yyj3574 := 0 - for ; yyj3574 < yyrr3574; yyj3574++ { - yyh3574.ElemContainerState(yyj3574) + yyj3579 := 0 + for ; yyj3579 < yyrr3579; yyj3579++ { + yyh3579.ElemContainerState(yyj3579) if r.TryDecodeAsNil() { - yyv3574[yyj3574] = EndpointAddress{} + yyv3579[yyj3579] = EndpointAddress{} } else { - yyv3575 := &yyv3574[yyj3574] - yyv3575.CodecDecodeSelf(d) + yyv3580 := &yyv3579[yyj3579] + yyv3580.CodecDecodeSelf(d) } } - if yyrt3574 { - for ; yyj3574 < yyl3574; yyj3574++ { - yyv3574 = append(yyv3574, EndpointAddress{}) - yyh3574.ElemContainerState(yyj3574) + if yyrt3579 { + for ; yyj3579 < yyl3579; yyj3579++ { + yyv3579 = append(yyv3579, EndpointAddress{}) + yyh3579.ElemContainerState(yyj3579) if r.TryDecodeAsNil() { - yyv3574[yyj3574] = EndpointAddress{} + yyv3579[yyj3579] = EndpointAddress{} } else { - yyv3576 := &yyv3574[yyj3574] - yyv3576.CodecDecodeSelf(d) + yyv3581 := &yyv3579[yyj3579] + yyv3581.CodecDecodeSelf(d) } } } } else { - yyj3574 := 0 - for ; !r.CheckBreak(); yyj3574++ { + yyj3579 := 0 + for ; !r.CheckBreak(); yyj3579++ { - if yyj3574 >= len(yyv3574) { - yyv3574 = append(yyv3574, EndpointAddress{}) // var yyz3574 EndpointAddress - yyc3574 = true + if yyj3579 >= len(yyv3579) { + yyv3579 = append(yyv3579, EndpointAddress{}) // var yyz3579 EndpointAddress + yyc3579 = true } - yyh3574.ElemContainerState(yyj3574) - if yyj3574 < len(yyv3574) { + yyh3579.ElemContainerState(yyj3579) + if yyj3579 < len(yyv3579) { if r.TryDecodeAsNil() { - yyv3574[yyj3574] = EndpointAddress{} + yyv3579[yyj3579] = EndpointAddress{} } else { - yyv3577 := &yyv3574[yyj3574] - yyv3577.CodecDecodeSelf(d) + yyv3582 := &yyv3579[yyj3579] + yyv3582.CodecDecodeSelf(d) } } else { @@ -45207,17 +45255,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3574 < len(yyv3574) { - yyv3574 = yyv3574[:yyj3574] - yyc3574 = true - } else if yyj3574 == 0 && yyv3574 == nil { - yyv3574 = []EndpointAddress{} - yyc3574 = true + if yyj3579 < len(yyv3579) { + yyv3579 = yyv3579[:yyj3579] + yyc3579 = true + } else if yyj3579 == 0 && yyv3579 == nil { + yyv3579 = []EndpointAddress{} + yyc3579 = true } } - yyh3574.End() - if yyc3574 { - *v = yyv3574 + yyh3579.End() + if yyc3579 { + *v = yyv3579 } } @@ -45226,10 +45274,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3578 := range v { + for _, yyv3583 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3579 := &yyv3578 - yy3579.CodecEncodeSelf(e) + yy3584 := &yyv3583 + yy3584.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45239,83 +45287,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3580 := *v - yyh3580, yyl3580 := z.DecSliceHelperStart() - var yyc3580 bool - if yyl3580 == 0 { - if yyv3580 == nil { - yyv3580 = []EndpointPort{} - yyc3580 = true - } else if len(yyv3580) != 0 { - yyv3580 = yyv3580[:0] - yyc3580 = true + yyv3585 := *v + yyh3585, yyl3585 := z.DecSliceHelperStart() + var yyc3585 bool + if yyl3585 == 0 { + if yyv3585 == nil { + yyv3585 = []EndpointPort{} + yyc3585 = true + } else if len(yyv3585) != 0 { + yyv3585 = yyv3585[:0] + yyc3585 = true } - } else if yyl3580 > 0 { - var yyrr3580, yyrl3580 int - var yyrt3580 bool - if yyl3580 > cap(yyv3580) { + } else if yyl3585 > 0 { + var yyrr3585, yyrl3585 int + var yyrt3585 bool + if yyl3585 > cap(yyv3585) { - yyrg3580 := len(yyv3580) > 0 - yyv23580 := yyv3580 - yyrl3580, yyrt3580 = z.DecInferLen(yyl3580, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3580 { - if yyrl3580 <= cap(yyv3580) { - yyv3580 = yyv3580[:yyrl3580] + yyrg3585 := len(yyv3585) > 0 + yyv23585 := yyv3585 + yyrl3585, yyrt3585 = z.DecInferLen(yyl3585, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3585 { + if yyrl3585 <= cap(yyv3585) { + yyv3585 = yyv3585[:yyrl3585] } else { - yyv3580 = make([]EndpointPort, yyrl3580) + yyv3585 = make([]EndpointPort, yyrl3585) } } else { - yyv3580 = make([]EndpointPort, yyrl3580) + yyv3585 = make([]EndpointPort, yyrl3585) } - yyc3580 = true - yyrr3580 = len(yyv3580) - if yyrg3580 { - copy(yyv3580, yyv23580) + yyc3585 = true + yyrr3585 = len(yyv3585) + if yyrg3585 { + copy(yyv3585, yyv23585) } - } else if yyl3580 != len(yyv3580) { - yyv3580 = yyv3580[:yyl3580] - yyc3580 = true + } else if yyl3585 != len(yyv3585) { + yyv3585 = yyv3585[:yyl3585] + yyc3585 = true } - yyj3580 := 0 - for ; yyj3580 < yyrr3580; yyj3580++ { - yyh3580.ElemContainerState(yyj3580) + yyj3585 := 0 + for ; yyj3585 < yyrr3585; yyj3585++ { + yyh3585.ElemContainerState(yyj3585) if r.TryDecodeAsNil() { - yyv3580[yyj3580] = EndpointPort{} + yyv3585[yyj3585] = EndpointPort{} } else { - yyv3581 := &yyv3580[yyj3580] - yyv3581.CodecDecodeSelf(d) + yyv3586 := &yyv3585[yyj3585] + yyv3586.CodecDecodeSelf(d) } } - if yyrt3580 { - for ; yyj3580 < yyl3580; yyj3580++ { - yyv3580 = append(yyv3580, EndpointPort{}) - yyh3580.ElemContainerState(yyj3580) + if yyrt3585 { + for ; yyj3585 < yyl3585; yyj3585++ { + yyv3585 = append(yyv3585, EndpointPort{}) + yyh3585.ElemContainerState(yyj3585) if r.TryDecodeAsNil() { - yyv3580[yyj3580] = EndpointPort{} + yyv3585[yyj3585] = EndpointPort{} } else { - yyv3582 := &yyv3580[yyj3580] - yyv3582.CodecDecodeSelf(d) + yyv3587 := &yyv3585[yyj3585] + yyv3587.CodecDecodeSelf(d) } } } } else { - yyj3580 := 0 - for ; !r.CheckBreak(); yyj3580++ { + yyj3585 := 0 + for ; !r.CheckBreak(); yyj3585++ { - if yyj3580 >= len(yyv3580) { - yyv3580 = append(yyv3580, EndpointPort{}) // var yyz3580 EndpointPort - yyc3580 = true + if yyj3585 >= len(yyv3585) { + yyv3585 = append(yyv3585, EndpointPort{}) // var yyz3585 EndpointPort + yyc3585 = true } - yyh3580.ElemContainerState(yyj3580) - if yyj3580 < len(yyv3580) { + yyh3585.ElemContainerState(yyj3585) + if yyj3585 < len(yyv3585) { if r.TryDecodeAsNil() { - yyv3580[yyj3580] = EndpointPort{} + yyv3585[yyj3585] = EndpointPort{} } else { - yyv3583 := &yyv3580[yyj3580] - yyv3583.CodecDecodeSelf(d) + yyv3588 := &yyv3585[yyj3585] + yyv3588.CodecDecodeSelf(d) } } else { @@ -45323,17 +45371,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3580 < len(yyv3580) { - yyv3580 = yyv3580[:yyj3580] - yyc3580 = true - } else if yyj3580 == 0 && yyv3580 == nil { - yyv3580 = []EndpointPort{} - yyc3580 = true + if yyj3585 < len(yyv3585) { + yyv3585 = yyv3585[:yyj3585] + yyc3585 = true + } else if yyj3585 == 0 && yyv3585 == nil { + yyv3585 = []EndpointPort{} + yyc3585 = true } } - yyh3580.End() - if yyc3580 { - *v = yyv3580 + yyh3585.End() + if yyc3585 { + *v = yyv3585 } } @@ -45342,10 +45390,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3584 := range v { + for _, yyv3589 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3585 := &yyv3584 - yy3585.CodecEncodeSelf(e) + yy3590 := &yyv3589 + yy3590.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45355,83 +45403,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3586 := *v - yyh3586, yyl3586 := z.DecSliceHelperStart() - var yyc3586 bool - if yyl3586 == 0 { - if yyv3586 == nil { - yyv3586 = []Endpoints{} - yyc3586 = true - } else if len(yyv3586) != 0 { - yyv3586 = yyv3586[:0] - yyc3586 = true + yyv3591 := *v + yyh3591, yyl3591 := z.DecSliceHelperStart() + var yyc3591 bool + if yyl3591 == 0 { + if yyv3591 == nil { + yyv3591 = []Endpoints{} + yyc3591 = true + } else if len(yyv3591) != 0 { + yyv3591 = yyv3591[:0] + yyc3591 = true } - } else if yyl3586 > 0 { - var yyrr3586, yyrl3586 int - var yyrt3586 bool - if yyl3586 > cap(yyv3586) { + } else if yyl3591 > 0 { + var yyrr3591, yyrl3591 int + var yyrt3591 bool + if yyl3591 > cap(yyv3591) { - yyrg3586 := len(yyv3586) > 0 - yyv23586 := yyv3586 - yyrl3586, yyrt3586 = z.DecInferLen(yyl3586, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3586 { - if yyrl3586 <= cap(yyv3586) { - yyv3586 = yyv3586[:yyrl3586] + yyrg3591 := len(yyv3591) > 0 + yyv23591 := yyv3591 + yyrl3591, yyrt3591 = z.DecInferLen(yyl3591, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3591 { + if yyrl3591 <= cap(yyv3591) { + yyv3591 = yyv3591[:yyrl3591] } else { - yyv3586 = make([]Endpoints, yyrl3586) + yyv3591 = make([]Endpoints, yyrl3591) } } else { - yyv3586 = make([]Endpoints, yyrl3586) + yyv3591 = make([]Endpoints, yyrl3591) } - yyc3586 = true - yyrr3586 = len(yyv3586) - if yyrg3586 { - copy(yyv3586, yyv23586) + yyc3591 = true + yyrr3591 = len(yyv3591) + if yyrg3591 { + copy(yyv3591, yyv23591) } - } else if yyl3586 != len(yyv3586) { - yyv3586 = yyv3586[:yyl3586] - yyc3586 = true + } else if yyl3591 != len(yyv3591) { + yyv3591 = yyv3591[:yyl3591] + yyc3591 = true } - yyj3586 := 0 - for ; yyj3586 < yyrr3586; yyj3586++ { - yyh3586.ElemContainerState(yyj3586) + yyj3591 := 0 + for ; yyj3591 < yyrr3591; yyj3591++ { + yyh3591.ElemContainerState(yyj3591) if r.TryDecodeAsNil() { - yyv3586[yyj3586] = Endpoints{} + yyv3591[yyj3591] = Endpoints{} } else { - yyv3587 := &yyv3586[yyj3586] - yyv3587.CodecDecodeSelf(d) + yyv3592 := &yyv3591[yyj3591] + yyv3592.CodecDecodeSelf(d) } } - if yyrt3586 { - for ; yyj3586 < yyl3586; yyj3586++ { - yyv3586 = append(yyv3586, Endpoints{}) - yyh3586.ElemContainerState(yyj3586) + if yyrt3591 { + for ; yyj3591 < yyl3591; yyj3591++ { + yyv3591 = append(yyv3591, Endpoints{}) + yyh3591.ElemContainerState(yyj3591) if r.TryDecodeAsNil() { - yyv3586[yyj3586] = Endpoints{} + yyv3591[yyj3591] = Endpoints{} } else { - yyv3588 := &yyv3586[yyj3586] - yyv3588.CodecDecodeSelf(d) + yyv3593 := &yyv3591[yyj3591] + yyv3593.CodecDecodeSelf(d) } } } } else { - yyj3586 := 0 - for ; !r.CheckBreak(); yyj3586++ { + yyj3591 := 0 + for ; !r.CheckBreak(); yyj3591++ { - if yyj3586 >= len(yyv3586) { - yyv3586 = append(yyv3586, Endpoints{}) // var yyz3586 Endpoints - yyc3586 = true + if yyj3591 >= len(yyv3591) { + yyv3591 = append(yyv3591, Endpoints{}) // var yyz3591 Endpoints + yyc3591 = true } - yyh3586.ElemContainerState(yyj3586) - if yyj3586 < len(yyv3586) { + yyh3591.ElemContainerState(yyj3591) + if yyj3591 < len(yyv3591) { if r.TryDecodeAsNil() { - yyv3586[yyj3586] = Endpoints{} + yyv3591[yyj3591] = Endpoints{} } else { - yyv3589 := &yyv3586[yyj3586] - yyv3589.CodecDecodeSelf(d) + yyv3594 := &yyv3591[yyj3591] + yyv3594.CodecDecodeSelf(d) } } else { @@ -45439,17 +45487,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3586 < len(yyv3586) { - yyv3586 = yyv3586[:yyj3586] - yyc3586 = true - } else if yyj3586 == 0 && yyv3586 == nil { - yyv3586 = []Endpoints{} - yyc3586 = true + if yyj3591 < len(yyv3591) { + yyv3591 = yyv3591[:yyj3591] + yyc3591 = true + } else if yyj3591 == 0 && yyv3591 == nil { + yyv3591 = []Endpoints{} + yyc3591 = true } } - yyh3586.End() - if yyc3586 { - *v = yyv3586 + yyh3591.End() + if yyc3591 { + *v = yyv3591 } } @@ -45458,10 +45506,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3590 := range v { + for _, yyv3595 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3591 := &yyv3590 - yy3591.CodecEncodeSelf(e) + yy3596 := &yyv3595 + yy3596.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45471,83 +45519,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3592 := *v - yyh3592, yyl3592 := z.DecSliceHelperStart() - var yyc3592 bool - if yyl3592 == 0 { - if yyv3592 == nil { - yyv3592 = []NodeCondition{} - yyc3592 = true - } else if len(yyv3592) != 0 { - yyv3592 = yyv3592[:0] - yyc3592 = true + yyv3597 := *v + yyh3597, yyl3597 := z.DecSliceHelperStart() + var yyc3597 bool + if yyl3597 == 0 { + if yyv3597 == nil { + yyv3597 = []NodeCondition{} + yyc3597 = true + } else if len(yyv3597) != 0 { + yyv3597 = yyv3597[:0] + yyc3597 = true } - } else if yyl3592 > 0 { - var yyrr3592, yyrl3592 int - var yyrt3592 bool - if yyl3592 > cap(yyv3592) { + } else if yyl3597 > 0 { + var yyrr3597, yyrl3597 int + var yyrt3597 bool + if yyl3597 > cap(yyv3597) { - yyrg3592 := len(yyv3592) > 0 - yyv23592 := yyv3592 - yyrl3592, yyrt3592 = z.DecInferLen(yyl3592, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3592 { - if yyrl3592 <= cap(yyv3592) { - yyv3592 = yyv3592[:yyrl3592] + yyrg3597 := len(yyv3597) > 0 + yyv23597 := yyv3597 + yyrl3597, yyrt3597 = z.DecInferLen(yyl3597, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3597 { + if yyrl3597 <= cap(yyv3597) { + yyv3597 = yyv3597[:yyrl3597] } else { - yyv3592 = make([]NodeCondition, yyrl3592) + yyv3597 = make([]NodeCondition, yyrl3597) } } else { - yyv3592 = make([]NodeCondition, yyrl3592) + yyv3597 = make([]NodeCondition, yyrl3597) } - yyc3592 = true - yyrr3592 = len(yyv3592) - if yyrg3592 { - copy(yyv3592, yyv23592) + yyc3597 = true + yyrr3597 = len(yyv3597) + if yyrg3597 { + copy(yyv3597, yyv23597) } - } else if yyl3592 != len(yyv3592) { - yyv3592 = yyv3592[:yyl3592] - yyc3592 = true + } else if yyl3597 != len(yyv3597) { + yyv3597 = yyv3597[:yyl3597] + yyc3597 = true } - yyj3592 := 0 - for ; yyj3592 < yyrr3592; yyj3592++ { - yyh3592.ElemContainerState(yyj3592) + yyj3597 := 0 + for ; yyj3597 < yyrr3597; yyj3597++ { + yyh3597.ElemContainerState(yyj3597) if r.TryDecodeAsNil() { - yyv3592[yyj3592] = NodeCondition{} + yyv3597[yyj3597] = NodeCondition{} } else { - yyv3593 := &yyv3592[yyj3592] - yyv3593.CodecDecodeSelf(d) + yyv3598 := &yyv3597[yyj3597] + yyv3598.CodecDecodeSelf(d) } } - if yyrt3592 { - for ; yyj3592 < yyl3592; yyj3592++ { - yyv3592 = append(yyv3592, NodeCondition{}) - yyh3592.ElemContainerState(yyj3592) + if yyrt3597 { + for ; yyj3597 < yyl3597; yyj3597++ { + yyv3597 = append(yyv3597, NodeCondition{}) + yyh3597.ElemContainerState(yyj3597) if r.TryDecodeAsNil() { - yyv3592[yyj3592] = NodeCondition{} + yyv3597[yyj3597] = NodeCondition{} } else { - yyv3594 := &yyv3592[yyj3592] - yyv3594.CodecDecodeSelf(d) + yyv3599 := &yyv3597[yyj3597] + yyv3599.CodecDecodeSelf(d) } } } } else { - yyj3592 := 0 - for ; !r.CheckBreak(); yyj3592++ { + yyj3597 := 0 + for ; !r.CheckBreak(); yyj3597++ { - if yyj3592 >= len(yyv3592) { - yyv3592 = append(yyv3592, NodeCondition{}) // var yyz3592 NodeCondition - yyc3592 = true + if yyj3597 >= len(yyv3597) { + yyv3597 = append(yyv3597, NodeCondition{}) // var yyz3597 NodeCondition + yyc3597 = true } - yyh3592.ElemContainerState(yyj3592) - if yyj3592 < len(yyv3592) { + yyh3597.ElemContainerState(yyj3597) + if yyj3597 < len(yyv3597) { if r.TryDecodeAsNil() { - yyv3592[yyj3592] = NodeCondition{} + yyv3597[yyj3597] = NodeCondition{} } else { - yyv3595 := &yyv3592[yyj3592] - yyv3595.CodecDecodeSelf(d) + yyv3600 := &yyv3597[yyj3597] + yyv3600.CodecDecodeSelf(d) } } else { @@ -45555,17 +45603,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3592 < len(yyv3592) { - yyv3592 = yyv3592[:yyj3592] - yyc3592 = true - } else if yyj3592 == 0 && yyv3592 == nil { - yyv3592 = []NodeCondition{} - yyc3592 = true + if yyj3597 < len(yyv3597) { + yyv3597 = yyv3597[:yyj3597] + yyc3597 = true + } else if yyj3597 == 0 && yyv3597 == nil { + yyv3597 = []NodeCondition{} + yyc3597 = true } } - yyh3592.End() - if yyc3592 { - *v = yyv3592 + yyh3597.End() + if yyc3597 { + *v = yyv3597 } } @@ -45574,10 +45622,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3596 := range v { + for _, yyv3601 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3597 := &yyv3596 - yy3597.CodecEncodeSelf(e) + yy3602 := &yyv3601 + yy3602.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45587,83 +45635,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3598 := *v - yyh3598, yyl3598 := z.DecSliceHelperStart() - var yyc3598 bool - if yyl3598 == 0 { - if yyv3598 == nil { - yyv3598 = []NodeAddress{} - yyc3598 = true - } else if len(yyv3598) != 0 { - yyv3598 = yyv3598[:0] - yyc3598 = true + yyv3603 := *v + yyh3603, yyl3603 := z.DecSliceHelperStart() + var yyc3603 bool + if yyl3603 == 0 { + if yyv3603 == nil { + yyv3603 = []NodeAddress{} + yyc3603 = true + } else if len(yyv3603) != 0 { + yyv3603 = yyv3603[:0] + yyc3603 = true } - } else if yyl3598 > 0 { - var yyrr3598, yyrl3598 int - var yyrt3598 bool - if yyl3598 > cap(yyv3598) { + } else if yyl3603 > 0 { + var yyrr3603, yyrl3603 int + var yyrt3603 bool + if yyl3603 > cap(yyv3603) { - yyrg3598 := len(yyv3598) > 0 - yyv23598 := yyv3598 - yyrl3598, yyrt3598 = z.DecInferLen(yyl3598, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3598 { - if yyrl3598 <= cap(yyv3598) { - yyv3598 = yyv3598[:yyrl3598] + yyrg3603 := len(yyv3603) > 0 + yyv23603 := yyv3603 + yyrl3603, yyrt3603 = z.DecInferLen(yyl3603, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3603 { + if yyrl3603 <= cap(yyv3603) { + yyv3603 = yyv3603[:yyrl3603] } else { - yyv3598 = make([]NodeAddress, yyrl3598) + yyv3603 = make([]NodeAddress, yyrl3603) } } else { - yyv3598 = make([]NodeAddress, yyrl3598) + yyv3603 = make([]NodeAddress, yyrl3603) } - yyc3598 = true - yyrr3598 = len(yyv3598) - if yyrg3598 { - copy(yyv3598, yyv23598) + yyc3603 = true + yyrr3603 = len(yyv3603) + if yyrg3603 { + copy(yyv3603, yyv23603) } - } else if yyl3598 != len(yyv3598) { - yyv3598 = yyv3598[:yyl3598] - yyc3598 = true + } else if yyl3603 != len(yyv3603) { + yyv3603 = yyv3603[:yyl3603] + yyc3603 = true } - yyj3598 := 0 - for ; yyj3598 < yyrr3598; yyj3598++ { - yyh3598.ElemContainerState(yyj3598) + yyj3603 := 0 + for ; yyj3603 < yyrr3603; yyj3603++ { + yyh3603.ElemContainerState(yyj3603) if r.TryDecodeAsNil() { - yyv3598[yyj3598] = NodeAddress{} + yyv3603[yyj3603] = NodeAddress{} } else { - yyv3599 := &yyv3598[yyj3598] - yyv3599.CodecDecodeSelf(d) + yyv3604 := &yyv3603[yyj3603] + yyv3604.CodecDecodeSelf(d) } } - if yyrt3598 { - for ; yyj3598 < yyl3598; yyj3598++ { - yyv3598 = append(yyv3598, NodeAddress{}) - yyh3598.ElemContainerState(yyj3598) + if yyrt3603 { + for ; yyj3603 < yyl3603; yyj3603++ { + yyv3603 = append(yyv3603, NodeAddress{}) + yyh3603.ElemContainerState(yyj3603) if r.TryDecodeAsNil() { - yyv3598[yyj3598] = NodeAddress{} + yyv3603[yyj3603] = NodeAddress{} } else { - yyv3600 := &yyv3598[yyj3598] - yyv3600.CodecDecodeSelf(d) + yyv3605 := &yyv3603[yyj3603] + yyv3605.CodecDecodeSelf(d) } } } } else { - yyj3598 := 0 - for ; !r.CheckBreak(); yyj3598++ { + yyj3603 := 0 + for ; !r.CheckBreak(); yyj3603++ { - if yyj3598 >= len(yyv3598) { - yyv3598 = append(yyv3598, NodeAddress{}) // var yyz3598 NodeAddress - yyc3598 = true + if yyj3603 >= len(yyv3603) { + yyv3603 = append(yyv3603, NodeAddress{}) // var yyz3603 NodeAddress + yyc3603 = true } - yyh3598.ElemContainerState(yyj3598) - if yyj3598 < len(yyv3598) { + yyh3603.ElemContainerState(yyj3603) + if yyj3603 < len(yyv3603) { if r.TryDecodeAsNil() { - yyv3598[yyj3598] = NodeAddress{} + yyv3603[yyj3603] = NodeAddress{} } else { - yyv3601 := &yyv3598[yyj3598] - yyv3601.CodecDecodeSelf(d) + yyv3606 := &yyv3603[yyj3603] + yyv3606.CodecDecodeSelf(d) } } else { @@ -45671,17 +45719,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3598 < len(yyv3598) { - yyv3598 = yyv3598[:yyj3598] - yyc3598 = true - } else if yyj3598 == 0 && yyv3598 == nil { - yyv3598 = []NodeAddress{} - yyc3598 = true + if yyj3603 < len(yyv3603) { + yyv3603 = yyv3603[:yyj3603] + yyc3603 = true + } else if yyj3603 == 0 && yyv3603 == nil { + yyv3603 = []NodeAddress{} + yyc3603 = true } } - yyh3598.End() - if yyc3598 { - *v = yyv3598 + yyh3603.End() + if yyc3603 { + *v = yyv3603 } } @@ -45690,19 +45738,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3602, yyv3602 := range v { + for yyk3607, yyv3607 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3602.CodecEncodeSelf(e) + yyk3607.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3603 := &yyv3602 - yym3604 := z.EncBinary() - _ = yym3604 + yy3608 := &yyv3607 + yym3609 := z.EncBinary() + _ = yym3609 if false { - } else if z.HasExtensions() && z.EncExt(yy3603) { - } else if !yym3604 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3603) + } else if z.HasExtensions() && z.EncExt(yy3608) { + } else if !yym3609 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3608) } else { - z.EncFallback(yy3603) + z.EncFallback(yy3608) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45713,86 +45761,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3605 := *v - yyl3605 := r.ReadMapStart() - yybh3605 := z.DecBasicHandle() - if yyv3605 == nil { - yyrl3605, _ := z.DecInferLen(yyl3605, yybh3605.MaxInitLen, 40) - yyv3605 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3605) - *v = yyv3605 + yyv3610 := *v + yyl3610 := r.ReadMapStart() + yybh3610 := z.DecBasicHandle() + if yyv3610 == nil { + yyrl3610, _ := z.DecInferLen(yyl3610, yybh3610.MaxInitLen, 40) + yyv3610 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3610) + *v = yyv3610 } - var yymk3605 ResourceName - var yymv3605 pkg3_resource.Quantity - var yymg3605 bool - if yybh3605.MapValueReset { - yymg3605 = true + var yymk3610 ResourceName + var yymv3610 pkg3_resource.Quantity + var yymg3610 bool + if yybh3610.MapValueReset { + yymg3610 = true } - if yyl3605 > 0 { - for yyj3605 := 0; yyj3605 < yyl3605; yyj3605++ { + if yyl3610 > 0 { + for yyj3610 := 0; yyj3610 < yyl3610; yyj3610++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3605 = "" + yymk3610 = "" } else { - yymk3605 = ResourceName(r.DecodeString()) + yymk3610 = ResourceName(r.DecodeString()) } - if yymg3605 { - yymv3605 = yyv3605[yymk3605] + if yymg3610 { + yymv3610 = yyv3610[yymk3610] } else { - yymv3605 = pkg3_resource.Quantity{} + yymv3610 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3605 = pkg3_resource.Quantity{} + yymv3610 = pkg3_resource.Quantity{} } else { - yyv3607 := &yymv3605 - yym3608 := z.DecBinary() - _ = yym3608 + yyv3612 := &yymv3610 + yym3613 := z.DecBinary() + _ = yym3613 if false { - } else if z.HasExtensions() && z.DecExt(yyv3607) { - } else if !yym3608 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3607) + } else if z.HasExtensions() && z.DecExt(yyv3612) { + } else if !yym3613 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3612) } else { - z.DecFallback(yyv3607, false) + z.DecFallback(yyv3612, false) } } - if yyv3605 != nil { - yyv3605[yymk3605] = yymv3605 + if yyv3610 != nil { + yyv3610[yymk3610] = yymv3610 } } - } else if yyl3605 < 0 { - for yyj3605 := 0; !r.CheckBreak(); yyj3605++ { + } else if yyl3610 < 0 { + for yyj3610 := 0; !r.CheckBreak(); yyj3610++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3605 = "" + yymk3610 = "" } else { - yymk3605 = ResourceName(r.DecodeString()) + yymk3610 = ResourceName(r.DecodeString()) } - if yymg3605 { - yymv3605 = yyv3605[yymk3605] + if yymg3610 { + yymv3610 = yyv3610[yymk3610] } else { - yymv3605 = pkg3_resource.Quantity{} + yymv3610 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3605 = pkg3_resource.Quantity{} + yymv3610 = pkg3_resource.Quantity{} } else { - yyv3610 := &yymv3605 - yym3611 := z.DecBinary() - _ = yym3611 + yyv3615 := &yymv3610 + yym3616 := z.DecBinary() + _ = yym3616 if false { - } else if z.HasExtensions() && z.DecExt(yyv3610) { - } else if !yym3611 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3610) + } else if z.HasExtensions() && z.DecExt(yyv3615) { + } else if !yym3616 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3615) } else { - z.DecFallback(yyv3610, false) + z.DecFallback(yyv3615, false) } } - if yyv3605 != nil { - yyv3605[yymk3605] = yymv3605 + if yyv3610 != nil { + yyv3610[yymk3610] = yymv3610 } } } // else len==0: TODO: Should we clear map entries? @@ -45804,10 +45852,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3612 := range v { + for _, yyv3617 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3613 := &yyv3612 - yy3613.CodecEncodeSelf(e) + yy3618 := &yyv3617 + yy3618.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45817,83 +45865,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3614 := *v - yyh3614, yyl3614 := z.DecSliceHelperStart() - var yyc3614 bool - if yyl3614 == 0 { - if yyv3614 == nil { - yyv3614 = []Node{} - yyc3614 = true - } else if len(yyv3614) != 0 { - yyv3614 = yyv3614[:0] - yyc3614 = true + yyv3619 := *v + yyh3619, yyl3619 := z.DecSliceHelperStart() + var yyc3619 bool + if yyl3619 == 0 { + if yyv3619 == nil { + yyv3619 = []Node{} + yyc3619 = true + } else if len(yyv3619) != 0 { + yyv3619 = yyv3619[:0] + yyc3619 = true } - } else if yyl3614 > 0 { - var yyrr3614, yyrl3614 int - var yyrt3614 bool - if yyl3614 > cap(yyv3614) { + } else if yyl3619 > 0 { + var yyrr3619, yyrl3619 int + var yyrt3619 bool + if yyl3619 > cap(yyv3619) { - yyrg3614 := len(yyv3614) > 0 - yyv23614 := yyv3614 - yyrl3614, yyrt3614 = z.DecInferLen(yyl3614, z.DecBasicHandle().MaxInitLen, 456) - if yyrt3614 { - if yyrl3614 <= cap(yyv3614) { - yyv3614 = yyv3614[:yyrl3614] + yyrg3619 := len(yyv3619) > 0 + yyv23619 := yyv3619 + yyrl3619, yyrt3619 = z.DecInferLen(yyl3619, z.DecBasicHandle().MaxInitLen, 456) + if yyrt3619 { + if yyrl3619 <= cap(yyv3619) { + yyv3619 = yyv3619[:yyrl3619] } else { - yyv3614 = make([]Node, yyrl3614) + yyv3619 = make([]Node, yyrl3619) } } else { - yyv3614 = make([]Node, yyrl3614) + yyv3619 = make([]Node, yyrl3619) } - yyc3614 = true - yyrr3614 = len(yyv3614) - if yyrg3614 { - copy(yyv3614, yyv23614) + yyc3619 = true + yyrr3619 = len(yyv3619) + if yyrg3619 { + copy(yyv3619, yyv23619) } - } else if yyl3614 != len(yyv3614) { - yyv3614 = yyv3614[:yyl3614] - yyc3614 = true + } else if yyl3619 != len(yyv3619) { + yyv3619 = yyv3619[:yyl3619] + yyc3619 = true } - yyj3614 := 0 - for ; yyj3614 < yyrr3614; yyj3614++ { - yyh3614.ElemContainerState(yyj3614) + yyj3619 := 0 + for ; yyj3619 < yyrr3619; yyj3619++ { + yyh3619.ElemContainerState(yyj3619) if r.TryDecodeAsNil() { - yyv3614[yyj3614] = Node{} + yyv3619[yyj3619] = Node{} } else { - yyv3615 := &yyv3614[yyj3614] - yyv3615.CodecDecodeSelf(d) + yyv3620 := &yyv3619[yyj3619] + yyv3620.CodecDecodeSelf(d) } } - if yyrt3614 { - for ; yyj3614 < yyl3614; yyj3614++ { - yyv3614 = append(yyv3614, Node{}) - yyh3614.ElemContainerState(yyj3614) + if yyrt3619 { + for ; yyj3619 < yyl3619; yyj3619++ { + yyv3619 = append(yyv3619, Node{}) + yyh3619.ElemContainerState(yyj3619) if r.TryDecodeAsNil() { - yyv3614[yyj3614] = Node{} + yyv3619[yyj3619] = Node{} } else { - yyv3616 := &yyv3614[yyj3614] - yyv3616.CodecDecodeSelf(d) + yyv3621 := &yyv3619[yyj3619] + yyv3621.CodecDecodeSelf(d) } } } } else { - yyj3614 := 0 - for ; !r.CheckBreak(); yyj3614++ { + yyj3619 := 0 + for ; !r.CheckBreak(); yyj3619++ { - if yyj3614 >= len(yyv3614) { - yyv3614 = append(yyv3614, Node{}) // var yyz3614 Node - yyc3614 = true + if yyj3619 >= len(yyv3619) { + yyv3619 = append(yyv3619, Node{}) // var yyz3619 Node + yyc3619 = true } - yyh3614.ElemContainerState(yyj3614) - if yyj3614 < len(yyv3614) { + yyh3619.ElemContainerState(yyj3619) + if yyj3619 < len(yyv3619) { if r.TryDecodeAsNil() { - yyv3614[yyj3614] = Node{} + yyv3619[yyj3619] = Node{} } else { - yyv3617 := &yyv3614[yyj3614] - yyv3617.CodecDecodeSelf(d) + yyv3622 := &yyv3619[yyj3619] + yyv3622.CodecDecodeSelf(d) } } else { @@ -45901,17 +45949,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj3614 < len(yyv3614) { - yyv3614 = yyv3614[:yyj3614] - yyc3614 = true - } else if yyj3614 == 0 && yyv3614 == nil { - yyv3614 = []Node{} - yyc3614 = true + if yyj3619 < len(yyv3619) { + yyv3619 = yyv3619[:yyj3619] + yyc3619 = true + } else if yyj3619 == 0 && yyv3619 == nil { + yyv3619 = []Node{} + yyc3619 = true } } - yyh3614.End() - if yyc3614 { - *v = yyv3614 + yyh3619.End() + if yyc3619 { + *v = yyv3619 } } @@ -45920,9 +45968,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3618 := range v { + for _, yyv3623 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3618.CodecEncodeSelf(e) + yyv3623.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45932,75 +45980,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3619 := *v - yyh3619, yyl3619 := z.DecSliceHelperStart() - var yyc3619 bool - if yyl3619 == 0 { - if yyv3619 == nil { - yyv3619 = []FinalizerName{} - yyc3619 = true - } else if len(yyv3619) != 0 { - yyv3619 = yyv3619[:0] - yyc3619 = true + yyv3624 := *v + yyh3624, yyl3624 := z.DecSliceHelperStart() + var yyc3624 bool + if yyl3624 == 0 { + if yyv3624 == nil { + yyv3624 = []FinalizerName{} + yyc3624 = true + } else if len(yyv3624) != 0 { + yyv3624 = yyv3624[:0] + yyc3624 = true } - } else if yyl3619 > 0 { - var yyrr3619, yyrl3619 int - var yyrt3619 bool - if yyl3619 > cap(yyv3619) { + } else if yyl3624 > 0 { + var yyrr3624, yyrl3624 int + var yyrt3624 bool + if yyl3624 > cap(yyv3624) { - yyrl3619, yyrt3619 = z.DecInferLen(yyl3619, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3619 { - if yyrl3619 <= cap(yyv3619) { - yyv3619 = yyv3619[:yyrl3619] + yyrl3624, yyrt3624 = z.DecInferLen(yyl3624, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3624 { + if yyrl3624 <= cap(yyv3624) { + yyv3624 = yyv3624[:yyrl3624] } else { - yyv3619 = make([]FinalizerName, yyrl3619) + yyv3624 = make([]FinalizerName, yyrl3624) } } else { - yyv3619 = make([]FinalizerName, yyrl3619) + yyv3624 = make([]FinalizerName, yyrl3624) } - yyc3619 = true - yyrr3619 = len(yyv3619) - } else if yyl3619 != len(yyv3619) { - yyv3619 = yyv3619[:yyl3619] - yyc3619 = true + yyc3624 = true + yyrr3624 = len(yyv3624) + } else if yyl3624 != len(yyv3624) { + yyv3624 = yyv3624[:yyl3624] + yyc3624 = true } - yyj3619 := 0 - for ; yyj3619 < yyrr3619; yyj3619++ { - yyh3619.ElemContainerState(yyj3619) + yyj3624 := 0 + for ; yyj3624 < yyrr3624; yyj3624++ { + yyh3624.ElemContainerState(yyj3624) if r.TryDecodeAsNil() { - yyv3619[yyj3619] = "" + yyv3624[yyj3624] = "" } else { - yyv3619[yyj3619] = FinalizerName(r.DecodeString()) + yyv3624[yyj3624] = FinalizerName(r.DecodeString()) } } - if yyrt3619 { - for ; yyj3619 < yyl3619; yyj3619++ { - yyv3619 = append(yyv3619, "") - yyh3619.ElemContainerState(yyj3619) + if yyrt3624 { + for ; yyj3624 < yyl3624; yyj3624++ { + yyv3624 = append(yyv3624, "") + yyh3624.ElemContainerState(yyj3624) if r.TryDecodeAsNil() { - yyv3619[yyj3619] = "" + yyv3624[yyj3624] = "" } else { - yyv3619[yyj3619] = FinalizerName(r.DecodeString()) + yyv3624[yyj3624] = FinalizerName(r.DecodeString()) } } } } else { - yyj3619 := 0 - for ; !r.CheckBreak(); yyj3619++ { + yyj3624 := 0 + for ; !r.CheckBreak(); yyj3624++ { - if yyj3619 >= len(yyv3619) { - yyv3619 = append(yyv3619, "") // var yyz3619 FinalizerName - yyc3619 = true + if yyj3624 >= len(yyv3624) { + yyv3624 = append(yyv3624, "") // var yyz3624 FinalizerName + yyc3624 = true } - yyh3619.ElemContainerState(yyj3619) - if yyj3619 < len(yyv3619) { + yyh3624.ElemContainerState(yyj3624) + if yyj3624 < len(yyv3624) { if r.TryDecodeAsNil() { - yyv3619[yyj3619] = "" + yyv3624[yyj3624] = "" } else { - yyv3619[yyj3619] = FinalizerName(r.DecodeString()) + yyv3624[yyj3624] = FinalizerName(r.DecodeString()) } } else { @@ -46008,17 +46056,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj3619 < len(yyv3619) { - yyv3619 = yyv3619[:yyj3619] - yyc3619 = true - } else if yyj3619 == 0 && yyv3619 == nil { - yyv3619 = []FinalizerName{} - yyc3619 = true + if yyj3624 < len(yyv3624) { + yyv3624 = yyv3624[:yyj3624] + yyc3624 = true + } else if yyj3624 == 0 && yyv3624 == nil { + yyv3624 = []FinalizerName{} + yyc3624 = true } } - yyh3619.End() - if yyc3619 { - *v = yyv3619 + yyh3624.End() + if yyc3624 { + *v = yyv3624 } } @@ -46027,10 +46075,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3623 := range v { + for _, yyv3628 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3624 := &yyv3623 - yy3624.CodecEncodeSelf(e) + yy3629 := &yyv3628 + yy3629.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46040,83 +46088,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3625 := *v - yyh3625, yyl3625 := z.DecSliceHelperStart() - var yyc3625 bool - if yyl3625 == 0 { - if yyv3625 == nil { - yyv3625 = []Namespace{} - yyc3625 = true - } else if len(yyv3625) != 0 { - yyv3625 = yyv3625[:0] - yyc3625 = true + yyv3630 := *v + yyh3630, yyl3630 := z.DecSliceHelperStart() + var yyc3630 bool + if yyl3630 == 0 { + if yyv3630 == nil { + yyv3630 = []Namespace{} + yyc3630 = true + } else if len(yyv3630) != 0 { + yyv3630 = yyv3630[:0] + yyc3630 = true } - } else if yyl3625 > 0 { - var yyrr3625, yyrl3625 int - var yyrt3625 bool - if yyl3625 > cap(yyv3625) { + } else if yyl3630 > 0 { + var yyrr3630, yyrl3630 int + var yyrt3630 bool + if yyl3630 > cap(yyv3630) { - yyrg3625 := len(yyv3625) > 0 - yyv23625 := yyv3625 - yyrl3625, yyrt3625 = z.DecInferLen(yyl3625, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3625 { - if yyrl3625 <= cap(yyv3625) { - yyv3625 = yyv3625[:yyrl3625] + yyrg3630 := len(yyv3630) > 0 + yyv23630 := yyv3630 + yyrl3630, yyrt3630 = z.DecInferLen(yyl3630, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3630 { + if yyrl3630 <= cap(yyv3630) { + yyv3630 = yyv3630[:yyrl3630] } else { - yyv3625 = make([]Namespace, yyrl3625) + yyv3630 = make([]Namespace, yyrl3630) } } else { - yyv3625 = make([]Namespace, yyrl3625) + yyv3630 = make([]Namespace, yyrl3630) } - yyc3625 = true - yyrr3625 = len(yyv3625) - if yyrg3625 { - copy(yyv3625, yyv23625) + yyc3630 = true + yyrr3630 = len(yyv3630) + if yyrg3630 { + copy(yyv3630, yyv23630) } - } else if yyl3625 != len(yyv3625) { - yyv3625 = yyv3625[:yyl3625] - yyc3625 = true + } else if yyl3630 != len(yyv3630) { + yyv3630 = yyv3630[:yyl3630] + yyc3630 = true } - yyj3625 := 0 - for ; yyj3625 < yyrr3625; yyj3625++ { - yyh3625.ElemContainerState(yyj3625) + yyj3630 := 0 + for ; yyj3630 < yyrr3630; yyj3630++ { + yyh3630.ElemContainerState(yyj3630) if r.TryDecodeAsNil() { - yyv3625[yyj3625] = Namespace{} + yyv3630[yyj3630] = Namespace{} } else { - yyv3626 := &yyv3625[yyj3625] - yyv3626.CodecDecodeSelf(d) + yyv3631 := &yyv3630[yyj3630] + yyv3631.CodecDecodeSelf(d) } } - if yyrt3625 { - for ; yyj3625 < yyl3625; yyj3625++ { - yyv3625 = append(yyv3625, Namespace{}) - yyh3625.ElemContainerState(yyj3625) + if yyrt3630 { + for ; yyj3630 < yyl3630; yyj3630++ { + yyv3630 = append(yyv3630, Namespace{}) + yyh3630.ElemContainerState(yyj3630) if r.TryDecodeAsNil() { - yyv3625[yyj3625] = Namespace{} + yyv3630[yyj3630] = Namespace{} } else { - yyv3627 := &yyv3625[yyj3625] - yyv3627.CodecDecodeSelf(d) + yyv3632 := &yyv3630[yyj3630] + yyv3632.CodecDecodeSelf(d) } } } } else { - yyj3625 := 0 - for ; !r.CheckBreak(); yyj3625++ { + yyj3630 := 0 + for ; !r.CheckBreak(); yyj3630++ { - if yyj3625 >= len(yyv3625) { - yyv3625 = append(yyv3625, Namespace{}) // var yyz3625 Namespace - yyc3625 = true + if yyj3630 >= len(yyv3630) { + yyv3630 = append(yyv3630, Namespace{}) // var yyz3630 Namespace + yyc3630 = true } - yyh3625.ElemContainerState(yyj3625) - if yyj3625 < len(yyv3625) { + yyh3630.ElemContainerState(yyj3630) + if yyj3630 < len(yyv3630) { if r.TryDecodeAsNil() { - yyv3625[yyj3625] = Namespace{} + yyv3630[yyj3630] = Namespace{} } else { - yyv3628 := &yyv3625[yyj3625] - yyv3628.CodecDecodeSelf(d) + yyv3633 := &yyv3630[yyj3630] + yyv3633.CodecDecodeSelf(d) } } else { @@ -46124,17 +46172,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj3625 < len(yyv3625) { - yyv3625 = yyv3625[:yyj3625] - yyc3625 = true - } else if yyj3625 == 0 && yyv3625 == nil { - yyv3625 = []Namespace{} - yyc3625 = true + if yyj3630 < len(yyv3630) { + yyv3630 = yyv3630[:yyj3630] + yyc3630 = true + } else if yyj3630 == 0 && yyv3630 == nil { + yyv3630 = []Namespace{} + yyc3630 = true } } - yyh3625.End() - if yyc3625 { - *v = yyv3625 + yyh3630.End() + if yyc3630 { + *v = yyv3630 } } @@ -46143,10 +46191,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3629 := range v { + for _, yyv3634 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3630 := &yyv3629 - yy3630.CodecEncodeSelf(e) + yy3635 := &yyv3634 + yy3635.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46156,83 +46204,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3631 := *v - yyh3631, yyl3631 := z.DecSliceHelperStart() - var yyc3631 bool - if yyl3631 == 0 { - if yyv3631 == nil { - yyv3631 = []Event{} - yyc3631 = true - } else if len(yyv3631) != 0 { - yyv3631 = yyv3631[:0] - yyc3631 = true + yyv3636 := *v + yyh3636, yyl3636 := z.DecSliceHelperStart() + var yyc3636 bool + if yyl3636 == 0 { + if yyv3636 == nil { + yyv3636 = []Event{} + yyc3636 = true + } else if len(yyv3636) != 0 { + yyv3636 = yyv3636[:0] + yyc3636 = true } - } else if yyl3631 > 0 { - var yyrr3631, yyrl3631 int - var yyrt3631 bool - if yyl3631 > cap(yyv3631) { + } else if yyl3636 > 0 { + var yyrr3636, yyrl3636 int + var yyrt3636 bool + if yyl3636 > cap(yyv3636) { - yyrg3631 := len(yyv3631) > 0 - yyv23631 := yyv3631 - yyrl3631, yyrt3631 = z.DecInferLen(yyl3631, z.DecBasicHandle().MaxInitLen, 440) - if yyrt3631 { - if yyrl3631 <= cap(yyv3631) { - yyv3631 = yyv3631[:yyrl3631] + yyrg3636 := len(yyv3636) > 0 + yyv23636 := yyv3636 + yyrl3636, yyrt3636 = z.DecInferLen(yyl3636, z.DecBasicHandle().MaxInitLen, 440) + if yyrt3636 { + if yyrl3636 <= cap(yyv3636) { + yyv3636 = yyv3636[:yyrl3636] } else { - yyv3631 = make([]Event, yyrl3631) + yyv3636 = make([]Event, yyrl3636) } } else { - yyv3631 = make([]Event, yyrl3631) + yyv3636 = make([]Event, yyrl3636) } - yyc3631 = true - yyrr3631 = len(yyv3631) - if yyrg3631 { - copy(yyv3631, yyv23631) + yyc3636 = true + yyrr3636 = len(yyv3636) + if yyrg3636 { + copy(yyv3636, yyv23636) } - } else if yyl3631 != len(yyv3631) { - yyv3631 = yyv3631[:yyl3631] - yyc3631 = true + } else if yyl3636 != len(yyv3636) { + yyv3636 = yyv3636[:yyl3636] + yyc3636 = true } - yyj3631 := 0 - for ; yyj3631 < yyrr3631; yyj3631++ { - yyh3631.ElemContainerState(yyj3631) + yyj3636 := 0 + for ; yyj3636 < yyrr3636; yyj3636++ { + yyh3636.ElemContainerState(yyj3636) if r.TryDecodeAsNil() { - yyv3631[yyj3631] = Event{} + yyv3636[yyj3636] = Event{} } else { - yyv3632 := &yyv3631[yyj3631] - yyv3632.CodecDecodeSelf(d) + yyv3637 := &yyv3636[yyj3636] + yyv3637.CodecDecodeSelf(d) } } - if yyrt3631 { - for ; yyj3631 < yyl3631; yyj3631++ { - yyv3631 = append(yyv3631, Event{}) - yyh3631.ElemContainerState(yyj3631) + if yyrt3636 { + for ; yyj3636 < yyl3636; yyj3636++ { + yyv3636 = append(yyv3636, Event{}) + yyh3636.ElemContainerState(yyj3636) if r.TryDecodeAsNil() { - yyv3631[yyj3631] = Event{} + yyv3636[yyj3636] = Event{} } else { - yyv3633 := &yyv3631[yyj3631] - yyv3633.CodecDecodeSelf(d) + yyv3638 := &yyv3636[yyj3636] + yyv3638.CodecDecodeSelf(d) } } } } else { - yyj3631 := 0 - for ; !r.CheckBreak(); yyj3631++ { + yyj3636 := 0 + for ; !r.CheckBreak(); yyj3636++ { - if yyj3631 >= len(yyv3631) { - yyv3631 = append(yyv3631, Event{}) // var yyz3631 Event - yyc3631 = true + if yyj3636 >= len(yyv3636) { + yyv3636 = append(yyv3636, Event{}) // var yyz3636 Event + yyc3636 = true } - yyh3631.ElemContainerState(yyj3631) - if yyj3631 < len(yyv3631) { + yyh3636.ElemContainerState(yyj3636) + if yyj3636 < len(yyv3636) { if r.TryDecodeAsNil() { - yyv3631[yyj3631] = Event{} + yyv3636[yyj3636] = Event{} } else { - yyv3634 := &yyv3631[yyj3631] - yyv3634.CodecDecodeSelf(d) + yyv3639 := &yyv3636[yyj3636] + yyv3639.CodecDecodeSelf(d) } } else { @@ -46240,17 +46288,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj3631 < len(yyv3631) { - yyv3631 = yyv3631[:yyj3631] - yyc3631 = true - } else if yyj3631 == 0 && yyv3631 == nil { - yyv3631 = []Event{} - yyc3631 = true + if yyj3636 < len(yyv3636) { + yyv3636 = yyv3636[:yyj3636] + yyc3636 = true + } else if yyj3636 == 0 && yyv3636 == nil { + yyv3636 = []Event{} + yyc3636 = true } } - yyh3631.End() - if yyc3631 { - *v = yyv3631 + yyh3636.End() + if yyc3636 { + *v = yyv3636 } } @@ -46259,17 +46307,17 @@ func (x codecSelfer1234) encSliceruntime_Object(v []pkg6_runtime.Object, e *code z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3635 := range v { + for _, yyv3640 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyv3635 == nil { + if yyv3640 == nil { r.EncodeNil() } else { - yym3636 := z.EncBinary() - _ = yym3636 + yym3641 := z.EncBinary() + _ = yym3641 if false { - } else if z.HasExtensions() && z.EncExt(yyv3635) { + } else if z.HasExtensions() && z.EncExt(yyv3640) { } else { - z.EncFallback(yyv3635) + z.EncFallback(yyv3640) } } } @@ -46281,74 +46329,74 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg6_runtime.Object, d *cod z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3637 := *v - yyh3637, yyl3637 := z.DecSliceHelperStart() - var yyc3637 bool - if yyl3637 == 0 { - if yyv3637 == nil { - yyv3637 = []pkg6_runtime.Object{} - yyc3637 = true - } else if len(yyv3637) != 0 { - yyv3637 = yyv3637[:0] - yyc3637 = true + yyv3642 := *v + yyh3642, yyl3642 := z.DecSliceHelperStart() + var yyc3642 bool + if yyl3642 == 0 { + if yyv3642 == nil { + yyv3642 = []pkg6_runtime.Object{} + yyc3642 = true + } else if len(yyv3642) != 0 { + yyv3642 = yyv3642[:0] + yyc3642 = true } - } else if yyl3637 > 0 { - var yyrr3637, yyrl3637 int - var yyrt3637 bool - if yyl3637 > cap(yyv3637) { + } else if yyl3642 > 0 { + var yyrr3642, yyrl3642 int + var yyrt3642 bool + if yyl3642 > cap(yyv3642) { - yyrg3637 := len(yyv3637) > 0 - yyv23637 := yyv3637 - yyrl3637, yyrt3637 = z.DecInferLen(yyl3637, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3637 { - if yyrl3637 <= cap(yyv3637) { - yyv3637 = yyv3637[:yyrl3637] + yyrg3642 := len(yyv3642) > 0 + yyv23642 := yyv3642 + yyrl3642, yyrt3642 = z.DecInferLen(yyl3642, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3642 { + if yyrl3642 <= cap(yyv3642) { + yyv3642 = yyv3642[:yyrl3642] } else { - yyv3637 = make([]pkg6_runtime.Object, yyrl3637) + yyv3642 = make([]pkg6_runtime.Object, yyrl3642) } } else { - yyv3637 = make([]pkg6_runtime.Object, yyrl3637) + yyv3642 = make([]pkg6_runtime.Object, yyrl3642) } - yyc3637 = true - yyrr3637 = len(yyv3637) - if yyrg3637 { - copy(yyv3637, yyv23637) + yyc3642 = true + yyrr3642 = len(yyv3642) + if yyrg3642 { + copy(yyv3642, yyv23642) } - } else if yyl3637 != len(yyv3637) { - yyv3637 = yyv3637[:yyl3637] - yyc3637 = true + } else if yyl3642 != len(yyv3642) { + yyv3642 = yyv3642[:yyl3642] + yyc3642 = true } - yyj3637 := 0 - for ; yyj3637 < yyrr3637; yyj3637++ { - yyh3637.ElemContainerState(yyj3637) + yyj3642 := 0 + for ; yyj3642 < yyrr3642; yyj3642++ { + yyh3642.ElemContainerState(yyj3642) if r.TryDecodeAsNil() { - yyv3637[yyj3637] = nil + yyv3642[yyj3642] = nil } else { - yyv3638 := &yyv3637[yyj3637] - yym3639 := z.DecBinary() - _ = yym3639 + yyv3643 := &yyv3642[yyj3642] + yym3644 := z.DecBinary() + _ = yym3644 if false { - } else if z.HasExtensions() && z.DecExt(yyv3638) { + } else if z.HasExtensions() && z.DecExt(yyv3643) { } else { - z.DecFallback(yyv3638, true) + z.DecFallback(yyv3643, true) } } } - if yyrt3637 { - for ; yyj3637 < yyl3637; yyj3637++ { - yyv3637 = append(yyv3637, nil) - yyh3637.ElemContainerState(yyj3637) + if yyrt3642 { + for ; yyj3642 < yyl3642; yyj3642++ { + yyv3642 = append(yyv3642, nil) + yyh3642.ElemContainerState(yyj3642) if r.TryDecodeAsNil() { - yyv3637[yyj3637] = nil + yyv3642[yyj3642] = nil } else { - yyv3640 := &yyv3637[yyj3637] - yym3641 := z.DecBinary() - _ = yym3641 + yyv3645 := &yyv3642[yyj3642] + yym3646 := z.DecBinary() + _ = yym3646 if false { - } else if z.HasExtensions() && z.DecExt(yyv3640) { + } else if z.HasExtensions() && z.DecExt(yyv3645) { } else { - z.DecFallback(yyv3640, true) + z.DecFallback(yyv3645, true) } } @@ -46356,25 +46404,25 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg6_runtime.Object, d *cod } } else { - yyj3637 := 0 - for ; !r.CheckBreak(); yyj3637++ { + yyj3642 := 0 + for ; !r.CheckBreak(); yyj3642++ { - if yyj3637 >= len(yyv3637) { - yyv3637 = append(yyv3637, nil) // var yyz3637 pkg6_runtime.Object - yyc3637 = true + if yyj3642 >= len(yyv3642) { + yyv3642 = append(yyv3642, nil) // var yyz3642 pkg6_runtime.Object + yyc3642 = true } - yyh3637.ElemContainerState(yyj3637) - if yyj3637 < len(yyv3637) { + yyh3642.ElemContainerState(yyj3642) + if yyj3642 < len(yyv3642) { if r.TryDecodeAsNil() { - yyv3637[yyj3637] = nil + yyv3642[yyj3642] = nil } else { - yyv3642 := &yyv3637[yyj3637] - yym3643 := z.DecBinary() - _ = yym3643 + yyv3647 := &yyv3642[yyj3642] + yym3648 := z.DecBinary() + _ = yym3648 if false { - } else if z.HasExtensions() && z.DecExt(yyv3642) { + } else if z.HasExtensions() && z.DecExt(yyv3647) { } else { - z.DecFallback(yyv3642, true) + z.DecFallback(yyv3647, true) } } @@ -46383,17 +46431,17 @@ func (x codecSelfer1234) decSliceruntime_Object(v *[]pkg6_runtime.Object, d *cod } } - if yyj3637 < len(yyv3637) { - yyv3637 = yyv3637[:yyj3637] - yyc3637 = true - } else if yyj3637 == 0 && yyv3637 == nil { - yyv3637 = []pkg6_runtime.Object{} - yyc3637 = true + if yyj3642 < len(yyv3642) { + yyv3642 = yyv3642[:yyj3642] + yyc3642 = true + } else if yyj3642 == 0 && yyv3642 == nil { + yyv3642 = []pkg6_runtime.Object{} + yyc3642 = true } } - yyh3637.End() - if yyc3637 { - *v = yyv3637 + yyh3642.End() + if yyc3642 { + *v = yyv3642 } } @@ -46402,10 +46450,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3644 := range v { + for _, yyv3649 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3645 := &yyv3644 - yy3645.CodecEncodeSelf(e) + yy3650 := &yyv3649 + yy3650.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46415,83 +46463,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3646 := *v - yyh3646, yyl3646 := z.DecSliceHelperStart() - var yyc3646 bool - if yyl3646 == 0 { - if yyv3646 == nil { - yyv3646 = []LimitRangeItem{} - yyc3646 = true - } else if len(yyv3646) != 0 { - yyv3646 = yyv3646[:0] - yyc3646 = true + yyv3651 := *v + yyh3651, yyl3651 := z.DecSliceHelperStart() + var yyc3651 bool + if yyl3651 == 0 { + if yyv3651 == nil { + yyv3651 = []LimitRangeItem{} + yyc3651 = true + } else if len(yyv3651) != 0 { + yyv3651 = yyv3651[:0] + yyc3651 = true } - } else if yyl3646 > 0 { - var yyrr3646, yyrl3646 int - var yyrt3646 bool - if yyl3646 > cap(yyv3646) { + } else if yyl3651 > 0 { + var yyrr3651, yyrl3651 int + var yyrt3651 bool + if yyl3651 > cap(yyv3651) { - yyrg3646 := len(yyv3646) > 0 - yyv23646 := yyv3646 - yyrl3646, yyrt3646 = z.DecInferLen(yyl3646, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3646 { - if yyrl3646 <= cap(yyv3646) { - yyv3646 = yyv3646[:yyrl3646] + yyrg3651 := len(yyv3651) > 0 + yyv23651 := yyv3651 + yyrl3651, yyrt3651 = z.DecInferLen(yyl3651, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3651 { + if yyrl3651 <= cap(yyv3651) { + yyv3651 = yyv3651[:yyrl3651] } else { - yyv3646 = make([]LimitRangeItem, yyrl3646) + yyv3651 = make([]LimitRangeItem, yyrl3651) } } else { - yyv3646 = make([]LimitRangeItem, yyrl3646) + yyv3651 = make([]LimitRangeItem, yyrl3651) } - yyc3646 = true - yyrr3646 = len(yyv3646) - if yyrg3646 { - copy(yyv3646, yyv23646) + yyc3651 = true + yyrr3651 = len(yyv3651) + if yyrg3651 { + copy(yyv3651, yyv23651) } - } else if yyl3646 != len(yyv3646) { - yyv3646 = yyv3646[:yyl3646] - yyc3646 = true + } else if yyl3651 != len(yyv3651) { + yyv3651 = yyv3651[:yyl3651] + yyc3651 = true } - yyj3646 := 0 - for ; yyj3646 < yyrr3646; yyj3646++ { - yyh3646.ElemContainerState(yyj3646) + yyj3651 := 0 + for ; yyj3651 < yyrr3651; yyj3651++ { + yyh3651.ElemContainerState(yyj3651) if r.TryDecodeAsNil() { - yyv3646[yyj3646] = LimitRangeItem{} + yyv3651[yyj3651] = LimitRangeItem{} } else { - yyv3647 := &yyv3646[yyj3646] - yyv3647.CodecDecodeSelf(d) + yyv3652 := &yyv3651[yyj3651] + yyv3652.CodecDecodeSelf(d) } } - if yyrt3646 { - for ; yyj3646 < yyl3646; yyj3646++ { - yyv3646 = append(yyv3646, LimitRangeItem{}) - yyh3646.ElemContainerState(yyj3646) + if yyrt3651 { + for ; yyj3651 < yyl3651; yyj3651++ { + yyv3651 = append(yyv3651, LimitRangeItem{}) + yyh3651.ElemContainerState(yyj3651) if r.TryDecodeAsNil() { - yyv3646[yyj3646] = LimitRangeItem{} + yyv3651[yyj3651] = LimitRangeItem{} } else { - yyv3648 := &yyv3646[yyj3646] - yyv3648.CodecDecodeSelf(d) + yyv3653 := &yyv3651[yyj3651] + yyv3653.CodecDecodeSelf(d) } } } } else { - yyj3646 := 0 - for ; !r.CheckBreak(); yyj3646++ { + yyj3651 := 0 + for ; !r.CheckBreak(); yyj3651++ { - if yyj3646 >= len(yyv3646) { - yyv3646 = append(yyv3646, LimitRangeItem{}) // var yyz3646 LimitRangeItem - yyc3646 = true + if yyj3651 >= len(yyv3651) { + yyv3651 = append(yyv3651, LimitRangeItem{}) // var yyz3651 LimitRangeItem + yyc3651 = true } - yyh3646.ElemContainerState(yyj3646) - if yyj3646 < len(yyv3646) { + yyh3651.ElemContainerState(yyj3651) + if yyj3651 < len(yyv3651) { if r.TryDecodeAsNil() { - yyv3646[yyj3646] = LimitRangeItem{} + yyv3651[yyj3651] = LimitRangeItem{} } else { - yyv3649 := &yyv3646[yyj3646] - yyv3649.CodecDecodeSelf(d) + yyv3654 := &yyv3651[yyj3651] + yyv3654.CodecDecodeSelf(d) } } else { @@ -46499,17 +46547,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj3646 < len(yyv3646) { - yyv3646 = yyv3646[:yyj3646] - yyc3646 = true - } else if yyj3646 == 0 && yyv3646 == nil { - yyv3646 = []LimitRangeItem{} - yyc3646 = true + if yyj3651 < len(yyv3651) { + yyv3651 = yyv3651[:yyj3651] + yyc3651 = true + } else if yyj3651 == 0 && yyv3651 == nil { + yyv3651 = []LimitRangeItem{} + yyc3651 = true } } - yyh3646.End() - if yyc3646 { - *v = yyv3646 + yyh3651.End() + if yyc3651 { + *v = yyv3651 } } @@ -46518,10 +46566,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3650 := range v { + for _, yyv3655 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3651 := &yyv3650 - yy3651.CodecEncodeSelf(e) + yy3656 := &yyv3655 + yy3656.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46531,83 +46579,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3652 := *v - yyh3652, yyl3652 := z.DecSliceHelperStart() - var yyc3652 bool - if yyl3652 == 0 { - if yyv3652 == nil { - yyv3652 = []LimitRange{} - yyc3652 = true - } else if len(yyv3652) != 0 { - yyv3652 = yyv3652[:0] - yyc3652 = true + yyv3657 := *v + yyh3657, yyl3657 := z.DecSliceHelperStart() + var yyc3657 bool + if yyl3657 == 0 { + if yyv3657 == nil { + yyv3657 = []LimitRange{} + yyc3657 = true + } else if len(yyv3657) != 0 { + yyv3657 = yyv3657[:0] + yyc3657 = true } - } else if yyl3652 > 0 { - var yyrr3652, yyrl3652 int - var yyrt3652 bool - if yyl3652 > cap(yyv3652) { + } else if yyl3657 > 0 { + var yyrr3657, yyrl3657 int + var yyrt3657 bool + if yyl3657 > cap(yyv3657) { - yyrg3652 := len(yyv3652) > 0 - yyv23652 := yyv3652 - yyrl3652, yyrt3652 = z.DecInferLen(yyl3652, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3652 { - if yyrl3652 <= cap(yyv3652) { - yyv3652 = yyv3652[:yyrl3652] + yyrg3657 := len(yyv3657) > 0 + yyv23657 := yyv3657 + yyrl3657, yyrt3657 = z.DecInferLen(yyl3657, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3657 { + if yyrl3657 <= cap(yyv3657) { + yyv3657 = yyv3657[:yyrl3657] } else { - yyv3652 = make([]LimitRange, yyrl3652) + yyv3657 = make([]LimitRange, yyrl3657) } } else { - yyv3652 = make([]LimitRange, yyrl3652) + yyv3657 = make([]LimitRange, yyrl3657) } - yyc3652 = true - yyrr3652 = len(yyv3652) - if yyrg3652 { - copy(yyv3652, yyv23652) + yyc3657 = true + yyrr3657 = len(yyv3657) + if yyrg3657 { + copy(yyv3657, yyv23657) } - } else if yyl3652 != len(yyv3652) { - yyv3652 = yyv3652[:yyl3652] - yyc3652 = true + } else if yyl3657 != len(yyv3657) { + yyv3657 = yyv3657[:yyl3657] + yyc3657 = true } - yyj3652 := 0 - for ; yyj3652 < yyrr3652; yyj3652++ { - yyh3652.ElemContainerState(yyj3652) + yyj3657 := 0 + for ; yyj3657 < yyrr3657; yyj3657++ { + yyh3657.ElemContainerState(yyj3657) if r.TryDecodeAsNil() { - yyv3652[yyj3652] = LimitRange{} + yyv3657[yyj3657] = LimitRange{} } else { - yyv3653 := &yyv3652[yyj3652] - yyv3653.CodecDecodeSelf(d) + yyv3658 := &yyv3657[yyj3657] + yyv3658.CodecDecodeSelf(d) } } - if yyrt3652 { - for ; yyj3652 < yyl3652; yyj3652++ { - yyv3652 = append(yyv3652, LimitRange{}) - yyh3652.ElemContainerState(yyj3652) + if yyrt3657 { + for ; yyj3657 < yyl3657; yyj3657++ { + yyv3657 = append(yyv3657, LimitRange{}) + yyh3657.ElemContainerState(yyj3657) if r.TryDecodeAsNil() { - yyv3652[yyj3652] = LimitRange{} + yyv3657[yyj3657] = LimitRange{} } else { - yyv3654 := &yyv3652[yyj3652] - yyv3654.CodecDecodeSelf(d) + yyv3659 := &yyv3657[yyj3657] + yyv3659.CodecDecodeSelf(d) } } } } else { - yyj3652 := 0 - for ; !r.CheckBreak(); yyj3652++ { + yyj3657 := 0 + for ; !r.CheckBreak(); yyj3657++ { - if yyj3652 >= len(yyv3652) { - yyv3652 = append(yyv3652, LimitRange{}) // var yyz3652 LimitRange - yyc3652 = true + if yyj3657 >= len(yyv3657) { + yyv3657 = append(yyv3657, LimitRange{}) // var yyz3657 LimitRange + yyc3657 = true } - yyh3652.ElemContainerState(yyj3652) - if yyj3652 < len(yyv3652) { + yyh3657.ElemContainerState(yyj3657) + if yyj3657 < len(yyv3657) { if r.TryDecodeAsNil() { - yyv3652[yyj3652] = LimitRange{} + yyv3657[yyj3657] = LimitRange{} } else { - yyv3655 := &yyv3652[yyj3652] - yyv3655.CodecDecodeSelf(d) + yyv3660 := &yyv3657[yyj3657] + yyv3660.CodecDecodeSelf(d) } } else { @@ -46615,17 +46663,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj3652 < len(yyv3652) { - yyv3652 = yyv3652[:yyj3652] - yyc3652 = true - } else if yyj3652 == 0 && yyv3652 == nil { - yyv3652 = []LimitRange{} - yyc3652 = true + if yyj3657 < len(yyv3657) { + yyv3657 = yyv3657[:yyj3657] + yyc3657 = true + } else if yyj3657 == 0 && yyv3657 == nil { + yyv3657 = []LimitRange{} + yyc3657 = true } } - yyh3652.End() - if yyc3652 { - *v = yyv3652 + yyh3657.End() + if yyc3657 { + *v = yyv3657 } } @@ -46634,10 +46682,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3656 := range v { + for _, yyv3661 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3657 := &yyv3656 - yy3657.CodecEncodeSelf(e) + yy3662 := &yyv3661 + yy3662.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46647,83 +46695,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3658 := *v - yyh3658, yyl3658 := z.DecSliceHelperStart() - var yyc3658 bool - if yyl3658 == 0 { - if yyv3658 == nil { - yyv3658 = []ResourceQuota{} - yyc3658 = true - } else if len(yyv3658) != 0 { - yyv3658 = yyv3658[:0] - yyc3658 = true + yyv3663 := *v + yyh3663, yyl3663 := z.DecSliceHelperStart() + var yyc3663 bool + if yyl3663 == 0 { + if yyv3663 == nil { + yyv3663 = []ResourceQuota{} + yyc3663 = true + } else if len(yyv3663) != 0 { + yyv3663 = yyv3663[:0] + yyc3663 = true } - } else if yyl3658 > 0 { - var yyrr3658, yyrl3658 int - var yyrt3658 bool - if yyl3658 > cap(yyv3658) { + } else if yyl3663 > 0 { + var yyrr3663, yyrl3663 int + var yyrt3663 bool + if yyl3663 > cap(yyv3663) { - yyrg3658 := len(yyv3658) > 0 - yyv23658 := yyv3658 - yyrl3658, yyrt3658 = z.DecInferLen(yyl3658, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3658 { - if yyrl3658 <= cap(yyv3658) { - yyv3658 = yyv3658[:yyrl3658] + yyrg3663 := len(yyv3663) > 0 + yyv23663 := yyv3663 + yyrl3663, yyrt3663 = z.DecInferLen(yyl3663, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3663 { + if yyrl3663 <= cap(yyv3663) { + yyv3663 = yyv3663[:yyrl3663] } else { - yyv3658 = make([]ResourceQuota, yyrl3658) + yyv3663 = make([]ResourceQuota, yyrl3663) } } else { - yyv3658 = make([]ResourceQuota, yyrl3658) + yyv3663 = make([]ResourceQuota, yyrl3663) } - yyc3658 = true - yyrr3658 = len(yyv3658) - if yyrg3658 { - copy(yyv3658, yyv23658) + yyc3663 = true + yyrr3663 = len(yyv3663) + if yyrg3663 { + copy(yyv3663, yyv23663) } - } else if yyl3658 != len(yyv3658) { - yyv3658 = yyv3658[:yyl3658] - yyc3658 = true + } else if yyl3663 != len(yyv3663) { + yyv3663 = yyv3663[:yyl3663] + yyc3663 = true } - yyj3658 := 0 - for ; yyj3658 < yyrr3658; yyj3658++ { - yyh3658.ElemContainerState(yyj3658) + yyj3663 := 0 + for ; yyj3663 < yyrr3663; yyj3663++ { + yyh3663.ElemContainerState(yyj3663) if r.TryDecodeAsNil() { - yyv3658[yyj3658] = ResourceQuota{} + yyv3663[yyj3663] = ResourceQuota{} } else { - yyv3659 := &yyv3658[yyj3658] - yyv3659.CodecDecodeSelf(d) + yyv3664 := &yyv3663[yyj3663] + yyv3664.CodecDecodeSelf(d) } } - if yyrt3658 { - for ; yyj3658 < yyl3658; yyj3658++ { - yyv3658 = append(yyv3658, ResourceQuota{}) - yyh3658.ElemContainerState(yyj3658) + if yyrt3663 { + for ; yyj3663 < yyl3663; yyj3663++ { + yyv3663 = append(yyv3663, ResourceQuota{}) + yyh3663.ElemContainerState(yyj3663) if r.TryDecodeAsNil() { - yyv3658[yyj3658] = ResourceQuota{} + yyv3663[yyj3663] = ResourceQuota{} } else { - yyv3660 := &yyv3658[yyj3658] - yyv3660.CodecDecodeSelf(d) + yyv3665 := &yyv3663[yyj3663] + yyv3665.CodecDecodeSelf(d) } } } } else { - yyj3658 := 0 - for ; !r.CheckBreak(); yyj3658++ { + yyj3663 := 0 + for ; !r.CheckBreak(); yyj3663++ { - if yyj3658 >= len(yyv3658) { - yyv3658 = append(yyv3658, ResourceQuota{}) // var yyz3658 ResourceQuota - yyc3658 = true + if yyj3663 >= len(yyv3663) { + yyv3663 = append(yyv3663, ResourceQuota{}) // var yyz3663 ResourceQuota + yyc3663 = true } - yyh3658.ElemContainerState(yyj3658) - if yyj3658 < len(yyv3658) { + yyh3663.ElemContainerState(yyj3663) + if yyj3663 < len(yyv3663) { if r.TryDecodeAsNil() { - yyv3658[yyj3658] = ResourceQuota{} + yyv3663[yyj3663] = ResourceQuota{} } else { - yyv3661 := &yyv3658[yyj3658] - yyv3661.CodecDecodeSelf(d) + yyv3666 := &yyv3663[yyj3663] + yyv3666.CodecDecodeSelf(d) } } else { @@ -46731,17 +46779,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj3658 < len(yyv3658) { - yyv3658 = yyv3658[:yyj3658] - yyc3658 = true - } else if yyj3658 == 0 && yyv3658 == nil { - yyv3658 = []ResourceQuota{} - yyc3658 = true + if yyj3663 < len(yyv3663) { + yyv3663 = yyv3663[:yyj3663] + yyc3663 = true + } else if yyj3663 == 0 && yyv3663 == nil { + yyv3663 = []ResourceQuota{} + yyc3663 = true } } - yyh3658.End() - if yyc3658 { - *v = yyv3658 + yyh3663.End() + if yyc3663 { + *v = yyv3663 } } @@ -46750,23 +46798,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3662, yyv3662 := range v { + for yyk3667, yyv3667 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym3663 := z.EncBinary() - _ = yym3663 + yym3668 := z.EncBinary() + _ = yym3668 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk3662)) + r.EncodeString(codecSelferC_UTF81234, string(yyk3667)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv3662 == nil { + if yyv3667 == nil { r.EncodeNil() } else { - yym3664 := z.EncBinary() - _ = yym3664 + yym3669 := z.EncBinary() + _ = yym3669 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3662)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3667)) } } } @@ -46778,80 +46826,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3665 := *v - yyl3665 := r.ReadMapStart() - yybh3665 := z.DecBasicHandle() - if yyv3665 == nil { - yyrl3665, _ := z.DecInferLen(yyl3665, yybh3665.MaxInitLen, 40) - yyv3665 = make(map[string][]uint8, yyrl3665) - *v = yyv3665 + yyv3670 := *v + yyl3670 := r.ReadMapStart() + yybh3670 := z.DecBasicHandle() + if yyv3670 == nil { + yyrl3670, _ := z.DecInferLen(yyl3670, yybh3670.MaxInitLen, 40) + yyv3670 = make(map[string][]uint8, yyrl3670) + *v = yyv3670 } - var yymk3665 string - var yymv3665 []uint8 - var yymg3665 bool - if yybh3665.MapValueReset { - yymg3665 = true + var yymk3670 string + var yymv3670 []uint8 + var yymg3670 bool + if yybh3670.MapValueReset { + yymg3670 = true } - if yyl3665 > 0 { - for yyj3665 := 0; yyj3665 < yyl3665; yyj3665++ { + if yyl3670 > 0 { + for yyj3670 := 0; yyj3670 < yyl3670; yyj3670++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3665 = "" + yymk3670 = "" } else { - yymk3665 = string(r.DecodeString()) + yymk3670 = string(r.DecodeString()) } - if yymg3665 { - yymv3665 = yyv3665[yymk3665] + if yymg3670 { + yymv3670 = yyv3670[yymk3670] } else { - yymv3665 = nil + yymv3670 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3665 = nil + yymv3670 = nil } else { - yyv3667 := &yymv3665 - yym3668 := z.DecBinary() - _ = yym3668 + yyv3672 := &yymv3670 + yym3673 := z.DecBinary() + _ = yym3673 if false { } else { - *yyv3667 = r.DecodeBytes(*(*[]byte)(yyv3667), false, false) + *yyv3672 = r.DecodeBytes(*(*[]byte)(yyv3672), false, false) } } - if yyv3665 != nil { - yyv3665[yymk3665] = yymv3665 + if yyv3670 != nil { + yyv3670[yymk3670] = yymv3670 } } - } else if yyl3665 < 0 { - for yyj3665 := 0; !r.CheckBreak(); yyj3665++ { + } else if yyl3670 < 0 { + for yyj3670 := 0; !r.CheckBreak(); yyj3670++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3665 = "" + yymk3670 = "" } else { - yymk3665 = string(r.DecodeString()) + yymk3670 = string(r.DecodeString()) } - if yymg3665 { - yymv3665 = yyv3665[yymk3665] + if yymg3670 { + yymv3670 = yyv3670[yymk3670] } else { - yymv3665 = nil + yymv3670 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3665 = nil + yymv3670 = nil } else { - yyv3670 := &yymv3665 - yym3671 := z.DecBinary() - _ = yym3671 + yyv3675 := &yymv3670 + yym3676 := z.DecBinary() + _ = yym3676 if false { } else { - *yyv3670 = r.DecodeBytes(*(*[]byte)(yyv3670), false, false) + *yyv3675 = r.DecodeBytes(*(*[]byte)(yyv3675), false, false) } } - if yyv3665 != nil { - yyv3665[yymk3665] = yymv3665 + if yyv3670 != nil { + yyv3670[yymk3670] = yymv3670 } } } // else len==0: TODO: Should we clear map entries? @@ -46863,10 +46911,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3672 := range v { + for _, yyv3677 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3673 := &yyv3672 - yy3673.CodecEncodeSelf(e) + yy3678 := &yyv3677 + yy3678.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46876,83 +46924,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3674 := *v - yyh3674, yyl3674 := z.DecSliceHelperStart() - var yyc3674 bool - if yyl3674 == 0 { - if yyv3674 == nil { - yyv3674 = []Secret{} - yyc3674 = true - } else if len(yyv3674) != 0 { - yyv3674 = yyv3674[:0] - yyc3674 = true + yyv3679 := *v + yyh3679, yyl3679 := z.DecSliceHelperStart() + var yyc3679 bool + if yyl3679 == 0 { + if yyv3679 == nil { + yyv3679 = []Secret{} + yyc3679 = true + } else if len(yyv3679) != 0 { + yyv3679 = yyv3679[:0] + yyc3679 = true } - } else if yyl3674 > 0 { - var yyrr3674, yyrl3674 int - var yyrt3674 bool - if yyl3674 > cap(yyv3674) { + } else if yyl3679 > 0 { + var yyrr3679, yyrl3679 int + var yyrt3679 bool + if yyl3679 > cap(yyv3679) { - yyrg3674 := len(yyv3674) > 0 - yyv23674 := yyv3674 - yyrl3674, yyrt3674 = z.DecInferLen(yyl3674, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3674 { - if yyrl3674 <= cap(yyv3674) { - yyv3674 = yyv3674[:yyrl3674] + yyrg3679 := len(yyv3679) > 0 + yyv23679 := yyv3679 + yyrl3679, yyrt3679 = z.DecInferLen(yyl3679, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3679 { + if yyrl3679 <= cap(yyv3679) { + yyv3679 = yyv3679[:yyrl3679] } else { - yyv3674 = make([]Secret, yyrl3674) + yyv3679 = make([]Secret, yyrl3679) } } else { - yyv3674 = make([]Secret, yyrl3674) + yyv3679 = make([]Secret, yyrl3679) } - yyc3674 = true - yyrr3674 = len(yyv3674) - if yyrg3674 { - copy(yyv3674, yyv23674) + yyc3679 = true + yyrr3679 = len(yyv3679) + if yyrg3679 { + copy(yyv3679, yyv23679) } - } else if yyl3674 != len(yyv3674) { - yyv3674 = yyv3674[:yyl3674] - yyc3674 = true + } else if yyl3679 != len(yyv3679) { + yyv3679 = yyv3679[:yyl3679] + yyc3679 = true } - yyj3674 := 0 - for ; yyj3674 < yyrr3674; yyj3674++ { - yyh3674.ElemContainerState(yyj3674) + yyj3679 := 0 + for ; yyj3679 < yyrr3679; yyj3679++ { + yyh3679.ElemContainerState(yyj3679) if r.TryDecodeAsNil() { - yyv3674[yyj3674] = Secret{} + yyv3679[yyj3679] = Secret{} } else { - yyv3675 := &yyv3674[yyj3674] - yyv3675.CodecDecodeSelf(d) + yyv3680 := &yyv3679[yyj3679] + yyv3680.CodecDecodeSelf(d) } } - if yyrt3674 { - for ; yyj3674 < yyl3674; yyj3674++ { - yyv3674 = append(yyv3674, Secret{}) - yyh3674.ElemContainerState(yyj3674) + if yyrt3679 { + for ; yyj3679 < yyl3679; yyj3679++ { + yyv3679 = append(yyv3679, Secret{}) + yyh3679.ElemContainerState(yyj3679) if r.TryDecodeAsNil() { - yyv3674[yyj3674] = Secret{} + yyv3679[yyj3679] = Secret{} } else { - yyv3676 := &yyv3674[yyj3674] - yyv3676.CodecDecodeSelf(d) + yyv3681 := &yyv3679[yyj3679] + yyv3681.CodecDecodeSelf(d) } } } } else { - yyj3674 := 0 - for ; !r.CheckBreak(); yyj3674++ { + yyj3679 := 0 + for ; !r.CheckBreak(); yyj3679++ { - if yyj3674 >= len(yyv3674) { - yyv3674 = append(yyv3674, Secret{}) // var yyz3674 Secret - yyc3674 = true + if yyj3679 >= len(yyv3679) { + yyv3679 = append(yyv3679, Secret{}) // var yyz3679 Secret + yyc3679 = true } - yyh3674.ElemContainerState(yyj3674) - if yyj3674 < len(yyv3674) { + yyh3679.ElemContainerState(yyj3679) + if yyj3679 < len(yyv3679) { if r.TryDecodeAsNil() { - yyv3674[yyj3674] = Secret{} + yyv3679[yyj3679] = Secret{} } else { - yyv3677 := &yyv3674[yyj3674] - yyv3677.CodecDecodeSelf(d) + yyv3682 := &yyv3679[yyj3679] + yyv3682.CodecDecodeSelf(d) } } else { @@ -46960,17 +47008,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj3674 < len(yyv3674) { - yyv3674 = yyv3674[:yyj3674] - yyc3674 = true - } else if yyj3674 == 0 && yyv3674 == nil { - yyv3674 = []Secret{} - yyc3674 = true + if yyj3679 < len(yyv3679) { + yyv3679 = yyv3679[:yyj3679] + yyc3679 = true + } else if yyj3679 == 0 && yyv3679 == nil { + yyv3679 = []Secret{} + yyc3679 = true } } - yyh3674.End() - if yyc3674 { - *v = yyv3674 + yyh3679.End() + if yyc3679 { + *v = yyv3679 } } @@ -46979,10 +47027,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3678 := range v { + for _, yyv3683 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3679 := &yyv3678 - yy3679.CodecEncodeSelf(e) + yy3684 := &yyv3683 + yy3684.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46992,83 +47040,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3680 := *v - yyh3680, yyl3680 := z.DecSliceHelperStart() - var yyc3680 bool - if yyl3680 == 0 { - if yyv3680 == nil { - yyv3680 = []ComponentCondition{} - yyc3680 = true - } else if len(yyv3680) != 0 { - yyv3680 = yyv3680[:0] - yyc3680 = true + yyv3685 := *v + yyh3685, yyl3685 := z.DecSliceHelperStart() + var yyc3685 bool + if yyl3685 == 0 { + if yyv3685 == nil { + yyv3685 = []ComponentCondition{} + yyc3685 = true + } else if len(yyv3685) != 0 { + yyv3685 = yyv3685[:0] + yyc3685 = true } - } else if yyl3680 > 0 { - var yyrr3680, yyrl3680 int - var yyrt3680 bool - if yyl3680 > cap(yyv3680) { + } else if yyl3685 > 0 { + var yyrr3685, yyrl3685 int + var yyrt3685 bool + if yyl3685 > cap(yyv3685) { - yyrg3680 := len(yyv3680) > 0 - yyv23680 := yyv3680 - yyrl3680, yyrt3680 = z.DecInferLen(yyl3680, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3680 { - if yyrl3680 <= cap(yyv3680) { - yyv3680 = yyv3680[:yyrl3680] + yyrg3685 := len(yyv3685) > 0 + yyv23685 := yyv3685 + yyrl3685, yyrt3685 = z.DecInferLen(yyl3685, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3685 { + if yyrl3685 <= cap(yyv3685) { + yyv3685 = yyv3685[:yyrl3685] } else { - yyv3680 = make([]ComponentCondition, yyrl3680) + yyv3685 = make([]ComponentCondition, yyrl3685) } } else { - yyv3680 = make([]ComponentCondition, yyrl3680) + yyv3685 = make([]ComponentCondition, yyrl3685) } - yyc3680 = true - yyrr3680 = len(yyv3680) - if yyrg3680 { - copy(yyv3680, yyv23680) + yyc3685 = true + yyrr3685 = len(yyv3685) + if yyrg3685 { + copy(yyv3685, yyv23685) } - } else if yyl3680 != len(yyv3680) { - yyv3680 = yyv3680[:yyl3680] - yyc3680 = true + } else if yyl3685 != len(yyv3685) { + yyv3685 = yyv3685[:yyl3685] + yyc3685 = true } - yyj3680 := 0 - for ; yyj3680 < yyrr3680; yyj3680++ { - yyh3680.ElemContainerState(yyj3680) + yyj3685 := 0 + for ; yyj3685 < yyrr3685; yyj3685++ { + yyh3685.ElemContainerState(yyj3685) if r.TryDecodeAsNil() { - yyv3680[yyj3680] = ComponentCondition{} + yyv3685[yyj3685] = ComponentCondition{} } else { - yyv3681 := &yyv3680[yyj3680] - yyv3681.CodecDecodeSelf(d) + yyv3686 := &yyv3685[yyj3685] + yyv3686.CodecDecodeSelf(d) } } - if yyrt3680 { - for ; yyj3680 < yyl3680; yyj3680++ { - yyv3680 = append(yyv3680, ComponentCondition{}) - yyh3680.ElemContainerState(yyj3680) + if yyrt3685 { + for ; yyj3685 < yyl3685; yyj3685++ { + yyv3685 = append(yyv3685, ComponentCondition{}) + yyh3685.ElemContainerState(yyj3685) if r.TryDecodeAsNil() { - yyv3680[yyj3680] = ComponentCondition{} + yyv3685[yyj3685] = ComponentCondition{} } else { - yyv3682 := &yyv3680[yyj3680] - yyv3682.CodecDecodeSelf(d) + yyv3687 := &yyv3685[yyj3685] + yyv3687.CodecDecodeSelf(d) } } } } else { - yyj3680 := 0 - for ; !r.CheckBreak(); yyj3680++ { + yyj3685 := 0 + for ; !r.CheckBreak(); yyj3685++ { - if yyj3680 >= len(yyv3680) { - yyv3680 = append(yyv3680, ComponentCondition{}) // var yyz3680 ComponentCondition - yyc3680 = true + if yyj3685 >= len(yyv3685) { + yyv3685 = append(yyv3685, ComponentCondition{}) // var yyz3685 ComponentCondition + yyc3685 = true } - yyh3680.ElemContainerState(yyj3680) - if yyj3680 < len(yyv3680) { + yyh3685.ElemContainerState(yyj3685) + if yyj3685 < len(yyv3685) { if r.TryDecodeAsNil() { - yyv3680[yyj3680] = ComponentCondition{} + yyv3685[yyj3685] = ComponentCondition{} } else { - yyv3683 := &yyv3680[yyj3680] - yyv3683.CodecDecodeSelf(d) + yyv3688 := &yyv3685[yyj3685] + yyv3688.CodecDecodeSelf(d) } } else { @@ -47076,17 +47124,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj3680 < len(yyv3680) { - yyv3680 = yyv3680[:yyj3680] - yyc3680 = true - } else if yyj3680 == 0 && yyv3680 == nil { - yyv3680 = []ComponentCondition{} - yyc3680 = true + if yyj3685 < len(yyv3685) { + yyv3685 = yyv3685[:yyj3685] + yyc3685 = true + } else if yyj3685 == 0 && yyv3685 == nil { + yyv3685 = []ComponentCondition{} + yyc3685 = true } } - yyh3680.End() - if yyc3680 { - *v = yyv3680 + yyh3685.End() + if yyc3685 { + *v = yyv3685 } } @@ -47095,10 +47143,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3684 := range v { + for _, yyv3689 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3685 := &yyv3684 - yy3685.CodecEncodeSelf(e) + yy3690 := &yyv3689 + yy3690.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47108,83 +47156,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3686 := *v - yyh3686, yyl3686 := z.DecSliceHelperStart() - var yyc3686 bool - if yyl3686 == 0 { - if yyv3686 == nil { - yyv3686 = []ComponentStatus{} - yyc3686 = true - } else if len(yyv3686) != 0 { - yyv3686 = yyv3686[:0] - yyc3686 = true + yyv3691 := *v + yyh3691, yyl3691 := z.DecSliceHelperStart() + var yyc3691 bool + if yyl3691 == 0 { + if yyv3691 == nil { + yyv3691 = []ComponentStatus{} + yyc3691 = true + } else if len(yyv3691) != 0 { + yyv3691 = yyv3691[:0] + yyc3691 = true } - } else if yyl3686 > 0 { - var yyrr3686, yyrl3686 int - var yyrt3686 bool - if yyl3686 > cap(yyv3686) { + } else if yyl3691 > 0 { + var yyrr3691, yyrl3691 int + var yyrt3691 bool + if yyl3691 > cap(yyv3691) { - yyrg3686 := len(yyv3686) > 0 - yyv23686 := yyv3686 - yyrl3686, yyrt3686 = z.DecInferLen(yyl3686, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3686 { - if yyrl3686 <= cap(yyv3686) { - yyv3686 = yyv3686[:yyrl3686] + yyrg3691 := len(yyv3691) > 0 + yyv23691 := yyv3691 + yyrl3691, yyrt3691 = z.DecInferLen(yyl3691, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3691 { + if yyrl3691 <= cap(yyv3691) { + yyv3691 = yyv3691[:yyrl3691] } else { - yyv3686 = make([]ComponentStatus, yyrl3686) + yyv3691 = make([]ComponentStatus, yyrl3691) } } else { - yyv3686 = make([]ComponentStatus, yyrl3686) + yyv3691 = make([]ComponentStatus, yyrl3691) } - yyc3686 = true - yyrr3686 = len(yyv3686) - if yyrg3686 { - copy(yyv3686, yyv23686) + yyc3691 = true + yyrr3691 = len(yyv3691) + if yyrg3691 { + copy(yyv3691, yyv23691) } - } else if yyl3686 != len(yyv3686) { - yyv3686 = yyv3686[:yyl3686] - yyc3686 = true + } else if yyl3691 != len(yyv3691) { + yyv3691 = yyv3691[:yyl3691] + yyc3691 = true } - yyj3686 := 0 - for ; yyj3686 < yyrr3686; yyj3686++ { - yyh3686.ElemContainerState(yyj3686) + yyj3691 := 0 + for ; yyj3691 < yyrr3691; yyj3691++ { + yyh3691.ElemContainerState(yyj3691) if r.TryDecodeAsNil() { - yyv3686[yyj3686] = ComponentStatus{} + yyv3691[yyj3691] = ComponentStatus{} } else { - yyv3687 := &yyv3686[yyj3686] - yyv3687.CodecDecodeSelf(d) + yyv3692 := &yyv3691[yyj3691] + yyv3692.CodecDecodeSelf(d) } } - if yyrt3686 { - for ; yyj3686 < yyl3686; yyj3686++ { - yyv3686 = append(yyv3686, ComponentStatus{}) - yyh3686.ElemContainerState(yyj3686) + if yyrt3691 { + for ; yyj3691 < yyl3691; yyj3691++ { + yyv3691 = append(yyv3691, ComponentStatus{}) + yyh3691.ElemContainerState(yyj3691) if r.TryDecodeAsNil() { - yyv3686[yyj3686] = ComponentStatus{} + yyv3691[yyj3691] = ComponentStatus{} } else { - yyv3688 := &yyv3686[yyj3686] - yyv3688.CodecDecodeSelf(d) + yyv3693 := &yyv3691[yyj3691] + yyv3693.CodecDecodeSelf(d) } } } } else { - yyj3686 := 0 - for ; !r.CheckBreak(); yyj3686++ { + yyj3691 := 0 + for ; !r.CheckBreak(); yyj3691++ { - if yyj3686 >= len(yyv3686) { - yyv3686 = append(yyv3686, ComponentStatus{}) // var yyz3686 ComponentStatus - yyc3686 = true + if yyj3691 >= len(yyv3691) { + yyv3691 = append(yyv3691, ComponentStatus{}) // var yyz3691 ComponentStatus + yyc3691 = true } - yyh3686.ElemContainerState(yyj3686) - if yyj3686 < len(yyv3686) { + yyh3691.ElemContainerState(yyj3691) + if yyj3691 < len(yyv3691) { if r.TryDecodeAsNil() { - yyv3686[yyj3686] = ComponentStatus{} + yyv3691[yyj3691] = ComponentStatus{} } else { - yyv3689 := &yyv3686[yyj3686] - yyv3689.CodecDecodeSelf(d) + yyv3694 := &yyv3691[yyj3691] + yyv3694.CodecDecodeSelf(d) } } else { @@ -47192,16 +47240,16 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj3686 < len(yyv3686) { - yyv3686 = yyv3686[:yyj3686] - yyc3686 = true - } else if yyj3686 == 0 && yyv3686 == nil { - yyv3686 = []ComponentStatus{} - yyc3686 = true + if yyj3691 < len(yyv3691) { + yyv3691 = yyv3691[:yyj3691] + yyc3691 = true + } else if yyj3691 == 0 && yyv3691 == nil { + yyv3691 = []ComponentStatus{} + yyc3691 = true } } - yyh3686.End() - if yyc3686 { - *v = yyv3686 + yyh3691.End() + if yyc3691 { + *v = yyv3691 } } diff --git a/pkg/api/types.go b/pkg/api/types.go index 5e1a61d88f132..34d3e86cd1da1 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -449,6 +449,8 @@ type ISCSIVolumeSource struct { IQN string `json:"iqn,omitempty"` // Required: iSCSI target lun number Lun int `json:"lun,omitempty"` + // Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. + ISCSIInterface string `json:"iscsiInterface,omitempty"` // Required: Filesystem type to mount. // Must be a filesystem type supported by the host operating system. // Ex. "ext4", "xfs", "ntfs" diff --git a/pkg/api/v1/conversion_generated.go b/pkg/api/v1/conversion_generated.go index 4fb07b91ff62b..fdef3cdc91091 100644 --- a/pkg/api/v1/conversion_generated.go +++ b/pkg/api/v1/conversion_generated.go @@ -919,6 +919,7 @@ func autoconvert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource(in *api.ISCSIVolu out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = int32(in.Lun) + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil @@ -3945,6 +3946,7 @@ func autoconvert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource(in *ISCSIVolumeSo out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = int(in.Lun) + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/api/v1/deep_copy_generated.go b/pkg/api/v1/deep_copy_generated.go index df7623dd6b6b4..4d44fa9986f68 100644 --- a/pkg/api/v1/deep_copy_generated.go +++ b/pkg/api/v1/deep_copy_generated.go @@ -681,6 +681,7 @@ func deepCopy_v1_ISCSIVolumeSource(in ISCSIVolumeSource, out *ISCSIVolumeSource, out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = in.Lun + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/api/v1/defaults.go b/pkg/api/v1/defaults.go index c8191f21110f1..dd27a91bdc4e1 100644 --- a/pkg/api/v1/defaults.go +++ b/pkg/api/v1/defaults.go @@ -164,6 +164,11 @@ func addDefaultingFuncs() { obj.Status.Phase = ClaimPending } }, + func(obj *ISCSIVolumeSource) { + if obj.ISCSIInterface == "" { + obj.ISCSIInterface = "default" + } + }, func(obj *Endpoints) { for i := range obj.Subsets { ss := &obj.Subsets[i] diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index d22945f5a7b68..df68ce079d277 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -10924,13 +10924,14 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep759 := !z.EncBinary() yy2arr759 := z.EncBasicHandle().StructToArray - var yyq759 [5]bool + var yyq759 [6]bool _, _, _ = yysep759, yyq759, yy2arr759 const yyr759 bool = false - yyq759[4] = x.ReadOnly != false + yyq759[3] = x.ISCSIInterface != "" + yyq759[5] = x.ReadOnly != false var yynn759 int if yyr759 || yy2arr759 { - r.EncodeArrayStart(5) + r.EncodeArrayStart(6) } else { yynn759 = 4 for _, b := range yyq759 { @@ -11000,8 +11001,33 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr759 || yy2arr759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym770 := z.EncBinary() - _ = yym770 + if yyq759[3] { + yym770 := z.EncBinary() + _ = yym770 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq759[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("iscsiInterface")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym771 := z.EncBinary() + _ = yym771 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ISCSIInterface)) + } + } + } + if yyr759 || yy2arr759 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yym773 := z.EncBinary() + _ = yym773 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11010,8 +11036,8 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym771 := z.EncBinary() - _ = yym771 + yym774 := z.EncBinary() + _ = yym774 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11019,9 +11045,9 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } if yyr759 || yy2arr759 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq759[4] { - yym773 := z.EncBinary() - _ = yym773 + if yyq759[5] { + yym776 := z.EncBinary() + _ = yym776 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11030,12 +11056,12 @@ func (x *ISCSIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq759[4] { + if yyq759[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym774 := z.EncBinary() - _ = yym774 + yym777 := z.EncBinary() + _ = yym777 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11055,25 +11081,25 @@ func (x *ISCSIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym775 := z.DecBinary() - _ = yym775 + yym778 := z.DecBinary() + _ = yym778 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct776 := r.ContainerType() - if yyct776 == codecSelferValueTypeMap1234 { - yyl776 := r.ReadMapStart() - if yyl776 == 0 { + yyct779 := r.ContainerType() + if yyct779 == codecSelferValueTypeMap1234 { + yyl779 := r.ReadMapStart() + if yyl779 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl776, d) + x.codecDecodeSelfFromMap(yyl779, d) } - } else if yyct776 == codecSelferValueTypeArray1234 { - yyl776 := r.ReadArrayStart() - if yyl776 == 0 { + } else if yyct779 == codecSelferValueTypeArray1234 { + yyl779 := r.ReadArrayStart() + if yyl779 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl776, d) + x.codecDecodeSelfFromArray(yyl779, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11085,12 +11111,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys777Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys777Slc - var yyhl777 bool = l >= 0 - for yyj777 := 0; ; yyj777++ { - if yyhl777 { - if yyj777 >= l { + var yys780Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys780Slc + var yyhl780 bool = l >= 0 + for yyj780 := 0; ; yyj780++ { + if yyhl780 { + if yyj780 >= l { break } } else { @@ -11099,10 +11125,10 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys777Slc = r.DecodeBytes(yys777Slc, true, true) - yys777 := string(yys777Slc) + yys780Slc = r.DecodeBytes(yys780Slc, true, true) + yys780 := string(yys780Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys777 { + switch yys780 { case "targetPortal": if r.TryDecodeAsNil() { x.TargetPortal = "" @@ -11121,6 +11147,12 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } else { x.Lun = int32(r.DecodeInt(32)) } + case "iscsiInterface": + if r.TryDecodeAsNil() { + x.ISCSIInterface = "" + } else { + x.ISCSIInterface = string(r.DecodeString()) + } case "fsType": if r.TryDecodeAsNil() { x.FSType = "" @@ -11134,9 +11166,9 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys777) - } // end switch yys777 - } // end for yyj777 + z.DecStructFieldNotFound(-1, yys780) + } // end switch yys780 + } // end for yyj780 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11144,16 +11176,16 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj783 int - var yyb783 bool - var yyhl783 bool = l >= 0 - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + var yyj787 int + var yyb787 bool + var yyhl787 bool = l >= 0 + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11163,13 +11195,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.TargetPortal = string(r.DecodeString()) } - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11179,13 +11211,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.IQN = string(r.DecodeString()) } - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11195,13 +11227,29 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Lun = int32(r.DecodeInt(32)) } - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l + } else { + yyb787 = r.CheckBreak() + } + if yyb787 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ISCSIInterface = "" + } else { + x.ISCSIInterface = string(r.DecodeString()) + } + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11211,13 +11259,13 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.FSType = string(r.DecodeString()) } - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11228,17 +11276,17 @@ func (x *ISCSIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder x.ReadOnly = bool(r.DecodeBool()) } for { - yyj783++ - if yyhl783 { - yyb783 = yyj783 > l + yyj787++ + if yyhl787 { + yyb787 = yyj787 > l } else { - yyb783 = r.CheckBreak() + yyb787 = r.CheckBreak() } - if yyb783 { + if yyb787 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj783-1, "") + z.DecStructFieldNotFound(yyj787-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11250,37 +11298,37 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym789 := z.EncBinary() - _ = yym789 + yym794 := z.EncBinary() + _ = yym794 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep790 := !z.EncBinary() - yy2arr790 := z.EncBasicHandle().StructToArray - var yyq790 [4]bool - _, _, _ = yysep790, yyq790, yy2arr790 - const yyr790 bool = false - yyq790[3] = x.ReadOnly != false - var yynn790 int - if yyr790 || yy2arr790 { + yysep795 := !z.EncBinary() + yy2arr795 := z.EncBasicHandle().StructToArray + var yyq795 [4]bool + _, _, _ = yysep795, yyq795, yy2arr795 + const yyr795 bool = false + yyq795[3] = x.ReadOnly != false + var yynn795 int + if yyr795 || yy2arr795 { r.EncodeArrayStart(4) } else { - yynn790 = 3 - for _, b := range yyq790 { + yynn795 = 3 + for _, b := range yyq795 { if b { - yynn790++ + yynn795++ } } - r.EncodeMapStart(yynn790) - yynn790 = 0 + r.EncodeMapStart(yynn795) + yynn795 = 0 } - if yyr790 || yy2arr790 { + if yyr795 || yy2arr795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.TargetWWNs == nil { r.EncodeNil() } else { - yym792 := z.EncBinary() - _ = yym792 + yym797 := z.EncBinary() + _ = yym797 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) @@ -11293,25 +11341,25 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.TargetWWNs == nil { r.EncodeNil() } else { - yym793 := z.EncBinary() - _ = yym793 + yym798 := z.EncBinary() + _ = yym798 if false { } else { z.F.EncSliceStringV(x.TargetWWNs, false, e) } } } - if yyr790 || yy2arr790 { + if yyr795 || yy2arr795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Lun == nil { r.EncodeNil() } else { - yy795 := *x.Lun - yym796 := z.EncBinary() - _ = yym796 + yy800 := *x.Lun + yym801 := z.EncBinary() + _ = yym801 if false { } else { - r.EncodeInt(int64(yy795)) + r.EncodeInt(int64(yy800)) } } } else { @@ -11321,19 +11369,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x.Lun == nil { r.EncodeNil() } else { - yy797 := *x.Lun - yym798 := z.EncBinary() - _ = yym798 + yy802 := *x.Lun + yym803 := z.EncBinary() + _ = yym803 if false { } else { - r.EncodeInt(int64(yy797)) + r.EncodeInt(int64(yy802)) } } } - if yyr790 || yy2arr790 { + if yyr795 || yy2arr795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym800 := z.EncBinary() - _ = yym800 + yym805 := z.EncBinary() + _ = yym805 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) @@ -11342,18 +11390,18 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsType")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym801 := z.EncBinary() - _ = yym801 + yym806 := z.EncBinary() + _ = yym806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FSType)) } } - if yyr790 || yy2arr790 { + if yyr795 || yy2arr795 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq790[3] { - yym803 := z.EncBinary() - _ = yym803 + if yyq795[3] { + yym808 := z.EncBinary() + _ = yym808 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11362,19 +11410,19 @@ func (x *FCVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq790[3] { + if yyq795[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym804 := z.EncBinary() - _ = yym804 + yym809 := z.EncBinary() + _ = yym809 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr790 || yy2arr790 { + if yyr795 || yy2arr795 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11387,25 +11435,25 @@ func (x *FCVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym805 := z.DecBinary() - _ = yym805 + yym810 := z.DecBinary() + _ = yym810 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct806 := r.ContainerType() - if yyct806 == codecSelferValueTypeMap1234 { - yyl806 := r.ReadMapStart() - if yyl806 == 0 { + yyct811 := r.ContainerType() + if yyct811 == codecSelferValueTypeMap1234 { + yyl811 := r.ReadMapStart() + if yyl811 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl806, d) + x.codecDecodeSelfFromMap(yyl811, d) } - } else if yyct806 == codecSelferValueTypeArray1234 { - yyl806 := r.ReadArrayStart() - if yyl806 == 0 { + } else if yyct811 == codecSelferValueTypeArray1234 { + yyl811 := r.ReadArrayStart() + if yyl811 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl806, d) + x.codecDecodeSelfFromArray(yyl811, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11417,12 +11465,12 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys807Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys807Slc - var yyhl807 bool = l >= 0 - for yyj807 := 0; ; yyj807++ { - if yyhl807 { - if yyj807 >= l { + var yys812Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys812Slc + var yyhl812 bool = l >= 0 + for yyj812 := 0; ; yyj812++ { + if yyhl812 { + if yyj812 >= l { break } } else { @@ -11431,20 +11479,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys807Slc = r.DecodeBytes(yys807Slc, true, true) - yys807 := string(yys807Slc) + yys812Slc = r.DecodeBytes(yys812Slc, true, true) + yys812 := string(yys812Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys807 { + switch yys812 { case "targetWWNs": if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv808 := &x.TargetWWNs - yym809 := z.DecBinary() - _ = yym809 + yyv813 := &x.TargetWWNs + yym814 := z.DecBinary() + _ = yym814 if false { } else { - z.F.DecSliceStringX(yyv808, false, d) + z.F.DecSliceStringX(yyv813, false, d) } } case "lun": @@ -11456,8 +11504,8 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym811 := z.DecBinary() - _ = yym811 + yym816 := z.DecBinary() + _ = yym816 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) @@ -11476,9 +11524,9 @@ func (x *FCVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys807) - } // end switch yys807 - } // end for yyj807 + z.DecStructFieldNotFound(-1, yys812) + } // end switch yys812 + } // end for yyj812 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11486,16 +11534,16 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj814 int - var yyb814 bool - var yyhl814 bool = l >= 0 - yyj814++ - if yyhl814 { - yyb814 = yyj814 > l + var yyj819 int + var yyb819 bool + var yyhl819 bool = l >= 0 + yyj819++ + if yyhl819 { + yyb819 = yyj819 > l } else { - yyb814 = r.CheckBreak() + yyb819 = r.CheckBreak() } - if yyb814 { + if yyb819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11503,21 +11551,21 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetWWNs = nil } else { - yyv815 := &x.TargetWWNs - yym816 := z.DecBinary() - _ = yym816 + yyv820 := &x.TargetWWNs + yym821 := z.DecBinary() + _ = yym821 if false { } else { - z.F.DecSliceStringX(yyv815, false, d) + z.F.DecSliceStringX(yyv820, false, d) } } - yyj814++ - if yyhl814 { - yyb814 = yyj814 > l + yyj819++ + if yyhl819 { + yyb819 = yyj819 > l } else { - yyb814 = r.CheckBreak() + yyb819 = r.CheckBreak() } - if yyb814 { + if yyb819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11530,20 +11578,20 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Lun == nil { x.Lun = new(int32) } - yym818 := z.DecBinary() - _ = yym818 + yym823 := z.DecBinary() + _ = yym823 if false { } else { *((*int32)(x.Lun)) = int32(r.DecodeInt(32)) } } - yyj814++ - if yyhl814 { - yyb814 = yyj814 > l + yyj819++ + if yyhl819 { + yyb819 = yyj819 > l } else { - yyb814 = r.CheckBreak() + yyb819 = r.CheckBreak() } - if yyb814 { + if yyb819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11553,13 +11601,13 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FSType = string(r.DecodeString()) } - yyj814++ - if yyhl814 { - yyb814 = yyj814 > l + yyj819++ + if yyhl819 { + yyb819 = yyj819 > l } else { - yyb814 = r.CheckBreak() + yyb819 = r.CheckBreak() } - if yyb814 { + if yyb819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11570,17 +11618,17 @@ func (x *FCVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ReadOnly = bool(r.DecodeBool()) } for { - yyj814++ - if yyhl814 { - yyb814 = yyj814 > l + yyj819++ + if yyhl819 { + yyb819 = yyj819 > l } else { - yyb814 = r.CheckBreak() + yyb819 = r.CheckBreak() } - if yyb814 { + if yyb819 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj814-1, "") + z.DecStructFieldNotFound(yyj819-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11592,38 +11640,38 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym821 := z.EncBinary() - _ = yym821 + yym826 := z.EncBinary() + _ = yym826 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep822 := !z.EncBinary() - yy2arr822 := z.EncBasicHandle().StructToArray - var yyq822 [5]bool - _, _, _ = yysep822, yyq822, yy2arr822 - const yyr822 bool = false - yyq822[0] = x.Name != "" - yyq822[1] = x.HostPort != 0 - yyq822[3] = x.Protocol != "" - yyq822[4] = x.HostIP != "" - var yynn822 int - if yyr822 || yy2arr822 { + yysep827 := !z.EncBinary() + yy2arr827 := z.EncBasicHandle().StructToArray + var yyq827 [5]bool + _, _, _ = yysep827, yyq827, yy2arr827 + const yyr827 bool = false + yyq827[0] = x.Name != "" + yyq827[1] = x.HostPort != 0 + yyq827[3] = x.Protocol != "" + yyq827[4] = x.HostIP != "" + var yynn827 int + if yyr827 || yy2arr827 { r.EncodeArrayStart(5) } else { - yynn822 = 1 - for _, b := range yyq822 { + yynn827 = 1 + for _, b := range yyq827 { if b { - yynn822++ + yynn827++ } } - r.EncodeMapStart(yynn822) - yynn822 = 0 + r.EncodeMapStart(yynn827) + yynn827 = 0 } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq822[0] { - yym824 := z.EncBinary() - _ = yym824 + if yyq827[0] { + yym829 := z.EncBinary() + _ = yym829 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -11632,23 +11680,23 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq822[0] { + if yyq827[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym825 := z.EncBinary() - _ = yym825 + yym830 := z.EncBinary() + _ = yym830 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq822[1] { - yym827 := z.EncBinary() - _ = yym827 + if yyq827[1] { + yym832 := z.EncBinary() + _ = yym832 if false { } else { r.EncodeInt(int64(x.HostPort)) @@ -11657,22 +11705,22 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq822[1] { + if yyq827[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym828 := z.EncBinary() - _ = yym828 + yym833 := z.EncBinary() + _ = yym833 if false { } else { r.EncodeInt(int64(x.HostPort)) } } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym830 := z.EncBinary() - _ = yym830 + yym835 := z.EncBinary() + _ = yym835 if false { } else { r.EncodeInt(int64(x.ContainerPort)) @@ -11681,33 +11729,33 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym831 := z.EncBinary() - _ = yym831 + yym836 := z.EncBinary() + _ = yym836 if false { } else { r.EncodeInt(int64(x.ContainerPort)) } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq822[3] { + if yyq827[3] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq822[3] { + if yyq827[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq822[4] { - yym834 := z.EncBinary() - _ = yym834 + if yyq827[4] { + yym839 := z.EncBinary() + _ = yym839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -11716,19 +11764,19 @@ func (x *ContainerPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq822[4] { + if yyq827[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym835 := z.EncBinary() - _ = yym835 + yym840 := z.EncBinary() + _ = yym840 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr822 || yy2arr822 { + if yyr827 || yy2arr827 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -11741,25 +11789,25 @@ func (x *ContainerPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym836 := z.DecBinary() - _ = yym836 + yym841 := z.DecBinary() + _ = yym841 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct837 := r.ContainerType() - if yyct837 == codecSelferValueTypeMap1234 { - yyl837 := r.ReadMapStart() - if yyl837 == 0 { + yyct842 := r.ContainerType() + if yyct842 == codecSelferValueTypeMap1234 { + yyl842 := r.ReadMapStart() + if yyl842 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl837, d) + x.codecDecodeSelfFromMap(yyl842, d) } - } else if yyct837 == codecSelferValueTypeArray1234 { - yyl837 := r.ReadArrayStart() - if yyl837 == 0 { + } else if yyct842 == codecSelferValueTypeArray1234 { + yyl842 := r.ReadArrayStart() + if yyl842 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl837, d) + x.codecDecodeSelfFromArray(yyl842, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -11771,12 +11819,12 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys838Slc - var yyhl838 bool = l >= 0 - for yyj838 := 0; ; yyj838++ { - if yyhl838 { - if yyj838 >= l { + var yys843Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys843Slc + var yyhl843 bool = l >= 0 + for yyj843 := 0; ; yyj843++ { + if yyhl843 { + if yyj843 >= l { break } } else { @@ -11785,10 +11833,10 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys838Slc = r.DecodeBytes(yys838Slc, true, true) - yys838 := string(yys838Slc) + yys843Slc = r.DecodeBytes(yys843Slc, true, true) + yys843 := string(yys843Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys838 { + switch yys843 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -11820,9 +11868,9 @@ func (x *ContainerPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys838) - } // end switch yys838 - } // end for yyj838 + z.DecStructFieldNotFound(-1, yys843) + } // end switch yys843 + } // end for yyj843 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -11830,16 +11878,16 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj844 int - var yyb844 bool - var yyhl844 bool = l >= 0 - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + var yyj849 int + var yyb849 bool + var yyhl849 bool = l >= 0 + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11849,13 +11897,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11865,13 +11913,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPort = int32(r.DecodeInt(32)) } - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11881,13 +11929,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerPort = int32(r.DecodeInt(32)) } - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11897,13 +11945,13 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -11914,17 +11962,17 @@ func (x *ContainerPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.HostIP = string(r.DecodeString()) } for { - yyj844++ - if yyhl844 { - yyb844 = yyj844 > l + yyj849++ + if yyhl849 { + yyb849 = yyj849 > l } else { - yyb844 = r.CheckBreak() + yyb849 = r.CheckBreak() } - if yyb844 { + if yyb849 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj844-1, "") + z.DecStructFieldNotFound(yyj849-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -11936,34 +11984,34 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym850 := z.EncBinary() - _ = yym850 + yym855 := z.EncBinary() + _ = yym855 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep851 := !z.EncBinary() - yy2arr851 := z.EncBasicHandle().StructToArray - var yyq851 [3]bool - _, _, _ = yysep851, yyq851, yy2arr851 - const yyr851 bool = false - yyq851[1] = x.ReadOnly != false - var yynn851 int - if yyr851 || yy2arr851 { + yysep856 := !z.EncBinary() + yy2arr856 := z.EncBasicHandle().StructToArray + var yyq856 [3]bool + _, _, _ = yysep856, yyq856, yy2arr856 + const yyr856 bool = false + yyq856[1] = x.ReadOnly != false + var yynn856 int + if yyr856 || yy2arr856 { r.EncodeArrayStart(3) } else { - yynn851 = 2 - for _, b := range yyq851 { + yynn856 = 2 + for _, b := range yyq856 { if b { - yynn851++ + yynn856++ } } - r.EncodeMapStart(yynn851) - yynn851 = 0 + r.EncodeMapStart(yynn856) + yynn856 = 0 } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym853 := z.EncBinary() - _ = yym853 + yym858 := z.EncBinary() + _ = yym858 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -11972,18 +12020,18 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym854 := z.EncBinary() - _ = yym854 + yym859 := z.EncBinary() + _ = yym859 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq851[1] { - yym856 := z.EncBinary() - _ = yym856 + if yyq856[1] { + yym861 := z.EncBinary() + _ = yym861 if false { } else { r.EncodeBool(bool(x.ReadOnly)) @@ -11992,22 +12040,22 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq851[1] { + if yyq856[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnly")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym857 := z.EncBinary() - _ = yym857 + yym862 := z.EncBinary() + _ = yym862 if false { } else { r.EncodeBool(bool(x.ReadOnly)) } } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym859 := z.EncBinary() - _ = yym859 + yym864 := z.EncBinary() + _ = yym864 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) @@ -12016,14 +12064,14 @@ func (x *VolumeMount) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mountPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym860 := z.EncBinary() - _ = yym860 + yym865 := z.EncBinary() + _ = yym865 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MountPath)) } } - if yyr851 || yy2arr851 { + if yyr856 || yy2arr856 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12036,25 +12084,25 @@ func (x *VolumeMount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym861 := z.DecBinary() - _ = yym861 + yym866 := z.DecBinary() + _ = yym866 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct862 := r.ContainerType() - if yyct862 == codecSelferValueTypeMap1234 { - yyl862 := r.ReadMapStart() - if yyl862 == 0 { + yyct867 := r.ContainerType() + if yyct867 == codecSelferValueTypeMap1234 { + yyl867 := r.ReadMapStart() + if yyl867 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl862, d) + x.codecDecodeSelfFromMap(yyl867, d) } - } else if yyct862 == codecSelferValueTypeArray1234 { - yyl862 := r.ReadArrayStart() - if yyl862 == 0 { + } else if yyct867 == codecSelferValueTypeArray1234 { + yyl867 := r.ReadArrayStart() + if yyl867 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl862, d) + x.codecDecodeSelfFromArray(yyl867, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12066,12 +12114,12 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys863Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys863Slc - var yyhl863 bool = l >= 0 - for yyj863 := 0; ; yyj863++ { - if yyhl863 { - if yyj863 >= l { + var yys868Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys868Slc + var yyhl868 bool = l >= 0 + for yyj868 := 0; ; yyj868++ { + if yyhl868 { + if yyj868 >= l { break } } else { @@ -12080,10 +12128,10 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys863Slc = r.DecodeBytes(yys863Slc, true, true) - yys863 := string(yys863Slc) + yys868Slc = r.DecodeBytes(yys868Slc, true, true) + yys868 := string(yys868Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys863 { + switch yys868 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -12103,9 +12151,9 @@ func (x *VolumeMount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.MountPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys863) - } // end switch yys863 - } // end for yyj863 + z.DecStructFieldNotFound(-1, yys868) + } // end switch yys868 + } // end for yyj868 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12113,16 +12161,16 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj867 int - var yyb867 bool - var yyhl867 bool = l >= 0 - yyj867++ - if yyhl867 { - yyb867 = yyj867 > l + var yyj872 int + var yyb872 bool + var yyhl872 bool = l >= 0 + yyj872++ + if yyhl872 { + yyb872 = yyj872 > l } else { - yyb867 = r.CheckBreak() + yyb872 = r.CheckBreak() } - if yyb867 { + if yyb872 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12132,13 +12180,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj867++ - if yyhl867 { - yyb867 = yyj867 > l + yyj872++ + if yyhl872 { + yyb872 = yyj872 > l } else { - yyb867 = r.CheckBreak() + yyb872 = r.CheckBreak() } - if yyb867 { + if yyb872 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12148,13 +12196,13 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ReadOnly = bool(r.DecodeBool()) } - yyj867++ - if yyhl867 { - yyb867 = yyj867 > l + yyj872++ + if yyhl872 { + yyb872 = yyj872 > l } else { - yyb867 = r.CheckBreak() + yyb872 = r.CheckBreak() } - if yyb867 { + if yyb872 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12165,17 +12213,17 @@ func (x *VolumeMount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.MountPath = string(r.DecodeString()) } for { - yyj867++ - if yyhl867 { - yyb867 = yyj867 > l + yyj872++ + if yyhl872 { + yyb872 = yyj872 > l } else { - yyb867 = r.CheckBreak() + yyb872 = r.CheckBreak() } - if yyb867 { + if yyb872 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj867-1, "") + z.DecStructFieldNotFound(yyj872-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12187,35 +12235,35 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym871 := z.EncBinary() - _ = yym871 + yym876 := z.EncBinary() + _ = yym876 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep872 := !z.EncBinary() - yy2arr872 := z.EncBasicHandle().StructToArray - var yyq872 [3]bool - _, _, _ = yysep872, yyq872, yy2arr872 - const yyr872 bool = false - yyq872[1] = x.Value != "" - yyq872[2] = x.ValueFrom != nil - var yynn872 int - if yyr872 || yy2arr872 { + yysep877 := !z.EncBinary() + yy2arr877 := z.EncBasicHandle().StructToArray + var yyq877 [3]bool + _, _, _ = yysep877, yyq877, yy2arr877 + const yyr877 bool = false + yyq877[1] = x.Value != "" + yyq877[2] = x.ValueFrom != nil + var yynn877 int + if yyr877 || yy2arr877 { r.EncodeArrayStart(3) } else { - yynn872 = 1 - for _, b := range yyq872 { + yynn877 = 1 + for _, b := range yyq877 { if b { - yynn872++ + yynn877++ } } - r.EncodeMapStart(yynn872) - yynn872 = 0 + r.EncodeMapStart(yynn877) + yynn877 = 0 } - if yyr872 || yy2arr872 { + if yyr877 || yy2arr877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym874 := z.EncBinary() - _ = yym874 + yym879 := z.EncBinary() + _ = yym879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -12224,18 +12272,18 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym875 := z.EncBinary() - _ = yym875 + yym880 := z.EncBinary() + _ = yym880 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr872 || yy2arr872 { + if yyr877 || yy2arr877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq872[1] { - yym877 := z.EncBinary() - _ = yym877 + if yyq877[1] { + yym882 := z.EncBinary() + _ = yym882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) @@ -12244,21 +12292,21 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq872[1] { + if yyq877[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("value")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym878 := z.EncBinary() - _ = yym878 + yym883 := z.EncBinary() + _ = yym883 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Value)) } } } - if yyr872 || yy2arr872 { + if yyr877 || yy2arr877 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq872[2] { + if yyq877[2] { if x.ValueFrom == nil { r.EncodeNil() } else { @@ -12268,7 +12316,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq872[2] { + if yyq877[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("valueFrom")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -12279,7 +12327,7 @@ func (x *EnvVar) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr872 || yy2arr872 { + if yyr877 || yy2arr877 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12292,25 +12340,25 @@ func (x *EnvVar) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym880 := z.DecBinary() - _ = yym880 + yym885 := z.DecBinary() + _ = yym885 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct881 := r.ContainerType() - if yyct881 == codecSelferValueTypeMap1234 { - yyl881 := r.ReadMapStart() - if yyl881 == 0 { + yyct886 := r.ContainerType() + if yyct886 == codecSelferValueTypeMap1234 { + yyl886 := r.ReadMapStart() + if yyl886 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl881, d) + x.codecDecodeSelfFromMap(yyl886, d) } - } else if yyct881 == codecSelferValueTypeArray1234 { - yyl881 := r.ReadArrayStart() - if yyl881 == 0 { + } else if yyct886 == codecSelferValueTypeArray1234 { + yyl886 := r.ReadArrayStart() + if yyl886 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl881, d) + x.codecDecodeSelfFromArray(yyl886, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12322,12 +12370,12 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys882Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys882Slc - var yyhl882 bool = l >= 0 - for yyj882 := 0; ; yyj882++ { - if yyhl882 { - if yyj882 >= l { + var yys887Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys887Slc + var yyhl887 bool = l >= 0 + for yyj887 := 0; ; yyj887++ { + if yyhl887 { + if yyj887 >= l { break } } else { @@ -12336,10 +12384,10 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys882Slc = r.DecodeBytes(yys882Slc, true, true) - yys882 := string(yys882Slc) + yys887Slc = r.DecodeBytes(yys887Slc, true, true) + yys887 := string(yys887Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys882 { + switch yys887 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -12364,9 +12412,9 @@ func (x *EnvVar) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys882) - } // end switch yys882 - } // end for yyj882 + z.DecStructFieldNotFound(-1, yys887) + } // end switch yys887 + } // end for yyj887 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12374,16 +12422,16 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj886 int - var yyb886 bool - var yyhl886 bool = l >= 0 - yyj886++ - if yyhl886 { - yyb886 = yyj886 > l + var yyj891 int + var yyb891 bool + var yyhl891 bool = l >= 0 + yyj891++ + if yyhl891 { + yyb891 = yyj891 > l } else { - yyb886 = r.CheckBreak() + yyb891 = r.CheckBreak() } - if yyb886 { + if yyb891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12393,13 +12441,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj886++ - if yyhl886 { - yyb886 = yyj886 > l + yyj891++ + if yyhl891 { + yyb891 = yyj891 > l } else { - yyb886 = r.CheckBreak() + yyb891 = r.CheckBreak() } - if yyb886 { + if yyb891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12409,13 +12457,13 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Value = string(r.DecodeString()) } - yyj886++ - if yyhl886 { - yyb886 = yyj886 > l + yyj891++ + if yyhl891 { + yyb891 = yyj891 > l } else { - yyb886 = r.CheckBreak() + yyb891 = r.CheckBreak() } - if yyb886 { + if yyb891 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12431,17 +12479,17 @@ func (x *EnvVar) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ValueFrom.CodecDecodeSelf(d) } for { - yyj886++ - if yyhl886 { - yyb886 = yyj886 > l + yyj891++ + if yyhl891 { + yyb891 = yyj891 > l } else { - yyb886 = r.CheckBreak() + yyb891 = r.CheckBreak() } - if yyb886 { + if yyb891 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj886-1, "") + z.DecStructFieldNotFound(yyj891-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12453,30 +12501,30 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym890 := z.EncBinary() - _ = yym890 + yym895 := z.EncBinary() + _ = yym895 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep891 := !z.EncBinary() - yy2arr891 := z.EncBasicHandle().StructToArray - var yyq891 [1]bool - _, _, _ = yysep891, yyq891, yy2arr891 - const yyr891 bool = false - var yynn891 int - if yyr891 || yy2arr891 { + yysep896 := !z.EncBinary() + yy2arr896 := z.EncBasicHandle().StructToArray + var yyq896 [1]bool + _, _, _ = yysep896, yyq896, yy2arr896 + const yyr896 bool = false + var yynn896 int + if yyr896 || yy2arr896 { r.EncodeArrayStart(1) } else { - yynn891 = 1 - for _, b := range yyq891 { + yynn896 = 1 + for _, b := range yyq896 { if b { - yynn891++ + yynn896++ } } - r.EncodeMapStart(yynn891) - yynn891 = 0 + r.EncodeMapStart(yynn896) + yynn896 = 0 } - if yyr891 || yy2arr891 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.FieldRef == nil { r.EncodeNil() @@ -12493,7 +12541,7 @@ func (x *EnvVarSource) CodecEncodeSelf(e *codec1978.Encoder) { x.FieldRef.CodecEncodeSelf(e) } } - if yyr891 || yy2arr891 { + if yyr896 || yy2arr896 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12506,25 +12554,25 @@ func (x *EnvVarSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym893 := z.DecBinary() - _ = yym893 + yym898 := z.DecBinary() + _ = yym898 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct894 := r.ContainerType() - if yyct894 == codecSelferValueTypeMap1234 { - yyl894 := r.ReadMapStart() - if yyl894 == 0 { + yyct899 := r.ContainerType() + if yyct899 == codecSelferValueTypeMap1234 { + yyl899 := r.ReadMapStart() + if yyl899 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl894, d) + x.codecDecodeSelfFromMap(yyl899, d) } - } else if yyct894 == codecSelferValueTypeArray1234 { - yyl894 := r.ReadArrayStart() - if yyl894 == 0 { + } else if yyct899 == codecSelferValueTypeArray1234 { + yyl899 := r.ReadArrayStart() + if yyl899 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl894, d) + x.codecDecodeSelfFromArray(yyl899, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12536,12 +12584,12 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys895Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys895Slc - var yyhl895 bool = l >= 0 - for yyj895 := 0; ; yyj895++ { - if yyhl895 { - if yyj895 >= l { + var yys900Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys900Slc + var yyhl900 bool = l >= 0 + for yyj900 := 0; ; yyj900++ { + if yyhl900 { + if yyj900 >= l { break } } else { @@ -12550,10 +12598,10 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys895Slc = r.DecodeBytes(yys895Slc, true, true) - yys895 := string(yys895Slc) + yys900Slc = r.DecodeBytes(yys900Slc, true, true) + yys900 := string(yys900Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys895 { + switch yys900 { case "fieldRef": if r.TryDecodeAsNil() { if x.FieldRef != nil { @@ -12566,9 +12614,9 @@ func (x *EnvVarSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys895) - } // end switch yys895 - } // end for yyj895 + z.DecStructFieldNotFound(-1, yys900) + } // end switch yys900 + } // end for yyj900 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12576,16 +12624,16 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj897 int - var yyb897 bool - var yyhl897 bool = l >= 0 - yyj897++ - if yyhl897 { - yyb897 = yyj897 > l + var yyj902 int + var yyb902 bool + var yyhl902 bool = l >= 0 + yyj902++ + if yyhl902 { + yyb902 = yyj902 > l } else { - yyb897 = r.CheckBreak() + yyb902 = r.CheckBreak() } - if yyb897 { + if yyb902 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12601,17 +12649,17 @@ func (x *EnvVarSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FieldRef.CodecDecodeSelf(d) } for { - yyj897++ - if yyhl897 { - yyb897 = yyj897 > l + yyj902++ + if yyhl902 { + yyb902 = yyj902 > l } else { - yyb897 = r.CheckBreak() + yyb902 = r.CheckBreak() } - if yyb897 { + if yyb902 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj897-1, "") + z.DecStructFieldNotFound(yyj902-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12623,35 +12671,35 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym899 := z.EncBinary() - _ = yym899 + yym904 := z.EncBinary() + _ = yym904 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep900 := !z.EncBinary() - yy2arr900 := z.EncBasicHandle().StructToArray - var yyq900 [2]bool - _, _, _ = yysep900, yyq900, yy2arr900 - const yyr900 bool = false - yyq900[0] = x.APIVersion != "" - var yynn900 int - if yyr900 || yy2arr900 { + yysep905 := !z.EncBinary() + yy2arr905 := z.EncBasicHandle().StructToArray + var yyq905 [2]bool + _, _, _ = yysep905, yyq905, yy2arr905 + const yyr905 bool = false + yyq905[0] = x.APIVersion != "" + var yynn905 int + if yyr905 || yy2arr905 { r.EncodeArrayStart(2) } else { - yynn900 = 1 - for _, b := range yyq900 { + yynn905 = 1 + for _, b := range yyq905 { if b { - yynn900++ + yynn905++ } } - r.EncodeMapStart(yynn900) - yynn900 = 0 + r.EncodeMapStart(yynn905) + yynn905 = 0 } - if yyr900 || yy2arr900 { + if yyr905 || yy2arr905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq900[0] { - yym902 := z.EncBinary() - _ = yym902 + if yyq905[0] { + yym907 := z.EncBinary() + _ = yym907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -12660,22 +12708,22 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq900[0] { + if yyq905[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym903 := z.EncBinary() - _ = yym903 + yym908 := z.EncBinary() + _ = yym908 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr900 || yy2arr900 { + if yyr905 || yy2arr905 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym905 := z.EncBinary() - _ = yym905 + yym910 := z.EncBinary() + _ = yym910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -12684,14 +12732,14 @@ func (x *ObjectFieldSelector) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym906 := z.EncBinary() - _ = yym906 + yym911 := z.EncBinary() + _ = yym911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } - if yyr900 || yy2arr900 { + if yyr905 || yy2arr905 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12704,25 +12752,25 @@ func (x *ObjectFieldSelector) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym907 := z.DecBinary() - _ = yym907 + yym912 := z.DecBinary() + _ = yym912 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct908 := r.ContainerType() - if yyct908 == codecSelferValueTypeMap1234 { - yyl908 := r.ReadMapStart() - if yyl908 == 0 { + yyct913 := r.ContainerType() + if yyct913 == codecSelferValueTypeMap1234 { + yyl913 := r.ReadMapStart() + if yyl913 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl908, d) + x.codecDecodeSelfFromMap(yyl913, d) } - } else if yyct908 == codecSelferValueTypeArray1234 { - yyl908 := r.ReadArrayStart() - if yyl908 == 0 { + } else if yyct913 == codecSelferValueTypeArray1234 { + yyl913 := r.ReadArrayStart() + if yyl913 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl908, d) + x.codecDecodeSelfFromArray(yyl913, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12734,12 +12782,12 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys909Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys909Slc - var yyhl909 bool = l >= 0 - for yyj909 := 0; ; yyj909++ { - if yyhl909 { - if yyj909 >= l { + var yys914Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys914Slc + var yyhl914 bool = l >= 0 + for yyj914 := 0; ; yyj914++ { + if yyhl914 { + if yyj914 >= l { break } } else { @@ -12748,10 +12796,10 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys909Slc = r.DecodeBytes(yys909Slc, true, true) - yys909 := string(yys909Slc) + yys914Slc = r.DecodeBytes(yys914Slc, true, true) + yys914 := string(yys914Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys909 { + switch yys914 { case "apiVersion": if r.TryDecodeAsNil() { x.APIVersion = "" @@ -12765,9 +12813,9 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys909) - } // end switch yys909 - } // end for yyj909 + z.DecStructFieldNotFound(-1, yys914) + } // end switch yys914 + } // end for yyj914 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -12775,16 +12823,16 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj912 int - var yyb912 bool - var yyhl912 bool = l >= 0 - yyj912++ - if yyhl912 { - yyb912 = yyj912 > l + var yyj917 int + var yyb917 bool + var yyhl917 bool = l >= 0 + yyj917++ + if yyhl917 { + yyb917 = yyj917 > l } else { - yyb912 = r.CheckBreak() + yyb917 = r.CheckBreak() } - if yyb912 { + if yyb917 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12794,13 +12842,13 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj912++ - if yyhl912 { - yyb912 = yyj912 > l + yyj917++ + if yyhl917 { + yyb917 = yyj917 > l } else { - yyb912 = r.CheckBreak() + yyb917 = r.CheckBreak() } - if yyb912 { + if yyb917 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -12811,17 +12859,17 @@ func (x *ObjectFieldSelector) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.FieldPath = string(r.DecodeString()) } for { - yyj912++ - if yyhl912 { - yyb912 = yyj912 > l + yyj917++ + if yyhl917 { + yyb917 = yyj917 > l } else { - yyb912 = r.CheckBreak() + yyb917 = r.CheckBreak() } - if yyb912 { + if yyb917 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj912-1, "") + z.DecStructFieldNotFound(yyj917-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -12833,37 +12881,37 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym915 := z.EncBinary() - _ = yym915 + yym920 := z.EncBinary() + _ = yym920 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep916 := !z.EncBinary() - yy2arr916 := z.EncBasicHandle().StructToArray - var yyq916 [4]bool - _, _, _ = yysep916, yyq916, yy2arr916 - const yyr916 bool = false - yyq916[0] = x.Path != "" - yyq916[2] = x.Host != "" - yyq916[3] = x.Scheme != "" - var yynn916 int - if yyr916 || yy2arr916 { + yysep921 := !z.EncBinary() + yy2arr921 := z.EncBasicHandle().StructToArray + var yyq921 [4]bool + _, _, _ = yysep921, yyq921, yy2arr921 + const yyr921 bool = false + yyq921[0] = x.Path != "" + yyq921[2] = x.Host != "" + yyq921[3] = x.Scheme != "" + var yynn921 int + if yyr921 || yy2arr921 { r.EncodeArrayStart(4) } else { - yynn916 = 1 - for _, b := range yyq916 { + yynn921 = 1 + for _, b := range yyq921 { if b { - yynn916++ + yynn921++ } } - r.EncodeMapStart(yynn916) - yynn916 = 0 + r.EncodeMapStart(yynn921) + yynn921 = 0 } - if yyr916 || yy2arr916 { + if yyr921 || yy2arr921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq916[0] { - yym918 := z.EncBinary() - _ = yym918 + if yyq921[0] { + yym923 := z.EncBinary() + _ = yym923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -12872,50 +12920,50 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq916[0] { + if yyq921[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym919 := z.EncBinary() - _ = yym919 + yym924 := z.EncBinary() + _ = yym924 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr916 || yy2arr916 { + if yyr921 || yy2arr921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy921 := &x.Port - yym922 := z.EncBinary() - _ = yym922 + yy926 := &x.Port + yym927 := z.EncBinary() + _ = yym927 if false { - } else if z.HasExtensions() && z.EncExt(yy921) { - } else if !yym922 && z.IsJSONHandle() { - z.EncJSONMarshal(yy921) + } else if z.HasExtensions() && z.EncExt(yy926) { + } else if !yym927 && z.IsJSONHandle() { + z.EncJSONMarshal(yy926) } else { - z.EncFallback(yy921) + z.EncFallback(yy926) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy923 := &x.Port - yym924 := z.EncBinary() - _ = yym924 + yy928 := &x.Port + yym929 := z.EncBinary() + _ = yym929 if false { - } else if z.HasExtensions() && z.EncExt(yy923) { - } else if !yym924 && z.IsJSONHandle() { - z.EncJSONMarshal(yy923) + } else if z.HasExtensions() && z.EncExt(yy928) { + } else if !yym929 && z.IsJSONHandle() { + z.EncJSONMarshal(yy928) } else { - z.EncFallback(yy923) + z.EncFallback(yy928) } } - if yyr916 || yy2arr916 { + if yyr921 || yy2arr921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq916[2] { - yym926 := z.EncBinary() - _ = yym926 + if yyq921[2] { + yym931 := z.EncBinary() + _ = yym931 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -12924,34 +12972,34 @@ func (x *HTTPGetAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq916[2] { + if yyq921[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym927 := z.EncBinary() - _ = yym927 + yym932 := z.EncBinary() + _ = yym932 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr916 || yy2arr916 { + if yyr921 || yy2arr921 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq916[3] { + if yyq921[3] { x.Scheme.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq916[3] { + if yyq921[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scheme")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Scheme.CodecEncodeSelf(e) } } - if yyr916 || yy2arr916 { + if yyr921 || yy2arr921 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -12964,25 +13012,25 @@ func (x *HTTPGetAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym929 := z.DecBinary() - _ = yym929 + yym934 := z.DecBinary() + _ = yym934 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct930 := r.ContainerType() - if yyct930 == codecSelferValueTypeMap1234 { - yyl930 := r.ReadMapStart() - if yyl930 == 0 { + yyct935 := r.ContainerType() + if yyct935 == codecSelferValueTypeMap1234 { + yyl935 := r.ReadMapStart() + if yyl935 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl930, d) + x.codecDecodeSelfFromMap(yyl935, d) } - } else if yyct930 == codecSelferValueTypeArray1234 { - yyl930 := r.ReadArrayStart() - if yyl930 == 0 { + } else if yyct935 == codecSelferValueTypeArray1234 { + yyl935 := r.ReadArrayStart() + if yyl935 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl930, d) + x.codecDecodeSelfFromArray(yyl935, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -12994,12 +13042,12 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys931Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys931Slc - var yyhl931 bool = l >= 0 - for yyj931 := 0; ; yyj931++ { - if yyhl931 { - if yyj931 >= l { + var yys936Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys936Slc + var yyhl936 bool = l >= 0 + for yyj936 := 0; ; yyj936++ { + if yyhl936 { + if yyj936 >= l { break } } else { @@ -13008,10 +13056,10 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys931Slc = r.DecodeBytes(yys931Slc, true, true) - yys931 := string(yys931Slc) + yys936Slc = r.DecodeBytes(yys936Slc, true, true) + yys936 := string(yys936Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys931 { + switch yys936 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -13022,15 +13070,15 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv933 := &x.Port - yym934 := z.DecBinary() - _ = yym934 + yyv938 := &x.Port + yym939 := z.DecBinary() + _ = yym939 if false { - } else if z.HasExtensions() && z.DecExt(yyv933) { - } else if !yym934 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv933) + } else if z.HasExtensions() && z.DecExt(yyv938) { + } else if !yym939 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv938) } else { - z.DecFallback(yyv933, false) + z.DecFallback(yyv938, false) } } case "host": @@ -13046,9 +13094,9 @@ func (x *HTTPGetAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys931) - } // end switch yys931 - } // end for yyj931 + z.DecStructFieldNotFound(-1, yys936) + } // end switch yys936 + } // end for yyj936 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13056,16 +13104,16 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj937 int - var yyb937 bool - var yyhl937 bool = l >= 0 - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + var yyj942 int + var yyb942 bool + var yyhl942 bool = l >= 0 + yyj942++ + if yyhl942 { + yyb942 = yyj942 > l } else { - yyb937 = r.CheckBreak() + yyb942 = r.CheckBreak() } - if yyb937 { + if yyb942 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13075,13 +13123,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Path = string(r.DecodeString()) } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj942++ + if yyhl942 { + yyb942 = yyj942 > l } else { - yyb937 = r.CheckBreak() + yyb942 = r.CheckBreak() } - if yyb937 { + if yyb942 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13089,24 +13137,24 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv939 := &x.Port - yym940 := z.DecBinary() - _ = yym940 + yyv944 := &x.Port + yym945 := z.DecBinary() + _ = yym945 if false { - } else if z.HasExtensions() && z.DecExt(yyv939) { - } else if !yym940 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv939) + } else if z.HasExtensions() && z.DecExt(yyv944) { + } else if !yym945 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv944) } else { - z.DecFallback(yyv939, false) + z.DecFallback(yyv944, false) } } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj942++ + if yyhl942 { + yyb942 = yyj942 > l } else { - yyb937 = r.CheckBreak() + yyb942 = r.CheckBreak() } - if yyb937 { + if yyb942 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13116,13 +13164,13 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Host = string(r.DecodeString()) } - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj942++ + if yyhl942 { + yyb942 = yyj942 > l } else { - yyb937 = r.CheckBreak() + yyb942 = r.CheckBreak() } - if yyb937 { + if yyb942 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13133,17 +13181,17 @@ func (x *HTTPGetAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Scheme = URIScheme(r.DecodeString()) } for { - yyj937++ - if yyhl937 { - yyb937 = yyj937 > l + yyj942++ + if yyhl942 { + yyb942 = yyj942 > l } else { - yyb937 = r.CheckBreak() + yyb942 = r.CheckBreak() } - if yyb937 { + if yyb942 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj937-1, "") + z.DecStructFieldNotFound(yyj942-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13152,8 +13200,8 @@ func (x URIScheme) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym943 := z.EncBinary() - _ = yym943 + yym948 := z.EncBinary() + _ = yym948 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -13165,8 +13213,8 @@ func (x *URIScheme) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym944 := z.DecBinary() - _ = yym944 + yym949 := z.DecBinary() + _ = yym949 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -13181,57 +13229,57 @@ func (x *TCPSocketAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym945 := z.EncBinary() - _ = yym945 + yym950 := z.EncBinary() + _ = yym950 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep946 := !z.EncBinary() - yy2arr946 := z.EncBasicHandle().StructToArray - var yyq946 [1]bool - _, _, _ = yysep946, yyq946, yy2arr946 - const yyr946 bool = false - var yynn946 int - if yyr946 || yy2arr946 { + yysep951 := !z.EncBinary() + yy2arr951 := z.EncBasicHandle().StructToArray + var yyq951 [1]bool + _, _, _ = yysep951, yyq951, yy2arr951 + const yyr951 bool = false + var yynn951 int + if yyr951 || yy2arr951 { r.EncodeArrayStart(1) } else { - yynn946 = 1 - for _, b := range yyq946 { + yynn951 = 1 + for _, b := range yyq951 { if b { - yynn946++ + yynn951++ } } - r.EncodeMapStart(yynn946) - yynn946 = 0 + r.EncodeMapStart(yynn951) + yynn951 = 0 } - if yyr946 || yy2arr946 { + if yyr951 || yy2arr951 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy948 := &x.Port - yym949 := z.EncBinary() - _ = yym949 + yy953 := &x.Port + yym954 := z.EncBinary() + _ = yym954 if false { - } else if z.HasExtensions() && z.EncExt(yy948) { - } else if !yym949 && z.IsJSONHandle() { - z.EncJSONMarshal(yy948) + } else if z.HasExtensions() && z.EncExt(yy953) { + } else if !yym954 && z.IsJSONHandle() { + z.EncJSONMarshal(yy953) } else { - z.EncFallback(yy948) + z.EncFallback(yy953) } } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy950 := &x.Port - yym951 := z.EncBinary() - _ = yym951 + yy955 := &x.Port + yym956 := z.EncBinary() + _ = yym956 if false { - } else if z.HasExtensions() && z.EncExt(yy950) { - } else if !yym951 && z.IsJSONHandle() { - z.EncJSONMarshal(yy950) + } else if z.HasExtensions() && z.EncExt(yy955) { + } else if !yym956 && z.IsJSONHandle() { + z.EncJSONMarshal(yy955) } else { - z.EncFallback(yy950) + z.EncFallback(yy955) } } - if yyr946 || yy2arr946 { + if yyr951 || yy2arr951 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13244,25 +13292,25 @@ func (x *TCPSocketAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym952 := z.DecBinary() - _ = yym952 + yym957 := z.DecBinary() + _ = yym957 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct953 := r.ContainerType() - if yyct953 == codecSelferValueTypeMap1234 { - yyl953 := r.ReadMapStart() - if yyl953 == 0 { + yyct958 := r.ContainerType() + if yyct958 == codecSelferValueTypeMap1234 { + yyl958 := r.ReadMapStart() + if yyl958 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl953, d) + x.codecDecodeSelfFromMap(yyl958, d) } - } else if yyct953 == codecSelferValueTypeArray1234 { - yyl953 := r.ReadArrayStart() - if yyl953 == 0 { + } else if yyct958 == codecSelferValueTypeArray1234 { + yyl958 := r.ReadArrayStart() + if yyl958 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl953, d) + x.codecDecodeSelfFromArray(yyl958, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13274,12 +13322,12 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys954Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys954Slc - var yyhl954 bool = l >= 0 - for yyj954 := 0; ; yyj954++ { - if yyhl954 { - if yyj954 >= l { + var yys959Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys959Slc + var yyhl959 bool = l >= 0 + for yyj959 := 0; ; yyj959++ { + if yyhl959 { + if yyj959 >= l { break } } else { @@ -13288,29 +13336,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys954Slc = r.DecodeBytes(yys954Slc, true, true) - yys954 := string(yys954Slc) + yys959Slc = r.DecodeBytes(yys959Slc, true, true) + yys959 := string(yys959Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys954 { + switch yys959 { case "port": if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv955 := &x.Port - yym956 := z.DecBinary() - _ = yym956 + yyv960 := &x.Port + yym961 := z.DecBinary() + _ = yym961 if false { - } else if z.HasExtensions() && z.DecExt(yyv955) { - } else if !yym956 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv955) + } else if z.HasExtensions() && z.DecExt(yyv960) { + } else if !yym961 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv960) } else { - z.DecFallback(yyv955, false) + z.DecFallback(yyv960, false) } } default: - z.DecStructFieldNotFound(-1, yys954) - } // end switch yys954 - } // end for yyj954 + z.DecStructFieldNotFound(-1, yys959) + } // end switch yys959 + } // end for yyj959 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13318,16 +13366,16 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj957 int - var yyb957 bool - var yyhl957 bool = l >= 0 - yyj957++ - if yyhl957 { - yyb957 = yyj957 > l + var yyj962 int + var yyb962 bool + var yyhl962 bool = l >= 0 + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb957 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb957 { + if yyb962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13335,29 +13383,29 @@ func (x *TCPSocketAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Port = pkg5_intstr.IntOrString{} } else { - yyv958 := &x.Port - yym959 := z.DecBinary() - _ = yym959 + yyv963 := &x.Port + yym964 := z.DecBinary() + _ = yym964 if false { - } else if z.HasExtensions() && z.DecExt(yyv958) { - } else if !yym959 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv958) + } else if z.HasExtensions() && z.DecExt(yyv963) { + } else if !yym964 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv963) } else { - z.DecFallback(yyv958, false) + z.DecFallback(yyv963, false) } } for { - yyj957++ - if yyhl957 { - yyb957 = yyj957 > l + yyj962++ + if yyhl962 { + yyb962 = yyj962 > l } else { - yyb957 = r.CheckBreak() + yyb962 = r.CheckBreak() } - if yyb957 { + if yyb962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj957-1, "") + z.DecStructFieldNotFound(yyj962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13369,38 +13417,38 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym960 := z.EncBinary() - _ = yym960 + yym965 := z.EncBinary() + _ = yym965 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep961 := !z.EncBinary() - yy2arr961 := z.EncBasicHandle().StructToArray - var yyq961 [1]bool - _, _, _ = yysep961, yyq961, yy2arr961 - const yyr961 bool = false - yyq961[0] = len(x.Command) != 0 - var yynn961 int - if yyr961 || yy2arr961 { + yysep966 := !z.EncBinary() + yy2arr966 := z.EncBasicHandle().StructToArray + var yyq966 [1]bool + _, _, _ = yysep966, yyq966, yy2arr966 + const yyr966 bool = false + yyq966[0] = len(x.Command) != 0 + var yynn966 int + if yyr966 || yy2arr966 { r.EncodeArrayStart(1) } else { - yynn961 = 0 - for _, b := range yyq961 { + yynn966 = 0 + for _, b := range yyq966 { if b { - yynn961++ + yynn966++ } } - r.EncodeMapStart(yynn961) - yynn961 = 0 + r.EncodeMapStart(yynn966) + yynn966 = 0 } - if yyr961 || yy2arr961 { + if yyr966 || yy2arr966 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq961[0] { + if yyq966[0] { if x.Command == nil { r.EncodeNil() } else { - yym963 := z.EncBinary() - _ = yym963 + yym968 := z.EncBinary() + _ = yym968 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -13410,15 +13458,15 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq961[0] { + if yyq966[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym964 := z.EncBinary() - _ = yym964 + yym969 := z.EncBinary() + _ = yym969 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -13426,7 +13474,7 @@ func (x *ExecAction) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr961 || yy2arr961 { + if yyr966 || yy2arr966 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13439,25 +13487,25 @@ func (x *ExecAction) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym965 := z.DecBinary() - _ = yym965 + yym970 := z.DecBinary() + _ = yym970 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct966 := r.ContainerType() - if yyct966 == codecSelferValueTypeMap1234 { - yyl966 := r.ReadMapStart() - if yyl966 == 0 { + yyct971 := r.ContainerType() + if yyct971 == codecSelferValueTypeMap1234 { + yyl971 := r.ReadMapStart() + if yyl971 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl966, d) + x.codecDecodeSelfFromMap(yyl971, d) } - } else if yyct966 == codecSelferValueTypeArray1234 { - yyl966 := r.ReadArrayStart() - if yyl966 == 0 { + } else if yyct971 == codecSelferValueTypeArray1234 { + yyl971 := r.ReadArrayStart() + if yyl971 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl966, d) + x.codecDecodeSelfFromArray(yyl971, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13469,12 +13517,12 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys967Slc - var yyhl967 bool = l >= 0 - for yyj967 := 0; ; yyj967++ { - if yyhl967 { - if yyj967 >= l { + var yys972Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys972Slc + var yyhl972 bool = l >= 0 + for yyj972 := 0; ; yyj972++ { + if yyhl972 { + if yyj972 >= l { break } } else { @@ -13483,26 +13531,26 @@ func (x *ExecAction) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys967Slc = r.DecodeBytes(yys967Slc, true, true) - yys967 := string(yys967Slc) + yys972Slc = r.DecodeBytes(yys972Slc, true, true) + yys972 := string(yys972Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys967 { + switch yys972 { case "command": if r.TryDecodeAsNil() { x.Command = nil } else { - yyv968 := &x.Command - yym969 := z.DecBinary() - _ = yym969 + yyv973 := &x.Command + yym974 := z.DecBinary() + _ = yym974 if false { } else { - z.F.DecSliceStringX(yyv968, false, d) + z.F.DecSliceStringX(yyv973, false, d) } } default: - z.DecStructFieldNotFound(-1, yys967) - } // end switch yys967 - } // end for yyj967 + z.DecStructFieldNotFound(-1, yys972) + } // end switch yys972 + } // end for yyj972 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13510,16 +13558,16 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj970 int - var yyb970 bool - var yyhl970 bool = l >= 0 - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + var yyj975 int + var yyb975 bool + var yyhl975 bool = l >= 0 + yyj975++ + if yyhl975 { + yyb975 = yyj975 > l } else { - yyb970 = r.CheckBreak() + yyb975 = r.CheckBreak() } - if yyb970 { + if yyb975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13527,26 +13575,26 @@ func (x *ExecAction) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv971 := &x.Command - yym972 := z.DecBinary() - _ = yym972 + yyv976 := &x.Command + yym977 := z.DecBinary() + _ = yym977 if false { } else { - z.F.DecSliceStringX(yyv971, false, d) + z.F.DecSliceStringX(yyv976, false, d) } } for { - yyj970++ - if yyhl970 { - yyb970 = yyj970 > l + yyj975++ + if yyhl975 { + yyb975 = yyj975 > l } else { - yyb970 = r.CheckBreak() + yyb975 = r.CheckBreak() } - if yyb970 { + if yyb975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj970-1, "") + z.DecStructFieldNotFound(yyj975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -13558,49 +13606,49 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym973 := z.EncBinary() - _ = yym973 + yym978 := z.EncBinary() + _ = yym978 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep974 := !z.EncBinary() - yy2arr974 := z.EncBasicHandle().StructToArray - var yyq974 [8]bool - _, _, _ = yysep974, yyq974, yy2arr974 - const yyr974 bool = false - yyq974[0] = x.Handler.Exec != nil && x.Exec != nil - yyq974[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil - yyq974[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil - yyq974[3] = x.InitialDelaySeconds != 0 - yyq974[4] = x.TimeoutSeconds != 0 - yyq974[5] = x.PeriodSeconds != 0 - yyq974[6] = x.SuccessThreshold != 0 - yyq974[7] = x.FailureThreshold != 0 - var yynn974 int - if yyr974 || yy2arr974 { + yysep979 := !z.EncBinary() + yy2arr979 := z.EncBasicHandle().StructToArray + var yyq979 [8]bool + _, _, _ = yysep979, yyq979, yy2arr979 + const yyr979 bool = false + yyq979[0] = x.Handler.Exec != nil && x.Exec != nil + yyq979[1] = x.Handler.HTTPGet != nil && x.HTTPGet != nil + yyq979[2] = x.Handler.TCPSocket != nil && x.TCPSocket != nil + yyq979[3] = x.InitialDelaySeconds != 0 + yyq979[4] = x.TimeoutSeconds != 0 + yyq979[5] = x.PeriodSeconds != 0 + yyq979[6] = x.SuccessThreshold != 0 + yyq979[7] = x.FailureThreshold != 0 + var yynn979 int + if yyr979 || yy2arr979 { r.EncodeArrayStart(8) } else { - yynn974 = 0 - for _, b := range yyq974 { + yynn979 = 0 + for _, b := range yyq979 { if b { - yynn974++ + yynn979++ } } - r.EncodeMapStart(yynn974) - yynn974 = 0 + r.EncodeMapStart(yynn979) + yynn979 = 0 } - var yyn975 bool + var yyn980 bool if x.Handler.Exec == nil { - yyn975 = true - goto LABEL975 + yyn980 = true + goto LABEL980 } - LABEL975: - if yyr974 || yy2arr974 { - if yyn975 { + LABEL980: + if yyr979 || yy2arr979 { + if yyn980 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[0] { + if yyq979[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -13611,11 +13659,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq974[0] { + if yyq979[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn975 { + if yyn980 { r.EncodeNil() } else { if x.Exec == nil { @@ -13626,18 +13674,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn976 bool + var yyn981 bool if x.Handler.HTTPGet == nil { - yyn976 = true - goto LABEL976 + yyn981 = true + goto LABEL981 } - LABEL976: - if yyr974 || yy2arr974 { - if yyn976 { + LABEL981: + if yyr979 || yy2arr979 { + if yyn981 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[1] { + if yyq979[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -13648,11 +13696,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq974[1] { + if yyq979[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn976 { + if yyn981 { r.EncodeNil() } else { if x.HTTPGet == nil { @@ -13663,18 +13711,18 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - var yyn977 bool + var yyn982 bool if x.Handler.TCPSocket == nil { - yyn977 = true - goto LABEL977 + yyn982 = true + goto LABEL982 } - LABEL977: - if yyr974 || yy2arr974 { - if yyn977 { + LABEL982: + if yyr979 || yy2arr979 { + if yyn982 { r.EncodeNil() } else { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[2] { + if yyq979[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -13685,11 +13733,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } else { - if yyq974[2] { + if yyq979[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyn977 { + if yyn982 { r.EncodeNil() } else { if x.TCPSocket == nil { @@ -13700,11 +13748,11 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[3] { - yym979 := z.EncBinary() - _ = yym979 + if yyq979[3] { + yym984 := z.EncBinary() + _ = yym984 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) @@ -13713,23 +13761,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq974[3] { + if yyq979[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("initialDelaySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym980 := z.EncBinary() - _ = yym980 + yym985 := z.EncBinary() + _ = yym985 if false { } else { r.EncodeInt(int64(x.InitialDelaySeconds)) } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[4] { - yym982 := z.EncBinary() - _ = yym982 + if yyq979[4] { + yym987 := z.EncBinary() + _ = yym987 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) @@ -13738,23 +13786,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq974[4] { + if yyq979[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym983 := z.EncBinary() - _ = yym983 + yym988 := z.EncBinary() + _ = yym988 if false { } else { r.EncodeInt(int64(x.TimeoutSeconds)) } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[5] { - yym985 := z.EncBinary() - _ = yym985 + if yyq979[5] { + yym990 := z.EncBinary() + _ = yym990 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) @@ -13763,23 +13811,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq974[5] { + if yyq979[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("periodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym986 := z.EncBinary() - _ = yym986 + yym991 := z.EncBinary() + _ = yym991 if false { } else { r.EncodeInt(int64(x.PeriodSeconds)) } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[6] { - yym988 := z.EncBinary() - _ = yym988 + if yyq979[6] { + yym993 := z.EncBinary() + _ = yym993 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) @@ -13788,23 +13836,23 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq974[6] { + if yyq979[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("successThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym989 := z.EncBinary() - _ = yym989 + yym994 := z.EncBinary() + _ = yym994 if false { } else { r.EncodeInt(int64(x.SuccessThreshold)) } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq974[7] { - yym991 := z.EncBinary() - _ = yym991 + if yyq979[7] { + yym996 := z.EncBinary() + _ = yym996 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) @@ -13813,19 +13861,19 @@ func (x *Probe) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq974[7] { + if yyq979[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("failureThreshold")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym992 := z.EncBinary() - _ = yym992 + yym997 := z.EncBinary() + _ = yym997 if false { } else { r.EncodeInt(int64(x.FailureThreshold)) } } } - if yyr974 || yy2arr974 { + if yyr979 || yy2arr979 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -13838,25 +13886,25 @@ func (x *Probe) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym993 := z.DecBinary() - _ = yym993 + yym998 := z.DecBinary() + _ = yym998 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct994 := r.ContainerType() - if yyct994 == codecSelferValueTypeMap1234 { - yyl994 := r.ReadMapStart() - if yyl994 == 0 { + yyct999 := r.ContainerType() + if yyct999 == codecSelferValueTypeMap1234 { + yyl999 := r.ReadMapStart() + if yyl999 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl994, d) + x.codecDecodeSelfFromMap(yyl999, d) } - } else if yyct994 == codecSelferValueTypeArray1234 { - yyl994 := r.ReadArrayStart() - if yyl994 == 0 { + } else if yyct999 == codecSelferValueTypeArray1234 { + yyl999 := r.ReadArrayStart() + if yyl999 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl994, d) + x.codecDecodeSelfFromArray(yyl999, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -13868,12 +13916,12 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys995Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys995Slc - var yyhl995 bool = l >= 0 - for yyj995 := 0; ; yyj995++ { - if yyhl995 { - if yyj995 >= l { + var yys1000Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1000Slc + var yyhl1000 bool = l >= 0 + for yyj1000 := 0; ; yyj1000++ { + if yyhl1000 { + if yyj1000 >= l { break } } else { @@ -13882,10 +13930,10 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys995Slc = r.DecodeBytes(yys995Slc, true, true) - yys995 := string(yys995Slc) + yys1000Slc = r.DecodeBytes(yys1000Slc, true, true) + yys1000 := string(yys1000Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys995 { + switch yys1000 { case "exec": if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) @@ -13959,9 +14007,9 @@ func (x *Probe) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys995) - } // end switch yys995 - } // end for yyj995 + z.DecStructFieldNotFound(-1, yys1000) + } // end switch yys1000 + } // end for yyj1000 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -13969,19 +14017,19 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1004 int - var yyb1004 bool - var yyhl1004 bool = l >= 0 + var yyj1009 int + var yyb1009 bool + var yyhl1009 bool = l >= 0 if x.Handler.Exec == nil { x.Handler.Exec = new(ExecAction) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -13999,13 +14047,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.HTTPGet == nil { x.Handler.HTTPGet = new(HTTPGetAction) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14023,13 +14071,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.Handler.TCPSocket == nil { x.Handler.TCPSocket = new(TCPSocketAction) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14044,13 +14092,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.TCPSocket.CodecDecodeSelf(d) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14060,13 +14108,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.InitialDelaySeconds = int32(r.DecodeInt(32)) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14076,13 +14124,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TimeoutSeconds = int32(r.DecodeInt(32)) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14092,13 +14140,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PeriodSeconds = int32(r.DecodeInt(32)) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14108,13 +14156,13 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SuccessThreshold = int32(r.DecodeInt(32)) } - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14125,17 +14173,17 @@ func (x *Probe) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.FailureThreshold = int32(r.DecodeInt(32)) } for { - yyj1004++ - if yyhl1004 { - yyb1004 = yyj1004 > l + yyj1009++ + if yyhl1009 { + yyb1009 = yyj1009 > l } else { - yyb1004 = r.CheckBreak() + yyb1009 = r.CheckBreak() } - if yyb1004 { + if yyb1009 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1004-1, "") + z.DecStructFieldNotFound(yyj1009-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14144,8 +14192,8 @@ func (x PullPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1013 := z.EncBinary() - _ = yym1013 + yym1018 := z.EncBinary() + _ = yym1018 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14157,8 +14205,8 @@ func (x *PullPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1014 := z.DecBinary() - _ = yym1014 + yym1019 := z.DecBinary() + _ = yym1019 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14170,8 +14218,8 @@ func (x Capability) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1015 := z.EncBinary() - _ = yym1015 + yym1020 := z.EncBinary() + _ = yym1020 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -14183,8 +14231,8 @@ func (x *Capability) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1016 := z.DecBinary() - _ = yym1016 + yym1021 := z.DecBinary() + _ = yym1021 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -14199,39 +14247,39 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1017 := z.EncBinary() - _ = yym1017 + yym1022 := z.EncBinary() + _ = yym1022 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1018 := !z.EncBinary() - yy2arr1018 := z.EncBasicHandle().StructToArray - var yyq1018 [2]bool - _, _, _ = yysep1018, yyq1018, yy2arr1018 - const yyr1018 bool = false - yyq1018[0] = len(x.Add) != 0 - yyq1018[1] = len(x.Drop) != 0 - var yynn1018 int - if yyr1018 || yy2arr1018 { + yysep1023 := !z.EncBinary() + yy2arr1023 := z.EncBasicHandle().StructToArray + var yyq1023 [2]bool + _, _, _ = yysep1023, yyq1023, yy2arr1023 + const yyr1023 bool = false + yyq1023[0] = len(x.Add) != 0 + yyq1023[1] = len(x.Drop) != 0 + var yynn1023 int + if yyr1023 || yy2arr1023 { r.EncodeArrayStart(2) } else { - yynn1018 = 0 - for _, b := range yyq1018 { + yynn1023 = 0 + for _, b := range yyq1023 { if b { - yynn1018++ + yynn1023++ } } - r.EncodeMapStart(yynn1018) - yynn1018 = 0 + r.EncodeMapStart(yynn1023) + yynn1023 = 0 } - if yyr1018 || yy2arr1018 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1018[0] { + if yyq1023[0] { if x.Add == nil { r.EncodeNil() } else { - yym1020 := z.EncBinary() - _ = yym1020 + yym1025 := z.EncBinary() + _ = yym1025 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14241,15 +14289,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1018[0] { + if yyq1023[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("add")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Add == nil { r.EncodeNil() } else { - yym1021 := z.EncBinary() - _ = yym1021 + yym1026 := z.EncBinary() + _ = yym1026 if false { } else { h.encSliceCapability(([]Capability)(x.Add), e) @@ -14257,14 +14305,14 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1018 || yy2arr1018 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1018[1] { + if yyq1023[1] { if x.Drop == nil { r.EncodeNil() } else { - yym1023 := z.EncBinary() - _ = yym1023 + yym1028 := z.EncBinary() + _ = yym1028 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14274,15 +14322,15 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1018[1] { + if yyq1023[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("drop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Drop == nil { r.EncodeNil() } else { - yym1024 := z.EncBinary() - _ = yym1024 + yym1029 := z.EncBinary() + _ = yym1029 if false { } else { h.encSliceCapability(([]Capability)(x.Drop), e) @@ -14290,7 +14338,7 @@ func (x *Capabilities) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1018 || yy2arr1018 { + if yyr1023 || yy2arr1023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14303,25 +14351,25 @@ func (x *Capabilities) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1025 := z.DecBinary() - _ = yym1025 + yym1030 := z.DecBinary() + _ = yym1030 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1026 := r.ContainerType() - if yyct1026 == codecSelferValueTypeMap1234 { - yyl1026 := r.ReadMapStart() - if yyl1026 == 0 { + yyct1031 := r.ContainerType() + if yyct1031 == codecSelferValueTypeMap1234 { + yyl1031 := r.ReadMapStart() + if yyl1031 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1026, d) + x.codecDecodeSelfFromMap(yyl1031, d) } - } else if yyct1026 == codecSelferValueTypeArray1234 { - yyl1026 := r.ReadArrayStart() - if yyl1026 == 0 { + } else if yyct1031 == codecSelferValueTypeArray1234 { + yyl1031 := r.ReadArrayStart() + if yyl1031 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1026, d) + x.codecDecodeSelfFromArray(yyl1031, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14333,12 +14381,12 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1027Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1027Slc - var yyhl1027 bool = l >= 0 - for yyj1027 := 0; ; yyj1027++ { - if yyhl1027 { - if yyj1027 >= l { + var yys1032Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1032Slc + var yyhl1032 bool = l >= 0 + for yyj1032 := 0; ; yyj1032++ { + if yyhl1032 { + if yyj1032 >= l { break } } else { @@ -14347,38 +14395,38 @@ func (x *Capabilities) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1027Slc = r.DecodeBytes(yys1027Slc, true, true) - yys1027 := string(yys1027Slc) + yys1032Slc = r.DecodeBytes(yys1032Slc, true, true) + yys1032 := string(yys1032Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1027 { + switch yys1032 { case "add": if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1028 := &x.Add - yym1029 := z.DecBinary() - _ = yym1029 + yyv1033 := &x.Add + yym1034 := z.DecBinary() + _ = yym1034 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1028), d) + h.decSliceCapability((*[]Capability)(yyv1033), d) } } case "drop": if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1030 := &x.Drop - yym1031 := z.DecBinary() - _ = yym1031 + yyv1035 := &x.Drop + yym1036 := z.DecBinary() + _ = yym1036 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1030), d) + h.decSliceCapability((*[]Capability)(yyv1035), d) } } default: - z.DecStructFieldNotFound(-1, yys1027) - } // end switch yys1027 - } // end for yyj1027 + z.DecStructFieldNotFound(-1, yys1032) + } // end switch yys1032 + } // end for yyj1032 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14386,16 +14434,16 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1032 int - var yyb1032 bool - var yyhl1032 bool = l >= 0 - yyj1032++ - if yyhl1032 { - yyb1032 = yyj1032 > l + var yyj1037 int + var yyb1037 bool + var yyhl1037 bool = l >= 0 + yyj1037++ + if yyhl1037 { + yyb1037 = yyj1037 > l } else { - yyb1032 = r.CheckBreak() + yyb1037 = r.CheckBreak() } - if yyb1032 { + if yyb1037 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14403,21 +14451,21 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Add = nil } else { - yyv1033 := &x.Add - yym1034 := z.DecBinary() - _ = yym1034 + yyv1038 := &x.Add + yym1039 := z.DecBinary() + _ = yym1039 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1033), d) + h.decSliceCapability((*[]Capability)(yyv1038), d) } } - yyj1032++ - if yyhl1032 { - yyb1032 = yyj1032 > l + yyj1037++ + if yyhl1037 { + yyb1037 = yyj1037 > l } else { - yyb1032 = r.CheckBreak() + yyb1037 = r.CheckBreak() } - if yyb1032 { + if yyb1037 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14425,26 +14473,26 @@ func (x *Capabilities) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Drop = nil } else { - yyv1035 := &x.Drop - yym1036 := z.DecBinary() - _ = yym1036 + yyv1040 := &x.Drop + yym1041 := z.DecBinary() + _ = yym1041 if false { } else { - h.decSliceCapability((*[]Capability)(yyv1035), d) + h.decSliceCapability((*[]Capability)(yyv1040), d) } } for { - yyj1032++ - if yyhl1032 { - yyb1032 = yyj1032 > l + yyj1037++ + if yyhl1037 { + yyb1037 = yyj1037 > l } else { - yyb1032 = r.CheckBreak() + yyb1037 = r.CheckBreak() } - if yyb1032 { + if yyb1037 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1032-1, "") + z.DecStructFieldNotFound(yyj1037-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14456,34 +14504,34 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1037 := z.EncBinary() - _ = yym1037 + yym1042 := z.EncBinary() + _ = yym1042 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1038 := !z.EncBinary() - yy2arr1038 := z.EncBasicHandle().StructToArray - var yyq1038 [2]bool - _, _, _ = yysep1038, yyq1038, yy2arr1038 - const yyr1038 bool = false - yyq1038[0] = len(x.Limits) != 0 - yyq1038[1] = len(x.Requests) != 0 - var yynn1038 int - if yyr1038 || yy2arr1038 { + yysep1043 := !z.EncBinary() + yy2arr1043 := z.EncBasicHandle().StructToArray + var yyq1043 [2]bool + _, _, _ = yysep1043, yyq1043, yy2arr1043 + const yyr1043 bool = false + yyq1043[0] = len(x.Limits) != 0 + yyq1043[1] = len(x.Requests) != 0 + var yynn1043 int + if yyr1043 || yy2arr1043 { r.EncodeArrayStart(2) } else { - yynn1038 = 0 - for _, b := range yyq1038 { + yynn1043 = 0 + for _, b := range yyq1043 { if b { - yynn1038++ + yynn1043++ } } - r.EncodeMapStart(yynn1038) - yynn1038 = 0 + r.EncodeMapStart(yynn1043) + yynn1043 = 0 } - if yyr1038 || yy2arr1038 { + if yyr1043 || yy2arr1043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1038[0] { + if yyq1043[0] { if x.Limits == nil { r.EncodeNil() } else { @@ -14493,7 +14541,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1038[0] { + if yyq1043[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limits")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14504,9 +14552,9 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1038 || yy2arr1038 { + if yyr1043 || yy2arr1043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1038[1] { + if yyq1043[1] { if x.Requests == nil { r.EncodeNil() } else { @@ -14516,7 +14564,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1038[1] { + if yyq1043[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("requests")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14527,7 +14575,7 @@ func (x *ResourceRequirements) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1038 || yy2arr1038 { + if yyr1043 || yy2arr1043 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -14540,25 +14588,25 @@ func (x *ResourceRequirements) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1041 := z.DecBinary() - _ = yym1041 + yym1046 := z.DecBinary() + _ = yym1046 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1042 := r.ContainerType() - if yyct1042 == codecSelferValueTypeMap1234 { - yyl1042 := r.ReadMapStart() - if yyl1042 == 0 { + yyct1047 := r.ContainerType() + if yyct1047 == codecSelferValueTypeMap1234 { + yyl1047 := r.ReadMapStart() + if yyl1047 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1042, d) + x.codecDecodeSelfFromMap(yyl1047, d) } - } else if yyct1042 == codecSelferValueTypeArray1234 { - yyl1042 := r.ReadArrayStart() - if yyl1042 == 0 { + } else if yyct1047 == codecSelferValueTypeArray1234 { + yyl1047 := r.ReadArrayStart() + if yyl1047 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1042, d) + x.codecDecodeSelfFromArray(yyl1047, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -14570,12 +14618,12 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode 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 yys1048Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1048Slc + var yyhl1048 bool = l >= 0 + for yyj1048 := 0; ; yyj1048++ { + if yyhl1048 { + if yyj1048 >= l { break } } else { @@ -14584,28 +14632,28 @@ func (x *ResourceRequirements) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1043Slc = r.DecodeBytes(yys1043Slc, true, true) - yys1043 := string(yys1043Slc) + yys1048Slc = r.DecodeBytes(yys1048Slc, true, true) + yys1048 := string(yys1048Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1043 { + switch yys1048 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1044 := &x.Limits - yyv1044.CodecDecodeSelf(d) + yyv1049 := &x.Limits + yyv1049.CodecDecodeSelf(d) } case "requests": if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1045 := &x.Requests - yyv1045.CodecDecodeSelf(d) + yyv1050 := &x.Requests + yyv1050.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1043) - } // end switch yys1043 - } // end for yyj1043 + z.DecStructFieldNotFound(-1, yys1048) + } // end switch yys1048 + } // end for yyj1048 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -14613,16 +14661,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1046 int - var yyb1046 bool - var yyhl1046 bool = l >= 0 - yyj1046++ - if yyhl1046 { - yyb1046 = yyj1046 > l + var yyj1051 int + var yyb1051 bool + var yyhl1051 bool = l >= 0 + yyj1051++ + if yyhl1051 { + yyb1051 = yyj1051 > l } else { - yyb1046 = r.CheckBreak() + yyb1051 = r.CheckBreak() } - if yyb1046 { + if yyb1051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14630,16 +14678,16 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv1047 := &x.Limits - yyv1047.CodecDecodeSelf(d) + yyv1052 := &x.Limits + yyv1052.CodecDecodeSelf(d) } - yyj1046++ - if yyhl1046 { - yyb1046 = yyj1046 > l + yyj1051++ + if yyhl1051 { + yyb1051 = yyj1051 > l } else { - yyb1046 = r.CheckBreak() + yyb1051 = r.CheckBreak() } - if yyb1046 { + if yyb1051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -14647,21 +14695,21 @@ func (x *ResourceRequirements) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.Requests = nil } else { - yyv1048 := &x.Requests - yyv1048.CodecDecodeSelf(d) + yyv1053 := &x.Requests + yyv1053.CodecDecodeSelf(d) } for { - yyj1046++ - if yyhl1046 { - yyb1046 = yyj1046 > l + yyj1051++ + if yyhl1051 { + yyb1051 = yyj1051 > l } else { - yyb1046 = r.CheckBreak() + yyb1051 = r.CheckBreak() } - if yyb1046 { + if yyb1051 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1046-1, "") + z.DecStructFieldNotFound(yyj1051-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -14673,50 +14721,50 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1049 := z.EncBinary() - _ = yym1049 + yym1054 := z.EncBinary() + _ = yym1054 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1050 := !z.EncBinary() - yy2arr1050 := z.EncBasicHandle().StructToArray - var yyq1050 [18]bool - _, _, _ = yysep1050, yyq1050, yy2arr1050 - const yyr1050 bool = false - yyq1050[1] = x.Image != "" - yyq1050[2] = len(x.Command) != 0 - yyq1050[3] = len(x.Args) != 0 - yyq1050[4] = x.WorkingDir != "" - yyq1050[5] = len(x.Ports) != 0 - yyq1050[6] = len(x.Env) != 0 - yyq1050[7] = true - yyq1050[8] = len(x.VolumeMounts) != 0 - yyq1050[9] = x.LivenessProbe != nil - yyq1050[10] = x.ReadinessProbe != nil - yyq1050[11] = x.Lifecycle != nil - yyq1050[12] = x.TerminationMessagePath != "" - yyq1050[13] = x.ImagePullPolicy != "" - yyq1050[14] = x.SecurityContext != nil - yyq1050[15] = x.Stdin != false - yyq1050[16] = x.StdinOnce != false - yyq1050[17] = x.TTY != false - var yynn1050 int - if yyr1050 || yy2arr1050 { + yysep1055 := !z.EncBinary() + yy2arr1055 := z.EncBasicHandle().StructToArray + var yyq1055 [18]bool + _, _, _ = yysep1055, yyq1055, yy2arr1055 + const yyr1055 bool = false + yyq1055[1] = x.Image != "" + yyq1055[2] = len(x.Command) != 0 + yyq1055[3] = len(x.Args) != 0 + yyq1055[4] = x.WorkingDir != "" + yyq1055[5] = len(x.Ports) != 0 + yyq1055[6] = len(x.Env) != 0 + yyq1055[7] = true + yyq1055[8] = len(x.VolumeMounts) != 0 + yyq1055[9] = x.LivenessProbe != nil + yyq1055[10] = x.ReadinessProbe != nil + yyq1055[11] = x.Lifecycle != nil + yyq1055[12] = x.TerminationMessagePath != "" + yyq1055[13] = x.ImagePullPolicy != "" + yyq1055[14] = x.SecurityContext != nil + yyq1055[15] = x.Stdin != false + yyq1055[16] = x.StdinOnce != false + yyq1055[17] = x.TTY != false + var yynn1055 int + if yyr1055 || yy2arr1055 { r.EncodeArrayStart(18) } else { - yynn1050 = 1 - for _, b := range yyq1050 { + yynn1055 = 1 + for _, b := range yyq1055 { if b { - yynn1050++ + yynn1055++ } } - r.EncodeMapStart(yynn1050) - yynn1050 = 0 + r.EncodeMapStart(yynn1055) + yynn1055 = 0 } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1052 := z.EncBinary() - _ = yym1052 + yym1057 := z.EncBinary() + _ = yym1057 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -14725,18 +14773,18 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1053 := z.EncBinary() - _ = yym1053 + yym1058 := z.EncBinary() + _ = yym1058 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[1] { - yym1055 := z.EncBinary() - _ = yym1055 + if yyq1055[1] { + yym1060 := z.EncBinary() + _ = yym1060 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -14745,26 +14793,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1050[1] { + if yyq1055[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1056 := z.EncBinary() - _ = yym1056 + yym1061 := z.EncBinary() + _ = yym1061 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[2] { + if yyq1055[2] { if x.Command == nil { r.EncodeNil() } else { - yym1058 := z.EncBinary() - _ = yym1058 + yym1063 := z.EncBinary() + _ = yym1063 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14774,15 +14822,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[2] { + if yyq1055[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("command")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Command == nil { r.EncodeNil() } else { - yym1059 := z.EncBinary() - _ = yym1059 + yym1064 := z.EncBinary() + _ = yym1064 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -14790,14 +14838,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[3] { + if yyq1055[3] { if x.Args == nil { r.EncodeNil() } else { - yym1061 := z.EncBinary() - _ = yym1061 + yym1066 := z.EncBinary() + _ = yym1066 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -14807,15 +14855,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[3] { + if yyq1055[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("args")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Args == nil { r.EncodeNil() } else { - yym1062 := z.EncBinary() - _ = yym1062 + yym1067 := z.EncBinary() + _ = yym1067 if false { } else { z.F.EncSliceStringV(x.Args, false, e) @@ -14823,11 +14871,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[4] { - yym1064 := z.EncBinary() - _ = yym1064 + if yyq1055[4] { + yym1069 := z.EncBinary() + _ = yym1069 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) @@ -14836,26 +14884,26 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1050[4] { + if yyq1055[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("workingDir")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1065 := z.EncBinary() - _ = yym1065 + yym1070 := z.EncBinary() + _ = yym1070 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.WorkingDir)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[5] { + if yyq1055[5] { if x.Ports == nil { r.EncodeNil() } else { - yym1067 := z.EncBinary() - _ = yym1067 + yym1072 := z.EncBinary() + _ = yym1072 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -14865,15 +14913,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[5] { + if yyq1055[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym1068 := z.EncBinary() - _ = yym1068 + yym1073 := z.EncBinary() + _ = yym1073 if false { } else { h.encSliceContainerPort(([]ContainerPort)(x.Ports), e) @@ -14881,14 +14929,14 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[6] { + if yyq1055[6] { if x.Env == nil { r.EncodeNil() } else { - yym1070 := z.EncBinary() - _ = yym1070 + yym1075 := z.EncBinary() + _ = yym1075 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -14898,15 +14946,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[6] { + if yyq1055[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("env")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Env == nil { r.EncodeNil() } else { - yym1071 := z.EncBinary() - _ = yym1071 + yym1076 := z.EncBinary() + _ = yym1076 if false { } else { h.encSliceEnvVar(([]EnvVar)(x.Env), e) @@ -14914,31 +14962,31 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[7] { - yy1073 := &x.Resources - yy1073.CodecEncodeSelf(e) + if yyq1055[7] { + yy1078 := &x.Resources + yy1078.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1050[7] { + if yyq1055[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resources")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1074 := &x.Resources - yy1074.CodecEncodeSelf(e) + yy1079 := &x.Resources + yy1079.CodecEncodeSelf(e) } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[8] { + if yyq1055[8] { if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1076 := z.EncBinary() - _ = yym1076 + yym1081 := z.EncBinary() + _ = yym1081 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -14948,15 +14996,15 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[8] { + if yyq1055[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumeMounts")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumeMounts == nil { r.EncodeNil() } else { - yym1077 := z.EncBinary() - _ = yym1077 + yym1082 := z.EncBinary() + _ = yym1082 if false { } else { h.encSliceVolumeMount(([]VolumeMount)(x.VolumeMounts), e) @@ -14964,9 +15012,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[9] { + if yyq1055[9] { if x.LivenessProbe == nil { r.EncodeNil() } else { @@ -14976,7 +15024,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[9] { + if yyq1055[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("livenessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -14987,9 +15035,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[10] { + if yyq1055[10] { if x.ReadinessProbe == nil { r.EncodeNil() } else { @@ -14999,7 +15047,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[10] { + if yyq1055[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readinessProbe")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15010,9 +15058,9 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[11] { + if yyq1055[11] { if x.Lifecycle == nil { r.EncodeNil() } else { @@ -15022,7 +15070,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[11] { + if yyq1055[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lifecycle")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15033,11 +15081,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[12] { - yym1082 := z.EncBinary() - _ = yym1082 + if yyq1055[12] { + yym1087 := z.EncBinary() + _ = yym1087 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) @@ -15046,36 +15094,36 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1050[12] { + if yyq1055[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationMessagePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1083 := z.EncBinary() - _ = yym1083 + yym1088 := z.EncBinary() + _ = yym1088 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.TerminationMessagePath)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[13] { + if yyq1055[13] { x.ImagePullPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1050[13] { + if yyq1055[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.ImagePullPolicy.CodecEncodeSelf(e) } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[14] { + if yyq1055[14] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -15085,7 +15133,7 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1050[14] { + if yyq1055[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15096,11 +15144,11 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[15] { - yym1087 := z.EncBinary() - _ = yym1087 + if yyq1055[15] { + yym1092 := z.EncBinary() + _ = yym1092 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -15109,23 +15157,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1050[15] { + if yyq1055[15] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1088 := z.EncBinary() - _ = yym1088 + yym1093 := z.EncBinary() + _ = yym1093 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[16] { - yym1090 := z.EncBinary() - _ = yym1090 + if yyq1055[16] { + yym1095 := z.EncBinary() + _ = yym1095 if false { } else { r.EncodeBool(bool(x.StdinOnce)) @@ -15134,23 +15182,23 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1050[16] { + if yyq1055[16] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdinOnce")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1091 := z.EncBinary() - _ = yym1091 + yym1096 := z.EncBinary() + _ = yym1096 if false { } else { r.EncodeBool(bool(x.StdinOnce)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1050[17] { - yym1093 := z.EncBinary() - _ = yym1093 + if yyq1055[17] { + yym1098 := z.EncBinary() + _ = yym1098 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -15159,19 +15207,19 @@ func (x *Container) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1050[17] { + if yyq1055[17] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1094 := z.EncBinary() - _ = yym1094 + yym1099 := z.EncBinary() + _ = yym1099 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr1050 || yy2arr1050 { + if yyr1055 || yy2arr1055 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15184,25 +15232,25 @@ func (x *Container) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1095 := z.DecBinary() - _ = yym1095 + yym1100 := z.DecBinary() + _ = yym1100 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1096 := r.ContainerType() - if yyct1096 == codecSelferValueTypeMap1234 { - yyl1096 := r.ReadMapStart() - if yyl1096 == 0 { + yyct1101 := r.ContainerType() + if yyct1101 == codecSelferValueTypeMap1234 { + yyl1101 := r.ReadMapStart() + if yyl1101 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1096, d) + x.codecDecodeSelfFromMap(yyl1101, d) } - } else if yyct1096 == codecSelferValueTypeArray1234 { - yyl1096 := r.ReadArrayStart() - if yyl1096 == 0 { + } else if yyct1101 == codecSelferValueTypeArray1234 { + yyl1101 := r.ReadArrayStart() + if yyl1101 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1096, d) + x.codecDecodeSelfFromArray(yyl1101, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15214,12 +15262,12 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1097Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1097Slc - var yyhl1097 bool = l >= 0 - for yyj1097 := 0; ; yyj1097++ { - if yyhl1097 { - if yyj1097 >= l { + var yys1102Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1102Slc + var yyhl1102 bool = l >= 0 + for yyj1102 := 0; ; yyj1102++ { + if yyhl1102 { + if yyj1102 >= l { break } } else { @@ -15228,10 +15276,10 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1097Slc = r.DecodeBytes(yys1097Slc, true, true) - yys1097 := string(yys1097Slc) + yys1102Slc = r.DecodeBytes(yys1102Slc, true, true) + yys1102 := string(yys1102Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1097 { + switch yys1102 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -15248,24 +15296,24 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1100 := &x.Command - yym1101 := z.DecBinary() - _ = yym1101 + yyv1105 := &x.Command + yym1106 := z.DecBinary() + _ = yym1106 if false { } else { - z.F.DecSliceStringX(yyv1100, false, d) + z.F.DecSliceStringX(yyv1105, false, d) } } case "args": if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1102 := &x.Args - yym1103 := z.DecBinary() - _ = yym1103 + yyv1107 := &x.Args + yym1108 := z.DecBinary() + _ = yym1108 if false { } else { - z.F.DecSliceStringX(yyv1102, false, d) + z.F.DecSliceStringX(yyv1107, false, d) } } case "workingDir": @@ -15278,43 +15326,43 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1105 := &x.Ports - yym1106 := z.DecBinary() - _ = yym1106 + yyv1110 := &x.Ports + yym1111 := z.DecBinary() + _ = yym1111 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1105), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1110), d) } } case "env": if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1107 := &x.Env - yym1108 := z.DecBinary() - _ = yym1108 + yyv1112 := &x.Env + yym1113 := z.DecBinary() + _ = yym1113 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1107), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1112), d) } } case "resources": if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1109 := &x.Resources - yyv1109.CodecDecodeSelf(d) + yyv1114 := &x.Resources + yyv1114.CodecDecodeSelf(d) } case "volumeMounts": if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1110 := &x.VolumeMounts - yym1111 := z.DecBinary() - _ = yym1111 + yyv1115 := &x.VolumeMounts + yym1116 := z.DecBinary() + _ = yym1116 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1110), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1115), d) } } case "livenessProbe": @@ -15392,9 +15440,9 @@ func (x *Container) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys1097) - } // end switch yys1097 - } // end for yyj1097 + z.DecStructFieldNotFound(-1, yys1102) + } // end switch yys1102 + } // end for yyj1102 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15402,16 +15450,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1121 int - var yyb1121 bool - var yyhl1121 bool = l >= 0 - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + var yyj1126 int + var yyb1126 bool + var yyhl1126 bool = l >= 0 + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15421,13 +15469,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15437,13 +15485,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Image = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15451,21 +15499,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv1124 := &x.Command - yym1125 := z.DecBinary() - _ = yym1125 + yyv1129 := &x.Command + yym1130 := z.DecBinary() + _ = yym1130 if false { } else { - z.F.DecSliceStringX(yyv1124, false, d) + z.F.DecSliceStringX(yyv1129, false, d) } } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15473,21 +15521,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Args = nil } else { - yyv1126 := &x.Args - yym1127 := z.DecBinary() - _ = yym1127 + yyv1131 := &x.Args + yym1132 := z.DecBinary() + _ = yym1132 if false { } else { - z.F.DecSliceStringX(yyv1126, false, d) + z.F.DecSliceStringX(yyv1131, false, d) } } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15497,13 +15545,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.WorkingDir = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15511,21 +15559,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1129 := &x.Ports - yym1130 := z.DecBinary() - _ = yym1130 + yyv1134 := &x.Ports + yym1135 := z.DecBinary() + _ = yym1135 if false { } else { - h.decSliceContainerPort((*[]ContainerPort)(yyv1129), d) + h.decSliceContainerPort((*[]ContainerPort)(yyv1134), d) } } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15533,21 +15581,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Env = nil } else { - yyv1131 := &x.Env - yym1132 := z.DecBinary() - _ = yym1132 + yyv1136 := &x.Env + yym1137 := z.DecBinary() + _ = yym1137 if false { } else { - h.decSliceEnvVar((*[]EnvVar)(yyv1131), d) + h.decSliceEnvVar((*[]EnvVar)(yyv1136), d) } } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15555,16 +15603,16 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Resources = ResourceRequirements{} } else { - yyv1133 := &x.Resources - yyv1133.CodecDecodeSelf(d) + yyv1138 := &x.Resources + yyv1138.CodecDecodeSelf(d) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15572,21 +15620,21 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumeMounts = nil } else { - yyv1134 := &x.VolumeMounts - yym1135 := z.DecBinary() - _ = yym1135 + yyv1139 := &x.VolumeMounts + yym1140 := z.DecBinary() + _ = yym1140 if false { } else { - h.decSliceVolumeMount((*[]VolumeMount)(yyv1134), d) + h.decSliceVolumeMount((*[]VolumeMount)(yyv1139), d) } } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15601,13 +15649,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.LivenessProbe.CodecDecodeSelf(d) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15622,13 +15670,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.ReadinessProbe.CodecDecodeSelf(d) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15643,13 +15691,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Lifecycle.CodecDecodeSelf(d) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15659,13 +15707,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TerminationMessagePath = string(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15675,13 +15723,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ImagePullPolicy = PullPolicy(r.DecodeString()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15696,13 +15744,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15712,13 +15760,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15728,13 +15776,13 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.StdinOnce = bool(r.DecodeBool()) } - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15745,17 +15793,17 @@ func (x *Container) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TTY = bool(r.DecodeBool()) } for { - yyj1121++ - if yyhl1121 { - yyb1121 = yyj1121 > l + yyj1126++ + if yyhl1126 { + yyb1126 = yyj1126 > l } else { - yyb1121 = r.CheckBreak() + yyb1126 = r.CheckBreak() } - if yyb1121 { + if yyb1126 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1121-1, "") + z.DecStructFieldNotFound(yyj1126-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -15767,35 +15815,35 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1145 := z.EncBinary() - _ = yym1145 + yym1150 := z.EncBinary() + _ = yym1150 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1146 := !z.EncBinary() - yy2arr1146 := z.EncBasicHandle().StructToArray - var yyq1146 [3]bool - _, _, _ = yysep1146, yyq1146, yy2arr1146 - const yyr1146 bool = false - yyq1146[0] = x.Exec != nil - yyq1146[1] = x.HTTPGet != nil - yyq1146[2] = x.TCPSocket != nil - var yynn1146 int - if yyr1146 || yy2arr1146 { + yysep1151 := !z.EncBinary() + yy2arr1151 := z.EncBasicHandle().StructToArray + var yyq1151 [3]bool + _, _, _ = yysep1151, yyq1151, yy2arr1151 + const yyr1151 bool = false + yyq1151[0] = x.Exec != nil + yyq1151[1] = x.HTTPGet != nil + yyq1151[2] = x.TCPSocket != nil + var yynn1151 int + if yyr1151 || yy2arr1151 { r.EncodeArrayStart(3) } else { - yynn1146 = 0 - for _, b := range yyq1146 { + yynn1151 = 0 + for _, b := range yyq1151 { if b { - yynn1146++ + yynn1151++ } } - r.EncodeMapStart(yynn1146) - yynn1146 = 0 + r.EncodeMapStart(yynn1151) + yynn1151 = 0 } - if yyr1146 || yy2arr1146 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1146[0] { + if yyq1151[0] { if x.Exec == nil { r.EncodeNil() } else { @@ -15805,7 +15853,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1146[0] { + if yyq1151[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15816,9 +15864,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1146 || yy2arr1146 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1146[1] { + if yyq1151[1] { if x.HTTPGet == nil { r.EncodeNil() } else { @@ -15828,7 +15876,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1146[1] { + if yyq1151[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("httpGet")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15839,9 +15887,9 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1146 || yy2arr1146 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1146[2] { + if yyq1151[2] { if x.TCPSocket == nil { r.EncodeNil() } else { @@ -15851,7 +15899,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1146[2] { + if yyq1151[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tcpSocket")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -15862,7 +15910,7 @@ func (x *Handler) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1146 || yy2arr1146 { + if yyr1151 || yy2arr1151 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -15875,25 +15923,25 @@ func (x *Handler) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1150 := z.DecBinary() - _ = yym1150 + yym1155 := z.DecBinary() + _ = yym1155 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1151 := r.ContainerType() - if yyct1151 == codecSelferValueTypeMap1234 { - yyl1151 := r.ReadMapStart() - if yyl1151 == 0 { + yyct1156 := r.ContainerType() + if yyct1156 == codecSelferValueTypeMap1234 { + yyl1156 := r.ReadMapStart() + if yyl1156 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1151, d) + x.codecDecodeSelfFromMap(yyl1156, d) } - } else if yyct1151 == codecSelferValueTypeArray1234 { - yyl1151 := r.ReadArrayStart() - if yyl1151 == 0 { + } else if yyct1156 == codecSelferValueTypeArray1234 { + yyl1156 := r.ReadArrayStart() + if yyl1156 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1151, d) + x.codecDecodeSelfFromArray(yyl1156, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -15905,12 +15953,12 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1152Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1152Slc - var yyhl1152 bool = l >= 0 - for yyj1152 := 0; ; yyj1152++ { - if yyhl1152 { - if yyj1152 >= l { + var yys1157Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1157Slc + var yyhl1157 bool = l >= 0 + for yyj1157 := 0; ; yyj1157++ { + if yyhl1157 { + if yyj1157 >= l { break } } else { @@ -15919,10 +15967,10 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1152Slc = r.DecodeBytes(yys1152Slc, true, true) - yys1152 := string(yys1152Slc) + yys1157Slc = r.DecodeBytes(yys1157Slc, true, true) + yys1157 := string(yys1157Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1152 { + switch yys1157 { case "exec": if r.TryDecodeAsNil() { if x.Exec != nil { @@ -15957,9 +16005,9 @@ func (x *Handler) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1152) - } // end switch yys1152 - } // end for yyj1152 + z.DecStructFieldNotFound(-1, yys1157) + } // end switch yys1157 + } // end for yyj1157 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -15967,16 +16015,16 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1156 int - var yyb1156 bool - var yyhl1156 bool = l >= 0 - yyj1156++ - if yyhl1156 { - yyb1156 = yyj1156 > l + var yyj1161 int + var yyb1161 bool + var yyhl1161 bool = l >= 0 + yyj1161++ + if yyhl1161 { + yyb1161 = yyj1161 > l } else { - yyb1156 = r.CheckBreak() + yyb1161 = r.CheckBreak() } - if yyb1156 { + if yyb1161 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -15991,13 +16039,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Exec.CodecDecodeSelf(d) } - yyj1156++ - if yyhl1156 { - yyb1156 = yyj1156 > l + yyj1161++ + if yyhl1161 { + yyb1161 = yyj1161 > l } else { - yyb1156 = r.CheckBreak() + yyb1161 = r.CheckBreak() } - if yyb1156 { + if yyb1161 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16012,13 +16060,13 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.HTTPGet.CodecDecodeSelf(d) } - yyj1156++ - if yyhl1156 { - yyb1156 = yyj1156 > l + yyj1161++ + if yyhl1161 { + yyb1161 = yyj1161 > l } else { - yyb1156 = r.CheckBreak() + yyb1161 = r.CheckBreak() } - if yyb1156 { + if yyb1161 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16034,17 +16082,17 @@ func (x *Handler) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.TCPSocket.CodecDecodeSelf(d) } for { - yyj1156++ - if yyhl1156 { - yyb1156 = yyj1156 > l + yyj1161++ + if yyhl1161 { + yyb1161 = yyj1161 > l } else { - yyb1156 = r.CheckBreak() + yyb1161 = r.CheckBreak() } - if yyb1156 { + if yyb1161 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1156-1, "") + z.DecStructFieldNotFound(yyj1161-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16056,34 +16104,34 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1160 := z.EncBinary() - _ = yym1160 + yym1165 := z.EncBinary() + _ = yym1165 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1161 := !z.EncBinary() - yy2arr1161 := z.EncBasicHandle().StructToArray - var yyq1161 [2]bool - _, _, _ = yysep1161, yyq1161, yy2arr1161 - const yyr1161 bool = false - yyq1161[0] = x.PostStart != nil - yyq1161[1] = x.PreStop != nil - var yynn1161 int - if yyr1161 || yy2arr1161 { + yysep1166 := !z.EncBinary() + yy2arr1166 := z.EncBasicHandle().StructToArray + var yyq1166 [2]bool + _, _, _ = yysep1166, yyq1166, yy2arr1166 + const yyr1166 bool = false + yyq1166[0] = x.PostStart != nil + yyq1166[1] = x.PreStop != nil + var yynn1166 int + if yyr1166 || yy2arr1166 { r.EncodeArrayStart(2) } else { - yynn1161 = 0 - for _, b := range yyq1161 { + yynn1166 = 0 + for _, b := range yyq1166 { if b { - yynn1161++ + yynn1166++ } } - r.EncodeMapStart(yynn1161) - yynn1161 = 0 + r.EncodeMapStart(yynn1166) + yynn1166 = 0 } - if yyr1161 || yy2arr1161 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1161[0] { + if yyq1166[0] { if x.PostStart == nil { r.EncodeNil() } else { @@ -16093,7 +16141,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1161[0] { + if yyq1166[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("postStart")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16104,9 +16152,9 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1161 || yy2arr1161 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1161[1] { + if yyq1166[1] { if x.PreStop == nil { r.EncodeNil() } else { @@ -16116,7 +16164,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1161[1] { + if yyq1166[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preStop")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -16127,7 +16175,7 @@ func (x *Lifecycle) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1161 || yy2arr1161 { + if yyr1166 || yy2arr1166 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16140,25 +16188,25 @@ func (x *Lifecycle) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1164 := z.DecBinary() - _ = yym1164 + yym1169 := z.DecBinary() + _ = yym1169 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1165 := r.ContainerType() - if yyct1165 == codecSelferValueTypeMap1234 { - yyl1165 := r.ReadMapStart() - if yyl1165 == 0 { + yyct1170 := r.ContainerType() + if yyct1170 == codecSelferValueTypeMap1234 { + yyl1170 := r.ReadMapStart() + if yyl1170 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1165, d) + x.codecDecodeSelfFromMap(yyl1170, d) } - } else if yyct1165 == codecSelferValueTypeArray1234 { - yyl1165 := r.ReadArrayStart() - if yyl1165 == 0 { + } else if yyct1170 == codecSelferValueTypeArray1234 { + yyl1170 := r.ReadArrayStart() + if yyl1170 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1165, d) + x.codecDecodeSelfFromArray(yyl1170, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16170,12 +16218,12 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1166Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1166Slc - var yyhl1166 bool = l >= 0 - for yyj1166 := 0; ; yyj1166++ { - if yyhl1166 { - if yyj1166 >= l { + var yys1171Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1171Slc + var yyhl1171 bool = l >= 0 + for yyj1171 := 0; ; yyj1171++ { + if yyhl1171 { + if yyj1171 >= l { break } } else { @@ -16184,10 +16232,10 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1166Slc = r.DecodeBytes(yys1166Slc, true, true) - yys1166 := string(yys1166Slc) + yys1171Slc = r.DecodeBytes(yys1171Slc, true, true) + yys1171 := string(yys1171Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1166 { + switch yys1171 { case "postStart": if r.TryDecodeAsNil() { if x.PostStart != nil { @@ -16211,9 +16259,9 @@ func (x *Lifecycle) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1166) - } // end switch yys1166 - } // end for yyj1166 + z.DecStructFieldNotFound(-1, yys1171) + } // end switch yys1171 + } // end for yyj1171 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16221,16 +16269,16 @@ func (x *Lifecycle) 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 yyj1174 int + var yyb1174 bool + var yyhl1174 bool = l >= 0 + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1169 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1169 { + if yyb1174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16245,13 +16293,13 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.PostStart.CodecDecodeSelf(d) } - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1169 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1169 { + if yyb1174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16267,17 +16315,17 @@ func (x *Lifecycle) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.PreStop.CodecDecodeSelf(d) } for { - yyj1169++ - if yyhl1169 { - yyb1169 = yyj1169 > l + yyj1174++ + if yyhl1174 { + yyb1174 = yyj1174 > l } else { - yyb1169 = r.CheckBreak() + yyb1174 = r.CheckBreak() } - if yyb1169 { + if yyb1174 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1169-1, "") + z.DecStructFieldNotFound(yyj1174-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16286,8 +16334,8 @@ func (x ConditionStatus) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1172 := z.EncBinary() - _ = yym1172 + yym1177 := z.EncBinary() + _ = yym1177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -16299,8 +16347,8 @@ func (x *ConditionStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1173 := z.DecBinary() - _ = yym1173 + yym1178 := z.DecBinary() + _ = yym1178 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -16315,36 +16363,36 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1174 := z.EncBinary() - _ = yym1174 + yym1179 := z.EncBinary() + _ = yym1179 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1175 := !z.EncBinary() - yy2arr1175 := z.EncBasicHandle().StructToArray - var yyq1175 [2]bool - _, _, _ = yysep1175, yyq1175, yy2arr1175 - const yyr1175 bool = false - yyq1175[0] = x.Reason != "" - yyq1175[1] = x.Message != "" - var yynn1175 int - if yyr1175 || yy2arr1175 { + yysep1180 := !z.EncBinary() + yy2arr1180 := z.EncBasicHandle().StructToArray + var yyq1180 [2]bool + _, _, _ = yysep1180, yyq1180, yy2arr1180 + const yyr1180 bool = false + yyq1180[0] = x.Reason != "" + yyq1180[1] = x.Message != "" + var yynn1180 int + if yyr1180 || yy2arr1180 { r.EncodeArrayStart(2) } else { - yynn1175 = 0 - for _, b := range yyq1175 { + yynn1180 = 0 + for _, b := range yyq1180 { if b { - yynn1175++ + yynn1180++ } } - r.EncodeMapStart(yynn1175) - yynn1175 = 0 + r.EncodeMapStart(yynn1180) + yynn1180 = 0 } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1175[0] { - yym1177 := z.EncBinary() - _ = yym1177 + if yyq1180[0] { + yym1182 := z.EncBinary() + _ = yym1182 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -16353,23 +16401,23 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1175[0] { + if yyq1180[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1178 := z.EncBinary() - _ = yym1178 + yym1183 := z.EncBinary() + _ = yym1183 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1175[1] { - yym1180 := z.EncBinary() - _ = yym1180 + if yyq1180[1] { + yym1185 := z.EncBinary() + _ = yym1185 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -16378,19 +16426,19 @@ func (x *ContainerStateWaiting) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1175[1] { + if yyq1180[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1181 := z.EncBinary() - _ = yym1181 + yym1186 := z.EncBinary() + _ = yym1186 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1175 || yy2arr1175 { + if yyr1180 || yy2arr1180 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16403,25 +16451,25 @@ func (x *ContainerStateWaiting) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1182 := z.DecBinary() - _ = yym1182 + yym1187 := z.DecBinary() + _ = yym1187 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1183 := r.ContainerType() - if yyct1183 == codecSelferValueTypeMap1234 { - yyl1183 := r.ReadMapStart() - if yyl1183 == 0 { + yyct1188 := r.ContainerType() + if yyct1188 == codecSelferValueTypeMap1234 { + yyl1188 := r.ReadMapStart() + if yyl1188 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1183, d) + x.codecDecodeSelfFromMap(yyl1188, d) } - } else if yyct1183 == codecSelferValueTypeArray1234 { - yyl1183 := r.ReadArrayStart() - if yyl1183 == 0 { + } else if yyct1188 == codecSelferValueTypeArray1234 { + yyl1188 := r.ReadArrayStart() + if yyl1188 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1183, d) + x.codecDecodeSelfFromArray(yyl1188, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16433,12 +16481,12 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1184Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1184Slc - var yyhl1184 bool = l >= 0 - for yyj1184 := 0; ; yyj1184++ { - if yyhl1184 { - if yyj1184 >= l { + var yys1189Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1189Slc + var yyhl1189 bool = l >= 0 + for yyj1189 := 0; ; yyj1189++ { + if yyhl1189 { + if yyj1189 >= l { break } } else { @@ -16447,10 +16495,10 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1184Slc = r.DecodeBytes(yys1184Slc, true, true) - yys1184 := string(yys1184Slc) + yys1189Slc = r.DecodeBytes(yys1189Slc, true, true) + yys1189 := string(yys1189Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1184 { + switch yys1189 { case "reason": if r.TryDecodeAsNil() { x.Reason = "" @@ -16464,9 +16512,9 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromMap(l int, d *codec1978.Decod x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1184) - } // end switch yys1184 - } // end for yyj1184 + z.DecStructFieldNotFound(-1, yys1189) + } // end switch yys1189 + } // end for yyj1189 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16474,16 +16522,16 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1187 int - var yyb1187 bool - var yyhl1187 bool = l >= 0 - yyj1187++ - if yyhl1187 { - yyb1187 = yyj1187 > l + var yyj1192 int + var yyb1192 bool + var yyhl1192 bool = l >= 0 + yyj1192++ + if yyhl1192 { + yyb1192 = yyj1192 > l } else { - yyb1187 = r.CheckBreak() + yyb1192 = r.CheckBreak() } - if yyb1187 { + if yyb1192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16493,13 +16541,13 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Reason = string(r.DecodeString()) } - yyj1187++ - if yyhl1187 { - yyb1187 = yyj1187 > l + yyj1192++ + if yyhl1192 { + yyb1192 = yyj1192 > l } else { - yyb1187 = r.CheckBreak() + yyb1192 = r.CheckBreak() } - if yyb1187 { + if yyb1192 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16510,17 +16558,17 @@ func (x *ContainerStateWaiting) codecDecodeSelfFromArray(l int, d *codec1978.Dec x.Message = string(r.DecodeString()) } for { - yyj1187++ - if yyhl1187 { - yyb1187 = yyj1187 > l + yyj1192++ + if yyhl1192 { + yyb1192 = yyj1192 > l } else { - yyb1187 = r.CheckBreak() + yyb1192 = r.CheckBreak() } - if yyb1187 { + if yyb1192 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1187-1, "") + z.DecStructFieldNotFound(yyj1192-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16532,68 +16580,68 @@ func (x *ContainerStateRunning) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1190 := z.EncBinary() - _ = yym1190 + yym1195 := z.EncBinary() + _ = yym1195 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1191 := !z.EncBinary() - yy2arr1191 := z.EncBasicHandle().StructToArray - var yyq1191 [1]bool - _, _, _ = yysep1191, yyq1191, yy2arr1191 - const yyr1191 bool = false - yyq1191[0] = true - var yynn1191 int - if yyr1191 || yy2arr1191 { + yysep1196 := !z.EncBinary() + yy2arr1196 := z.EncBasicHandle().StructToArray + var yyq1196 [1]bool + _, _, _ = yysep1196, yyq1196, yy2arr1196 + const yyr1196 bool = false + yyq1196[0] = true + var yynn1196 int + if yyr1196 || yy2arr1196 { r.EncodeArrayStart(1) } else { - yynn1191 = 0 - for _, b := range yyq1191 { + yynn1196 = 0 + for _, b := range yyq1196 { if b { - yynn1191++ + yynn1196++ } } - r.EncodeMapStart(yynn1191) - yynn1191 = 0 + r.EncodeMapStart(yynn1196) + yynn1196 = 0 } - if yyr1191 || yy2arr1191 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1191[0] { - yy1193 := &x.StartedAt - yym1194 := z.EncBinary() - _ = yym1194 + if yyq1196[0] { + yy1198 := &x.StartedAt + yym1199 := z.EncBinary() + _ = yym1199 if false { - } else if z.HasExtensions() && z.EncExt(yy1193) { - } else if yym1194 { - z.EncBinaryMarshal(yy1193) - } else if !yym1194 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1193) + } else if z.HasExtensions() && z.EncExt(yy1198) { + } else if yym1199 { + z.EncBinaryMarshal(yy1198) + } else if !yym1199 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1198) } else { - z.EncFallback(yy1193) + z.EncFallback(yy1198) } } else { r.EncodeNil() } } else { - if yyq1191[0] { + if yyq1196[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1195 := &x.StartedAt - yym1196 := z.EncBinary() - _ = yym1196 + yy1200 := &x.StartedAt + yym1201 := z.EncBinary() + _ = yym1201 if false { - } else if z.HasExtensions() && z.EncExt(yy1195) { - } else if yym1196 { - z.EncBinaryMarshal(yy1195) - } else if !yym1196 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1195) + } else if z.HasExtensions() && z.EncExt(yy1200) { + } else if yym1201 { + z.EncBinaryMarshal(yy1200) + } else if !yym1201 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1200) } else { - z.EncFallback(yy1195) + z.EncFallback(yy1200) } } } - if yyr1191 || yy2arr1191 { + if yyr1196 || yy2arr1196 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16606,25 +16654,25 @@ func (x *ContainerStateRunning) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1197 := z.DecBinary() - _ = yym1197 + yym1202 := z.DecBinary() + _ = yym1202 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1198 := r.ContainerType() - if yyct1198 == codecSelferValueTypeMap1234 { - yyl1198 := r.ReadMapStart() - if yyl1198 == 0 { + yyct1203 := r.ContainerType() + if yyct1203 == codecSelferValueTypeMap1234 { + yyl1203 := r.ReadMapStart() + if yyl1203 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1198, d) + x.codecDecodeSelfFromMap(yyl1203, d) } - } else if yyct1198 == codecSelferValueTypeArray1234 { - yyl1198 := r.ReadArrayStart() - if yyl1198 == 0 { + } else if yyct1203 == codecSelferValueTypeArray1234 { + yyl1203 := r.ReadArrayStart() + if yyl1203 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1198, d) + x.codecDecodeSelfFromArray(yyl1203, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -16636,12 +16684,12 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1199Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1199Slc - var yyhl1199 bool = l >= 0 - for yyj1199 := 0; ; yyj1199++ { - if yyhl1199 { - if yyj1199 >= l { + var yys1204Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1204Slc + var yyhl1204 bool = l >= 0 + for yyj1204 := 0; ; yyj1204++ { + if yyhl1204 { + if yyj1204 >= l { break } } else { @@ -16650,31 +16698,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1199Slc = r.DecodeBytes(yys1199Slc, true, true) - yys1199 := string(yys1199Slc) + yys1204Slc = r.DecodeBytes(yys1204Slc, true, true) + yys1204 := string(yys1204Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1199 { + switch yys1204 { case "startedAt": if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1200 := &x.StartedAt - yym1201 := z.DecBinary() - _ = yym1201 + yyv1205 := &x.StartedAt + yym1206 := z.DecBinary() + _ = yym1206 if false { - } else if z.HasExtensions() && z.DecExt(yyv1200) { - } else if yym1201 { - z.DecBinaryUnmarshal(yyv1200) - } else if !yym1201 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1200) + } else if z.HasExtensions() && z.DecExt(yyv1205) { + } else if yym1206 { + z.DecBinaryUnmarshal(yyv1205) + } else if !yym1206 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1205) } else { - z.DecFallback(yyv1200, false) + z.DecFallback(yyv1205, false) } } default: - z.DecStructFieldNotFound(-1, yys1199) - } // end switch yys1199 - } // end for yyj1199 + z.DecStructFieldNotFound(-1, yys1204) + } // end switch yys1204 + } // end for yyj1204 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -16682,16 +16730,16 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1202 int - var yyb1202 bool - var yyhl1202 bool = l >= 0 - yyj1202++ - if yyhl1202 { - yyb1202 = yyj1202 > l + var yyj1207 int + var yyb1207 bool + var yyhl1207 bool = l >= 0 + yyj1207++ + if yyhl1207 { + yyb1207 = yyj1207 > l } else { - yyb1202 = r.CheckBreak() + yyb1207 = r.CheckBreak() } - if yyb1202 { + if yyb1207 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -16699,31 +16747,31 @@ func (x *ContainerStateRunning) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1203 := &x.StartedAt - yym1204 := z.DecBinary() - _ = yym1204 + yyv1208 := &x.StartedAt + yym1209 := z.DecBinary() + _ = yym1209 if false { - } else if z.HasExtensions() && z.DecExt(yyv1203) { - } else if yym1204 { - z.DecBinaryUnmarshal(yyv1203) - } else if !yym1204 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1203) + } else if z.HasExtensions() && z.DecExt(yyv1208) { + } else if yym1209 { + z.DecBinaryUnmarshal(yyv1208) + } else if !yym1209 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1208) } else { - z.DecFallback(yyv1203, false) + z.DecFallback(yyv1208, false) } } for { - yyj1202++ - if yyhl1202 { - yyb1202 = yyj1202 > l + yyj1207++ + if yyhl1207 { + yyb1207 = yyj1207 > l } else { - yyb1202 = r.CheckBreak() + yyb1207 = r.CheckBreak() } - if yyb1202 { + if yyb1207 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1202-1, "") + z.DecStructFieldNotFound(yyj1207-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -16735,39 +16783,39 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1205 := z.EncBinary() - _ = yym1205 + yym1210 := z.EncBinary() + _ = yym1210 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1206 := !z.EncBinary() - yy2arr1206 := z.EncBasicHandle().StructToArray - var yyq1206 [7]bool - _, _, _ = yysep1206, yyq1206, yy2arr1206 - const yyr1206 bool = false - yyq1206[1] = x.Signal != 0 - yyq1206[2] = x.Reason != "" - yyq1206[3] = x.Message != "" - yyq1206[4] = true - yyq1206[5] = true - yyq1206[6] = x.ContainerID != "" - var yynn1206 int - if yyr1206 || yy2arr1206 { + yysep1211 := !z.EncBinary() + yy2arr1211 := z.EncBasicHandle().StructToArray + var yyq1211 [7]bool + _, _, _ = yysep1211, yyq1211, yy2arr1211 + const yyr1211 bool = false + yyq1211[1] = x.Signal != 0 + yyq1211[2] = x.Reason != "" + yyq1211[3] = x.Message != "" + yyq1211[4] = true + yyq1211[5] = true + yyq1211[6] = x.ContainerID != "" + var yynn1211 int + if yyr1211 || yy2arr1211 { r.EncodeArrayStart(7) } else { - yynn1206 = 1 - for _, b := range yyq1206 { + yynn1211 = 1 + for _, b := range yyq1211 { if b { - yynn1206++ + yynn1211++ } } - r.EncodeMapStart(yynn1206) - yynn1206 = 0 + r.EncodeMapStart(yynn1211) + yynn1211 = 0 } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1208 := z.EncBinary() - _ = yym1208 + yym1213 := z.EncBinary() + _ = yym1213 if false { } else { r.EncodeInt(int64(x.ExitCode)) @@ -16776,18 +16824,18 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("exitCode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1209 := z.EncBinary() - _ = yym1209 + yym1214 := z.EncBinary() + _ = yym1214 if false { } else { r.EncodeInt(int64(x.ExitCode)) } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[1] { - yym1211 := z.EncBinary() - _ = yym1211 + if yyq1211[1] { + yym1216 := z.EncBinary() + _ = yym1216 if false { } else { r.EncodeInt(int64(x.Signal)) @@ -16796,23 +16844,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1206[1] { + if yyq1211[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("signal")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1212 := z.EncBinary() - _ = yym1212 + yym1217 := z.EncBinary() + _ = yym1217 if false { } else { r.EncodeInt(int64(x.Signal)) } } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[2] { - yym1214 := z.EncBinary() - _ = yym1214 + if yyq1211[2] { + yym1219 := z.EncBinary() + _ = yym1219 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -16821,23 +16869,23 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1206[2] { + if yyq1211[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1215 := z.EncBinary() - _ = yym1215 + yym1220 := z.EncBinary() + _ = yym1220 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[3] { - yym1217 := z.EncBinary() - _ = yym1217 + if yyq1211[3] { + yym1222 := z.EncBinary() + _ = yym1222 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -16846,59 +16894,22 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1206[3] { + if yyq1211[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1218 := z.EncBinary() - _ = yym1218 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr1206 || yy2arr1206 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[4] { - yy1220 := &x.StartedAt - yym1221 := z.EncBinary() - _ = yym1221 - if false { - } else if z.HasExtensions() && z.EncExt(yy1220) { - } else if yym1221 { - z.EncBinaryMarshal(yy1220) - } else if !yym1221 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1220) - } else { - z.EncFallback(yy1220) - } - } else { - r.EncodeNil() - } - } else { - if yyq1206[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("startedAt")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1222 := &x.StartedAt yym1223 := z.EncBinary() _ = yym1223 if false { - } else if z.HasExtensions() && z.EncExt(yy1222) { - } else if yym1223 { - z.EncBinaryMarshal(yy1222) - } else if !yym1223 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1222) } else { - z.EncFallback(yy1222) + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[5] { - yy1225 := &x.FinishedAt + if yyq1211[4] { + yy1225 := &x.StartedAt yym1226 := z.EncBinary() _ = yym1226 if false { @@ -16914,11 +16925,11 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1206[5] { + if yyq1211[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + r.EncodeString(codecSelferC_UTF81234, string("startedAt")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1227 := &x.FinishedAt + yy1227 := &x.StartedAt yym1228 := z.EncBinary() _ = yym1228 if false { @@ -16932,11 +16943,48 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq1211[5] { + yy1230 := &x.FinishedAt + yym1231 := z.EncBinary() + _ = yym1231 + if false { + } else if z.HasExtensions() && z.EncExt(yy1230) { + } else if yym1231 { + z.EncBinaryMarshal(yy1230) + } else if !yym1231 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1230) + } else { + z.EncFallback(yy1230) + } + } else { + r.EncodeNil() + } + } else { + if yyq1211[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("finishedAt")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy1232 := &x.FinishedAt + yym1233 := z.EncBinary() + _ = yym1233 + if false { + } else if z.HasExtensions() && z.EncExt(yy1232) { + } else if yym1233 { + z.EncBinaryMarshal(yy1232) + } else if !yym1233 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1232) + } else { + z.EncFallback(yy1232) + } + } + } + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1206[6] { - yym1230 := z.EncBinary() - _ = yym1230 + if yyq1211[6] { + yym1235 := z.EncBinary() + _ = yym1235 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -16945,19 +16993,19 @@ func (x *ContainerStateTerminated) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1206[6] { + if yyq1211[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1231 := z.EncBinary() - _ = yym1231 + yym1236 := z.EncBinary() + _ = yym1236 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1206 || yy2arr1206 { + if yyr1211 || yy2arr1211 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -16970,25 +17018,25 @@ func (x *ContainerStateTerminated) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1232 := z.DecBinary() - _ = yym1232 + yym1237 := z.DecBinary() + _ = yym1237 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1233 := r.ContainerType() - if yyct1233 == codecSelferValueTypeMap1234 { - yyl1233 := r.ReadMapStart() - if yyl1233 == 0 { + yyct1238 := r.ContainerType() + if yyct1238 == codecSelferValueTypeMap1234 { + yyl1238 := r.ReadMapStart() + if yyl1238 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1233, d) + x.codecDecodeSelfFromMap(yyl1238, d) } - } else if yyct1233 == codecSelferValueTypeArray1234 { - yyl1233 := r.ReadArrayStart() - if yyl1233 == 0 { + } else if yyct1238 == codecSelferValueTypeArray1234 { + yyl1238 := r.ReadArrayStart() + if yyl1238 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1233, d) + x.codecDecodeSelfFromArray(yyl1238, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17000,12 +17048,12 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1234Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1234Slc - var yyhl1234 bool = l >= 0 - for yyj1234 := 0; ; yyj1234++ { - if yyhl1234 { - if yyj1234 >= l { + var yys1239Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1239Slc + var yyhl1239 bool = l >= 0 + for yyj1239 := 0; ; yyj1239++ { + if yyhl1239 { + if yyj1239 >= l { break } } else { @@ -17014,10 +17062,10 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1234Slc = r.DecodeBytes(yys1234Slc, true, true) - yys1234 := string(yys1234Slc) + yys1239Slc = r.DecodeBytes(yys1239Slc, true, true) + yys1239 := string(yys1239Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1234 { + switch yys1239 { case "exitCode": if r.TryDecodeAsNil() { x.ExitCode = 0 @@ -17046,34 +17094,34 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1239 := &x.StartedAt - yym1240 := z.DecBinary() - _ = yym1240 + yyv1244 := &x.StartedAt + yym1245 := z.DecBinary() + _ = yym1245 if false { - } else if z.HasExtensions() && z.DecExt(yyv1239) { - } else if yym1240 { - z.DecBinaryUnmarshal(yyv1239) - } else if !yym1240 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1239) + } else if z.HasExtensions() && z.DecExt(yyv1244) { + } else if yym1245 { + z.DecBinaryUnmarshal(yyv1244) + } else if !yym1245 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1244) } else { - z.DecFallback(yyv1239, false) + z.DecFallback(yyv1244, false) } } case "finishedAt": if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1241 := &x.FinishedAt - yym1242 := z.DecBinary() - _ = yym1242 + yyv1246 := &x.FinishedAt + yym1247 := z.DecBinary() + _ = yym1247 if false { - } else if z.HasExtensions() && z.DecExt(yyv1241) { - } else if yym1242 { - z.DecBinaryUnmarshal(yyv1241) - } else if !yym1242 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1241) + } else if z.HasExtensions() && z.DecExt(yyv1246) { + } else if yym1247 { + z.DecBinaryUnmarshal(yyv1246) + } else if !yym1247 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1246) } else { - z.DecFallback(yyv1241, false) + z.DecFallback(yyv1246, false) } } case "containerID": @@ -17083,9 +17131,9 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromMap(l int, d *codec1978.De x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1234) - } // end switch yys1234 - } // end for yyj1234 + z.DecStructFieldNotFound(-1, yys1239) + } // end switch yys1239 + } // end for yyj1239 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17093,16 +17141,16 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1244 int - var yyb1244 bool - var yyhl1244 bool = l >= 0 - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + var yyj1249 int + var yyb1249 bool + var yyhl1249 bool = l >= 0 + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17112,13 +17160,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.ExitCode = int32(r.DecodeInt(32)) } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17128,13 +17176,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Signal = int32(r.DecodeInt(32)) } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17144,13 +17192,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Reason = string(r.DecodeString()) } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17160,13 +17208,13 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. } else { x.Message = string(r.DecodeString()) } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17174,26 +17222,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.StartedAt = pkg2_unversioned.Time{} } else { - yyv1249 := &x.StartedAt - yym1250 := z.DecBinary() - _ = yym1250 + yyv1254 := &x.StartedAt + yym1255 := z.DecBinary() + _ = yym1255 if false { - } else if z.HasExtensions() && z.DecExt(yyv1249) { - } else if yym1250 { - z.DecBinaryUnmarshal(yyv1249) - } else if !yym1250 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1249) + } else if z.HasExtensions() && z.DecExt(yyv1254) { + } else if yym1255 { + z.DecBinaryUnmarshal(yyv1254) + } else if !yym1255 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1254) } else { - z.DecFallback(yyv1249, false) + z.DecFallback(yyv1254, false) } } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17201,26 +17249,26 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. if r.TryDecodeAsNil() { x.FinishedAt = pkg2_unversioned.Time{} } else { - yyv1251 := &x.FinishedAt - yym1252 := z.DecBinary() - _ = yym1252 + yyv1256 := &x.FinishedAt + yym1257 := z.DecBinary() + _ = yym1257 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(yyv1256) { + } else if yym1257 { + z.DecBinaryUnmarshal(yyv1256) + } else if !yym1257 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1256) } else { - z.DecFallback(yyv1251, false) + z.DecFallback(yyv1256, false) } } - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17231,17 +17279,17 @@ func (x *ContainerStateTerminated) codecDecodeSelfFromArray(l int, d *codec1978. x.ContainerID = string(r.DecodeString()) } for { - yyj1244++ - if yyhl1244 { - yyb1244 = yyj1244 > l + yyj1249++ + if yyhl1249 { + yyb1249 = yyj1249 > l } else { - yyb1244 = r.CheckBreak() + yyb1249 = r.CheckBreak() } - if yyb1244 { + if yyb1249 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1244-1, "") + z.DecStructFieldNotFound(yyj1249-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17253,35 +17301,35 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1254 := z.EncBinary() - _ = yym1254 + yym1259 := z.EncBinary() + _ = yym1259 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1255 := !z.EncBinary() - yy2arr1255 := z.EncBasicHandle().StructToArray - var yyq1255 [3]bool - _, _, _ = yysep1255, yyq1255, yy2arr1255 - const yyr1255 bool = false - yyq1255[0] = x.Waiting != nil - yyq1255[1] = x.Running != nil - yyq1255[2] = x.Terminated != nil - var yynn1255 int - if yyr1255 || yy2arr1255 { + yysep1260 := !z.EncBinary() + yy2arr1260 := z.EncBasicHandle().StructToArray + var yyq1260 [3]bool + _, _, _ = yysep1260, yyq1260, yy2arr1260 + const yyr1260 bool = false + yyq1260[0] = x.Waiting != nil + yyq1260[1] = x.Running != nil + yyq1260[2] = x.Terminated != nil + var yynn1260 int + if yyr1260 || yy2arr1260 { r.EncodeArrayStart(3) } else { - yynn1255 = 0 - for _, b := range yyq1255 { + yynn1260 = 0 + for _, b := range yyq1260 { if b { - yynn1255++ + yynn1260++ } } - r.EncodeMapStart(yynn1255) - yynn1255 = 0 + r.EncodeMapStart(yynn1260) + yynn1260 = 0 } - if yyr1255 || yy2arr1255 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1255[0] { + if yyq1260[0] { if x.Waiting == nil { r.EncodeNil() } else { @@ -17291,7 +17339,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1255[0] { + if yyq1260[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("waiting")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17302,9 +17350,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1255 || yy2arr1255 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1255[1] { + if yyq1260[1] { if x.Running == nil { r.EncodeNil() } else { @@ -17314,7 +17362,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1255[1] { + if yyq1260[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("running")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17325,9 +17373,9 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1255 || yy2arr1255 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1255[2] { + if yyq1260[2] { if x.Terminated == nil { r.EncodeNil() } else { @@ -17337,7 +17385,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1255[2] { + if yyq1260[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminated")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -17348,7 +17396,7 @@ func (x *ContainerState) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1255 || yy2arr1255 { + if yyr1260 || yy2arr1260 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17361,25 +17409,25 @@ func (x *ContainerState) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1259 := z.DecBinary() - _ = yym1259 + yym1264 := z.DecBinary() + _ = yym1264 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1260 := r.ContainerType() - if yyct1260 == codecSelferValueTypeMap1234 { - yyl1260 := r.ReadMapStart() - if yyl1260 == 0 { + yyct1265 := r.ContainerType() + if yyct1265 == codecSelferValueTypeMap1234 { + yyl1265 := r.ReadMapStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1260, d) + x.codecDecodeSelfFromMap(yyl1265, d) } - } else if yyct1260 == codecSelferValueTypeArray1234 { - yyl1260 := r.ReadArrayStart() - if yyl1260 == 0 { + } else if yyct1265 == codecSelferValueTypeArray1234 { + yyl1265 := r.ReadArrayStart() + if yyl1265 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1260, d) + x.codecDecodeSelfFromArray(yyl1265, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17391,12 +17439,12 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { 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 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 { @@ -17405,10 +17453,10 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1261Slc = r.DecodeBytes(yys1261Slc, true, true) - yys1261 := string(yys1261Slc) + yys1266Slc = r.DecodeBytes(yys1266Slc, true, true) + yys1266 := string(yys1266Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1261 { + switch yys1266 { case "waiting": if r.TryDecodeAsNil() { if x.Waiting != nil { @@ -17443,9 +17491,9 @@ func (x *ContainerState) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1261) - } // end switch yys1261 - } // end for yyj1261 + z.DecStructFieldNotFound(-1, yys1266) + } // end switch yys1266 + } // end for yyj1266 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17453,16 +17501,16 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1265 int - var yyb1265 bool - var yyhl1265 bool = l >= 0 - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + var yyj1270 int + var yyb1270 bool + var yyhl1270 bool = l >= 0 + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1265 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1265 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17477,13 +17525,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Waiting.CodecDecodeSelf(d) } - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1265 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1265 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17498,13 +17546,13 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Running.CodecDecodeSelf(d) } - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1265 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1265 { + if yyb1270 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17520,17 +17568,17 @@ func (x *ContainerState) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Terminated.CodecDecodeSelf(d) } for { - yyj1265++ - if yyhl1265 { - yyb1265 = yyj1265 > l + yyj1270++ + if yyhl1270 { + yyb1270 = yyj1270 > l } else { - yyb1265 = r.CheckBreak() + yyb1270 = r.CheckBreak() } - if yyb1265 { + if yyb1270 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1265-1, "") + z.DecStructFieldNotFound(yyj1270-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17542,36 +17590,36 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1269 := z.EncBinary() - _ = yym1269 + yym1274 := z.EncBinary() + _ = yym1274 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1270 := !z.EncBinary() - yy2arr1270 := z.EncBasicHandle().StructToArray - var yyq1270 [8]bool - _, _, _ = yysep1270, yyq1270, yy2arr1270 - const yyr1270 bool = false - yyq1270[1] = true - yyq1270[2] = true - yyq1270[7] = x.ContainerID != "" - var yynn1270 int - if yyr1270 || yy2arr1270 { + yysep1275 := !z.EncBinary() + yy2arr1275 := z.EncBasicHandle().StructToArray + var yyq1275 [8]bool + _, _, _ = yysep1275, yyq1275, yy2arr1275 + const yyr1275 bool = false + yyq1275[1] = true + yyq1275[2] = true + yyq1275[7] = x.ContainerID != "" + var yynn1275 int + if yyr1275 || yy2arr1275 { r.EncodeArrayStart(8) } else { - yynn1270 = 5 - for _, b := range yyq1270 { + yynn1275 = 5 + for _, b := range yyq1275 { if b { - yynn1270++ + yynn1275++ } } - r.EncodeMapStart(yynn1270) - yynn1270 = 0 + r.EncodeMapStart(yynn1275) + yynn1275 = 0 } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1272 := z.EncBinary() - _ = yym1272 + yym1277 := z.EncBinary() + _ = yym1277 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -17580,51 +17628,51 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1273 := z.EncBinary() - _ = yym1273 + yym1278 := z.EncBinary() + _ = yym1278 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1270[1] { - yy1275 := &x.State - yy1275.CodecEncodeSelf(e) + if yyq1275[1] { + yy1280 := &x.State + yy1280.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1270[1] { + if yyq1275[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("state")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1276 := &x.State - yy1276.CodecEncodeSelf(e) + yy1281 := &x.State + yy1281.CodecEncodeSelf(e) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1270[2] { - yy1278 := &x.LastTerminationState - yy1278.CodecEncodeSelf(e) + if yyq1275[2] { + yy1283 := &x.LastTerminationState + yy1283.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1270[2] { + if yyq1275[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastState")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1279 := &x.LastTerminationState - yy1279.CodecEncodeSelf(e) + yy1284 := &x.LastTerminationState + yy1284.CodecEncodeSelf(e) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1281 := z.EncBinary() - _ = yym1281 + yym1286 := z.EncBinary() + _ = yym1286 if false { } else { r.EncodeBool(bool(x.Ready)) @@ -17633,17 +17681,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ready")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1282 := z.EncBinary() - _ = yym1282 + yym1287 := z.EncBinary() + _ = yym1287 if false { } else { r.EncodeBool(bool(x.Ready)) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1284 := z.EncBinary() - _ = yym1284 + yym1289 := z.EncBinary() + _ = yym1289 if false { } else { r.EncodeInt(int64(x.RestartCount)) @@ -17652,17 +17700,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartCount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1285 := z.EncBinary() - _ = yym1285 + yym1290 := z.EncBinary() + _ = yym1290 if false { } else { r.EncodeInt(int64(x.RestartCount)) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1287 := z.EncBinary() - _ = yym1287 + yym1292 := z.EncBinary() + _ = yym1292 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) @@ -17671,17 +17719,17 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("image")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1288 := z.EncBinary() - _ = yym1288 + yym1293 := z.EncBinary() + _ = yym1293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Image)) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1290 := z.EncBinary() - _ = yym1290 + yym1295 := z.EncBinary() + _ = yym1295 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) @@ -17690,18 +17738,18 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imageID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1291 := z.EncBinary() - _ = yym1291 + yym1296 := z.EncBinary() + _ = yym1296 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ImageID)) } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1270[7] { - yym1293 := z.EncBinary() - _ = yym1293 + if yyq1275[7] { + yym1298 := z.EncBinary() + _ = yym1298 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) @@ -17710,19 +17758,19 @@ func (x *ContainerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1270[7] { + if yyq1275[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1294 := z.EncBinary() - _ = yym1294 + yym1299 := z.EncBinary() + _ = yym1299 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerID)) } } } - if yyr1270 || yy2arr1270 { + if yyr1275 || yy2arr1275 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -17735,25 +17783,25 @@ func (x *ContainerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1295 := z.DecBinary() - _ = yym1295 + yym1300 := z.DecBinary() + _ = yym1300 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1296 := r.ContainerType() - if yyct1296 == codecSelferValueTypeMap1234 { - yyl1296 := r.ReadMapStart() - if yyl1296 == 0 { + yyct1301 := r.ContainerType() + if yyct1301 == codecSelferValueTypeMap1234 { + yyl1301 := r.ReadMapStart() + if yyl1301 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1296, d) + x.codecDecodeSelfFromMap(yyl1301, d) } - } else if yyct1296 == codecSelferValueTypeArray1234 { - yyl1296 := r.ReadArrayStart() - if yyl1296 == 0 { + } else if yyct1301 == codecSelferValueTypeArray1234 { + yyl1301 := r.ReadArrayStart() + if yyl1301 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1296, d) + x.codecDecodeSelfFromArray(yyl1301, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -17765,12 +17813,12 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1297Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1297Slc - var yyhl1297 bool = l >= 0 - for yyj1297 := 0; ; yyj1297++ { - if yyhl1297 { - if yyj1297 >= l { + var yys1302Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1302Slc + var yyhl1302 bool = l >= 0 + for yyj1302 := 0; ; yyj1302++ { + if yyhl1302 { + if yyj1302 >= l { break } } else { @@ -17779,10 +17827,10 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1297Slc = r.DecodeBytes(yys1297Slc, true, true) - yys1297 := string(yys1297Slc) + yys1302Slc = r.DecodeBytes(yys1302Slc, true, true) + yys1302 := string(yys1302Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1297 { + switch yys1302 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -17793,15 +17841,15 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1299 := &x.State - yyv1299.CodecDecodeSelf(d) + yyv1304 := &x.State + yyv1304.CodecDecodeSelf(d) } case "lastState": if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1300 := &x.LastTerminationState - yyv1300.CodecDecodeSelf(d) + yyv1305 := &x.LastTerminationState + yyv1305.CodecDecodeSelf(d) } case "ready": if r.TryDecodeAsNil() { @@ -17834,9 +17882,9 @@ func (x *ContainerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ContainerID = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1297) - } // end switch yys1297 - } // end for yyj1297 + z.DecStructFieldNotFound(-1, yys1302) + } // end switch yys1302 + } // end for yyj1302 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -17844,16 +17892,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1306 int - var yyb1306 bool - var yyhl1306 bool = l >= 0 - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + var yyj1311 int + var yyb1311 bool + var yyhl1311 bool = l >= 0 + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17863,13 +17911,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17877,16 +17925,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.State = ContainerState{} } else { - yyv1308 := &x.State - yyv1308.CodecDecodeSelf(d) + yyv1313 := &x.State + yyv1313.CodecDecodeSelf(d) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17894,16 +17942,16 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.LastTerminationState = ContainerState{} } else { - yyv1309 := &x.LastTerminationState - yyv1309.CodecDecodeSelf(d) + yyv1314 := &x.LastTerminationState + yyv1314.CodecDecodeSelf(d) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17913,13 +17961,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Ready = bool(r.DecodeBool()) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17929,13 +17977,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.RestartCount = int32(r.DecodeInt(32)) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17945,13 +17993,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Image = string(r.DecodeString()) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17961,13 +18009,13 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ImageID = string(r.DecodeString()) } - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -17978,17 +18026,17 @@ func (x *ContainerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.ContainerID = string(r.DecodeString()) } for { - yyj1306++ - if yyhl1306 { - yyb1306 = yyj1306 > l + yyj1311++ + if yyhl1311 { + yyb1311 = yyj1311 > l } else { - yyb1306 = r.CheckBreak() + yyb1311 = r.CheckBreak() } - if yyb1306 { + if yyb1311 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1306-1, "") + z.DecStructFieldNotFound(yyj1311-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -17997,8 +18045,8 @@ func (x PodPhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1315 := z.EncBinary() - _ = yym1315 + yym1320 := z.EncBinary() + _ = yym1320 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18010,8 +18058,8 @@ func (x *PodPhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1316 := z.DecBinary() - _ = yym1316 + yym1321 := z.DecBinary() + _ = yym1321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18023,8 +18071,8 @@ func (x PodConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1317 := z.EncBinary() - _ = yym1317 + yym1322 := z.EncBinary() + _ = yym1322 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18036,8 +18084,8 @@ func (x *PodConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1318 := z.DecBinary() - _ = yym1318 + yym1323 := z.DecBinary() + _ = yym1323 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18052,34 +18100,34 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1319 := z.EncBinary() - _ = yym1319 + yym1324 := z.EncBinary() + _ = yym1324 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1320 := !z.EncBinary() - yy2arr1320 := z.EncBasicHandle().StructToArray - var yyq1320 [6]bool - _, _, _ = yysep1320, yyq1320, yy2arr1320 - const yyr1320 bool = false - yyq1320[2] = true - yyq1320[3] = true - yyq1320[4] = x.Reason != "" - yyq1320[5] = x.Message != "" - var yynn1320 int - if yyr1320 || yy2arr1320 { + yysep1325 := !z.EncBinary() + yy2arr1325 := z.EncBasicHandle().StructToArray + var yyq1325 [6]bool + _, _, _ = yysep1325, yyq1325, yy2arr1325 + const yyr1325 bool = false + yyq1325[2] = true + yyq1325[3] = true + yyq1325[4] = x.Reason != "" + yyq1325[5] = x.Message != "" + var yynn1325 int + if yyr1325 || yy2arr1325 { r.EncodeArrayStart(6) } else { - yynn1320 = 2 - for _, b := range yyq1320 { + yynn1325 = 2 + for _, b := range yyq1325 { if b { - yynn1320++ + yynn1325++ } } - r.EncodeMapStart(yynn1320) - yynn1320 = 0 + r.EncodeMapStart(yynn1325) + yynn1325 = 0 } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -18088,7 +18136,7 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -18097,85 +18145,85 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1320[2] { - yy1324 := &x.LastProbeTime - yym1325 := z.EncBinary() - _ = yym1325 + if yyq1325[2] { + yy1329 := &x.LastProbeTime + yym1330 := z.EncBinary() + _ = yym1330 if false { - } else if z.HasExtensions() && z.EncExt(yy1324) { - } else if yym1325 { - z.EncBinaryMarshal(yy1324) - } else if !yym1325 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1324) + } else if z.HasExtensions() && z.EncExt(yy1329) { + } else if yym1330 { + z.EncBinaryMarshal(yy1329) + } else if !yym1330 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1329) } else { - z.EncFallback(yy1324) + z.EncFallback(yy1329) } } else { r.EncodeNil() } } else { - if yyq1320[2] { + if yyq1325[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastProbeTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1326 := &x.LastProbeTime - yym1327 := z.EncBinary() - _ = yym1327 + yy1331 := &x.LastProbeTime + yym1332 := z.EncBinary() + _ = yym1332 if false { - } else if z.HasExtensions() && z.EncExt(yy1326) { - } else if yym1327 { - z.EncBinaryMarshal(yy1326) - } else if !yym1327 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1326) + } else if z.HasExtensions() && z.EncExt(yy1331) { + } else if yym1332 { + z.EncBinaryMarshal(yy1331) + } else if !yym1332 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1331) } else { - z.EncFallback(yy1326) + z.EncFallback(yy1331) } } } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1320[3] { - yy1329 := &x.LastTransitionTime - yym1330 := z.EncBinary() - _ = yym1330 + if yyq1325[3] { + yy1334 := &x.LastTransitionTime + yym1335 := z.EncBinary() + _ = yym1335 if false { - } else if z.HasExtensions() && z.EncExt(yy1329) { - } else if yym1330 { - z.EncBinaryMarshal(yy1329) - } else if !yym1330 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1329) + } else if z.HasExtensions() && z.EncExt(yy1334) { + } else if yym1335 { + z.EncBinaryMarshal(yy1334) + } else if !yym1335 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1334) } else { - z.EncFallback(yy1329) + z.EncFallback(yy1334) } } else { r.EncodeNil() } } else { - if yyq1320[3] { + if yyq1325[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1331 := &x.LastTransitionTime - yym1332 := z.EncBinary() - _ = yym1332 + yy1336 := &x.LastTransitionTime + yym1337 := z.EncBinary() + _ = yym1337 if false { - } else if z.HasExtensions() && z.EncExt(yy1331) { - } else if yym1332 { - z.EncBinaryMarshal(yy1331) - } else if !yym1332 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1331) + } else if z.HasExtensions() && z.EncExt(yy1336) { + } else if yym1337 { + z.EncBinaryMarshal(yy1336) + } else if !yym1337 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1336) } else { - z.EncFallback(yy1331) + z.EncFallback(yy1336) } } } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1320[4] { - yym1334 := z.EncBinary() - _ = yym1334 + if yyq1325[4] { + yym1339 := z.EncBinary() + _ = yym1339 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -18184,23 +18232,23 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1320[4] { + if yyq1325[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1335 := z.EncBinary() - _ = yym1335 + yym1340 := z.EncBinary() + _ = yym1340 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1320[5] { - yym1337 := z.EncBinary() - _ = yym1337 + if yyq1325[5] { + yym1342 := z.EncBinary() + _ = yym1342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -18209,19 +18257,19 @@ func (x *PodCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1320[5] { + if yyq1325[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1338 := z.EncBinary() - _ = yym1338 + yym1343 := z.EncBinary() + _ = yym1343 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1320 || yy2arr1320 { + if yyr1325 || yy2arr1325 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18234,25 +18282,25 @@ func (x *PodCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1339 := z.DecBinary() - _ = yym1339 + yym1344 := z.DecBinary() + _ = yym1344 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1340 := r.ContainerType() - if yyct1340 == codecSelferValueTypeMap1234 { - yyl1340 := r.ReadMapStart() - if yyl1340 == 0 { + yyct1345 := r.ContainerType() + if yyct1345 == codecSelferValueTypeMap1234 { + yyl1345 := r.ReadMapStart() + if yyl1345 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1340, d) + x.codecDecodeSelfFromMap(yyl1345, d) } - } else if yyct1340 == codecSelferValueTypeArray1234 { - yyl1340 := r.ReadArrayStart() - if yyl1340 == 0 { + } else if yyct1345 == codecSelferValueTypeArray1234 { + yyl1345 := r.ReadArrayStart() + if yyl1345 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1340, d) + x.codecDecodeSelfFromArray(yyl1345, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -18264,12 +18312,12 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1341Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1341Slc - var yyhl1341 bool = l >= 0 - for yyj1341 := 0; ; yyj1341++ { - if yyhl1341 { - if yyj1341 >= l { + var yys1346Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1346Slc + var yyhl1346 bool = l >= 0 + for yyj1346 := 0; ; yyj1346++ { + if yyhl1346 { + if yyj1346 >= l { break } } else { @@ -18278,10 +18326,10 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1341Slc = r.DecodeBytes(yys1341Slc, true, true) - yys1341 := string(yys1341Slc) + yys1346Slc = r.DecodeBytes(yys1346Slc, true, true) + yys1346 := string(yys1346Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1341 { + switch yys1346 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -18298,34 +18346,34 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1344 := &x.LastProbeTime - yym1345 := z.DecBinary() - _ = yym1345 + yyv1349 := &x.LastProbeTime + yym1350 := z.DecBinary() + _ = yym1350 if false { - } else if z.HasExtensions() && z.DecExt(yyv1344) { - } else if yym1345 { - z.DecBinaryUnmarshal(yyv1344) - } else if !yym1345 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1344) + } else if z.HasExtensions() && z.DecExt(yyv1349) { + } else if yym1350 { + z.DecBinaryUnmarshal(yyv1349) + } else if !yym1350 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1349) } else { - z.DecFallback(yyv1344, false) + z.DecFallback(yyv1349, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1346 := &x.LastTransitionTime - yym1347 := z.DecBinary() - _ = yym1347 + yyv1351 := &x.LastTransitionTime + yym1352 := z.DecBinary() + _ = yym1352 if false { - } else if z.HasExtensions() && z.DecExt(yyv1346) { - } else if yym1347 { - z.DecBinaryUnmarshal(yyv1346) - } else if !yym1347 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1346) + } else if z.HasExtensions() && z.DecExt(yyv1351) { + } else if yym1352 { + z.DecBinaryUnmarshal(yyv1351) + } else if !yym1352 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1351) } else { - z.DecFallback(yyv1346, false) + z.DecFallback(yyv1351, false) } } case "reason": @@ -18341,9 +18389,9 @@ func (x *PodCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1341) - } // end switch yys1341 - } // end for yyj1341 + z.DecStructFieldNotFound(-1, yys1346) + } // end switch yys1346 + } // end for yyj1346 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -18351,16 +18399,16 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1350 int - var yyb1350 bool - var yyhl1350 bool = l >= 0 - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + var yyj1355 int + var yyb1355 bool + var yyhl1355 bool = l >= 0 + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18370,13 +18418,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = PodConditionType(r.DecodeString()) } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18386,13 +18434,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18400,26 +18448,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastProbeTime = pkg2_unversioned.Time{} } else { - yyv1353 := &x.LastProbeTime - yym1354 := z.DecBinary() - _ = yym1354 + yyv1358 := &x.LastProbeTime + yym1359 := z.DecBinary() + _ = yym1359 if false { - } else if z.HasExtensions() && z.DecExt(yyv1353) { - } else if yym1354 { - z.DecBinaryUnmarshal(yyv1353) - } else if !yym1354 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1353) + } else if z.HasExtensions() && z.DecExt(yyv1358) { + } else if yym1359 { + z.DecBinaryUnmarshal(yyv1358) + } else if !yym1359 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1358) } else { - z.DecFallback(yyv1353, false) + z.DecFallback(yyv1358, false) } } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18427,26 +18475,26 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv1355 := &x.LastTransitionTime - yym1356 := z.DecBinary() - _ = yym1356 + yyv1360 := &x.LastTransitionTime + yym1361 := z.DecBinary() + _ = yym1361 if false { - } else if z.HasExtensions() && z.DecExt(yyv1355) { - } else if yym1356 { - z.DecBinaryUnmarshal(yyv1355) - } else if !yym1356 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1355) + } else if z.HasExtensions() && z.DecExt(yyv1360) { + } else if yym1361 { + z.DecBinaryUnmarshal(yyv1360) + } else if !yym1361 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1360) } else { - z.DecFallback(yyv1355, false) + z.DecFallback(yyv1360, false) } } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18456,13 +18504,13 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -18473,17 +18521,17 @@ func (x *PodCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj1350++ - if yyhl1350 { - yyb1350 = yyj1350 > l + yyj1355++ + if yyhl1355 { + yyb1355 = yyj1355 > l } else { - yyb1350 = r.CheckBreak() + yyb1355 = r.CheckBreak() } - if yyb1350 { + if yyb1355 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1350-1, "") + z.DecStructFieldNotFound(yyj1355-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -18492,8 +18540,8 @@ func (x RestartPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1359 := z.EncBinary() - _ = yym1359 + yym1364 := z.EncBinary() + _ = yym1364 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18505,8 +18553,8 @@ func (x *RestartPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1360 := z.DecBinary() - _ = yym1360 + yym1365 := z.DecBinary() + _ = yym1365 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18518,8 +18566,8 @@ func (x DNSPolicy) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1361 := z.EncBinary() - _ = yym1361 + yym1366 := z.EncBinary() + _ = yym1366 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -18531,8 +18579,8 @@ func (x *DNSPolicy) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1362 := z.DecBinary() - _ = yym1362 + yym1367 := z.DecBinary() + _ = yym1367 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -18547,51 +18595,51 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1363 := z.EncBinary() - _ = yym1363 + yym1368 := z.EncBinary() + _ = yym1368 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1364 := !z.EncBinary() - yy2arr1364 := z.EncBasicHandle().StructToArray - var yyq1364 [15]bool - _, _, _ = yysep1364, yyq1364, yy2arr1364 - const yyr1364 bool = false - yyq1364[0] = len(x.Volumes) != 0 - yyq1364[2] = x.RestartPolicy != "" - yyq1364[3] = x.TerminationGracePeriodSeconds != nil - yyq1364[4] = x.ActiveDeadlineSeconds != nil - yyq1364[5] = x.DNSPolicy != "" - yyq1364[6] = len(x.NodeSelector) != 0 - yyq1364[7] = x.ServiceAccountName != "" - yyq1364[8] = x.DeprecatedServiceAccount != "" - yyq1364[9] = x.NodeName != "" - yyq1364[10] = x.HostNetwork != false - yyq1364[11] = x.HostPID != false - yyq1364[12] = x.HostIPC != false - yyq1364[13] = x.SecurityContext != nil - yyq1364[14] = len(x.ImagePullSecrets) != 0 - var yynn1364 int - if yyr1364 || yy2arr1364 { + yysep1369 := !z.EncBinary() + yy2arr1369 := z.EncBasicHandle().StructToArray + var yyq1369 [15]bool + _, _, _ = yysep1369, yyq1369, yy2arr1369 + const yyr1369 bool = false + yyq1369[0] = len(x.Volumes) != 0 + yyq1369[2] = x.RestartPolicy != "" + yyq1369[3] = x.TerminationGracePeriodSeconds != nil + yyq1369[4] = x.ActiveDeadlineSeconds != nil + yyq1369[5] = x.DNSPolicy != "" + yyq1369[6] = len(x.NodeSelector) != 0 + yyq1369[7] = x.ServiceAccountName != "" + yyq1369[8] = x.DeprecatedServiceAccount != "" + yyq1369[9] = x.NodeName != "" + yyq1369[10] = x.HostNetwork != false + yyq1369[11] = x.HostPID != false + yyq1369[12] = x.HostIPC != false + yyq1369[13] = x.SecurityContext != nil + yyq1369[14] = len(x.ImagePullSecrets) != 0 + var yynn1369 int + if yyr1369 || yy2arr1369 { r.EncodeArrayStart(15) } else { - yynn1364 = 1 - for _, b := range yyq1364 { + yynn1369 = 1 + for _, b := range yyq1369 { if b { - yynn1364++ + yynn1369++ } } - r.EncodeMapStart(yynn1364) - yynn1364 = 0 + r.EncodeMapStart(yynn1369) + yynn1369 = 0 } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[0] { + if yyq1369[0] { if x.Volumes == nil { r.EncodeNil() } else { - yym1366 := z.EncBinary() - _ = yym1366 + yym1371 := z.EncBinary() + _ = yym1371 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -18601,15 +18649,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1364[0] { + if yyq1369[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Volumes == nil { r.EncodeNil() } else { - yym1367 := z.EncBinary() - _ = yym1367 + yym1372 := z.EncBinary() + _ = yym1372 if false { } else { h.encSliceVolume(([]Volume)(x.Volumes), e) @@ -18617,13 +18665,13 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Containers == nil { r.EncodeNil() } else { - yym1369 := z.EncBinary() - _ = yym1369 + yym1374 := z.EncBinary() + _ = yym1374 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) @@ -18636,122 +18684,122 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Containers == nil { r.EncodeNil() } else { - yym1370 := z.EncBinary() - _ = yym1370 + yym1375 := z.EncBinary() + _ = yym1375 if false { } else { h.encSliceContainer(([]Container)(x.Containers), e) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[2] { + if yyq1369[2] { x.RestartPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1364[2] { + if yyq1369[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("restartPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.RestartPolicy.CodecEncodeSelf(e) } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[3] { + if yyq1369[3] { if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1373 := *x.TerminationGracePeriodSeconds - yym1374 := z.EncBinary() - _ = yym1374 + yy1378 := *x.TerminationGracePeriodSeconds + yym1379 := z.EncBinary() + _ = yym1379 if false { } else { - r.EncodeInt(int64(yy1373)) + r.EncodeInt(int64(yy1378)) } } } else { r.EncodeNil() } } else { - if yyq1364[3] { + if yyq1369[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("terminationGracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TerminationGracePeriodSeconds == nil { r.EncodeNil() } else { - yy1375 := *x.TerminationGracePeriodSeconds - yym1376 := z.EncBinary() - _ = yym1376 + yy1380 := *x.TerminationGracePeriodSeconds + yym1381 := z.EncBinary() + _ = yym1381 if false { } else { - r.EncodeInt(int64(yy1375)) + r.EncodeInt(int64(yy1380)) } } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[4] { + if yyq1369[4] { if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1378 := *x.ActiveDeadlineSeconds - yym1379 := z.EncBinary() - _ = yym1379 + yy1383 := *x.ActiveDeadlineSeconds + yym1384 := z.EncBinary() + _ = yym1384 if false { } else { - r.EncodeInt(int64(yy1378)) + r.EncodeInt(int64(yy1383)) } } } else { r.EncodeNil() } } else { - if yyq1364[4] { + if yyq1369[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("activeDeadlineSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ActiveDeadlineSeconds == nil { r.EncodeNil() } else { - yy1380 := *x.ActiveDeadlineSeconds - yym1381 := z.EncBinary() - _ = yym1381 + yy1385 := *x.ActiveDeadlineSeconds + yym1386 := z.EncBinary() + _ = yym1386 if false { } else { - r.EncodeInt(int64(yy1380)) + r.EncodeInt(int64(yy1385)) } } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[5] { + if yyq1369[5] { x.DNSPolicy.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1364[5] { + if yyq1369[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("dnsPolicy")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.DNSPolicy.CodecEncodeSelf(e) } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[6] { + if yyq1369[6] { if x.NodeSelector == nil { r.EncodeNil() } else { - yym1384 := z.EncBinary() - _ = yym1384 + yym1389 := z.EncBinary() + _ = yym1389 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -18761,15 +18809,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1364[6] { + if yyq1369[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeSelector == nil { r.EncodeNil() } else { - yym1385 := z.EncBinary() - _ = yym1385 + yym1390 := z.EncBinary() + _ = yym1390 if false { } else { z.F.EncMapStringStringV(x.NodeSelector, false, e) @@ -18777,11 +18825,11 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[7] { - yym1387 := z.EncBinary() - _ = yym1387 + if yyq1369[7] { + yym1392 := z.EncBinary() + _ = yym1392 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) @@ -18790,23 +18838,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1364[7] { + if yyq1369[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccountName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1388 := z.EncBinary() - _ = yym1388 + yym1393 := z.EncBinary() + _ = yym1393 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ServiceAccountName)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[8] { - yym1390 := z.EncBinary() - _ = yym1390 + if yyq1369[8] { + yym1395 := z.EncBinary() + _ = yym1395 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) @@ -18815,23 +18863,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1364[8] { + if yyq1369[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("serviceAccount")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1391 := z.EncBinary() - _ = yym1391 + yym1396 := z.EncBinary() + _ = yym1396 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DeprecatedServiceAccount)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[9] { - yym1393 := z.EncBinary() - _ = yym1393 + if yyq1369[9] { + yym1398 := z.EncBinary() + _ = yym1398 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) @@ -18840,23 +18888,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1364[9] { + if yyq1369[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1394 := z.EncBinary() - _ = yym1394 + yym1399 := z.EncBinary() + _ = yym1399 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.NodeName)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[10] { - yym1396 := z.EncBinary() - _ = yym1396 + if yyq1369[10] { + yym1401 := z.EncBinary() + _ = yym1401 if false { } else { r.EncodeBool(bool(x.HostNetwork)) @@ -18865,23 +18913,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1364[10] { + if yyq1369[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostNetwork")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1397 := z.EncBinary() - _ = yym1397 + yym1402 := z.EncBinary() + _ = yym1402 if false { } else { r.EncodeBool(bool(x.HostNetwork)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[11] { - yym1399 := z.EncBinary() - _ = yym1399 + if yyq1369[11] { + yym1404 := z.EncBinary() + _ = yym1404 if false { } else { r.EncodeBool(bool(x.HostPID)) @@ -18890,23 +18938,23 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1364[11] { + if yyq1369[11] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostPID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1400 := z.EncBinary() - _ = yym1400 + yym1405 := z.EncBinary() + _ = yym1405 if false { } else { r.EncodeBool(bool(x.HostPID)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[12] { - yym1402 := z.EncBinary() - _ = yym1402 + if yyq1369[12] { + yym1407 := z.EncBinary() + _ = yym1407 if false { } else { r.EncodeBool(bool(x.HostIPC)) @@ -18915,21 +18963,21 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq1364[12] { + if yyq1369[12] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIPC")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1403 := z.EncBinary() - _ = yym1403 + yym1408 := z.EncBinary() + _ = yym1408 if false { } else { r.EncodeBool(bool(x.HostIPC)) } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[13] { + if yyq1369[13] { if x.SecurityContext == nil { r.EncodeNil() } else { @@ -18939,7 +18987,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1364[13] { + if yyq1369[13] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("securityContext")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -18950,14 +18998,14 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1364[14] { + if yyq1369[14] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1406 := z.EncBinary() - _ = yym1406 + yym1411 := z.EncBinary() + _ = yym1411 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -18967,15 +19015,15 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1364[14] { + if yyq1369[14] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym1407 := z.EncBinary() - _ = yym1407 + yym1412 := z.EncBinary() + _ = yym1412 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -18983,7 +19031,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1364 || yy2arr1364 { + if yyr1369 || yy2arr1369 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -18996,25 +19044,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1408 := z.DecBinary() - _ = yym1408 + yym1413 := z.DecBinary() + _ = yym1413 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1409 := r.ContainerType() - if yyct1409 == codecSelferValueTypeMap1234 { - yyl1409 := r.ReadMapStart() - if yyl1409 == 0 { + yyct1414 := r.ContainerType() + if yyct1414 == codecSelferValueTypeMap1234 { + yyl1414 := r.ReadMapStart() + if yyl1414 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1409, d) + x.codecDecodeSelfFromMap(yyl1414, d) } - } else if yyct1409 == codecSelferValueTypeArray1234 { - yyl1409 := r.ReadArrayStart() - if yyl1409 == 0 { + } else if yyct1414 == codecSelferValueTypeArray1234 { + yyl1414 := r.ReadArrayStart() + if yyl1414 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1409, d) + x.codecDecodeSelfFromArray(yyl1414, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19026,12 +19074,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1410Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1410Slc - var yyhl1410 bool = l >= 0 - for yyj1410 := 0; ; yyj1410++ { - if yyhl1410 { - if yyj1410 >= l { + var yys1415Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1415Slc + var yyhl1415 bool = l >= 0 + for yyj1415 := 0; ; yyj1415++ { + if yyhl1415 { + if yyj1415 >= l { break } } else { @@ -19040,32 +19088,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1410Slc = r.DecodeBytes(yys1410Slc, true, true) - yys1410 := string(yys1410Slc) + yys1415Slc = r.DecodeBytes(yys1415Slc, true, true) + yys1415 := string(yys1415Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1410 { + switch yys1415 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1411 := &x.Volumes - yym1412 := z.DecBinary() - _ = yym1412 + yyv1416 := &x.Volumes + yym1417 := z.DecBinary() + _ = yym1417 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1411), d) + h.decSliceVolume((*[]Volume)(yyv1416), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1413 := &x.Containers - yym1414 := z.DecBinary() - _ = yym1414 + yyv1418 := &x.Containers + yym1419 := z.DecBinary() + _ = yym1419 if false { } else { - h.decSliceContainer((*[]Container)(yyv1413), d) + h.decSliceContainer((*[]Container)(yyv1418), d) } } case "restartPolicy": @@ -19083,8 +19131,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1417 := z.DecBinary() - _ = yym1417 + yym1422 := z.DecBinary() + _ = yym1422 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -19099,8 +19147,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1419 := z.DecBinary() - _ = yym1419 + yym1424 := z.DecBinary() + _ = yym1424 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -19116,12 +19164,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1421 := &x.NodeSelector - yym1422 := z.DecBinary() - _ = yym1422 + yyv1426 := &x.NodeSelector + yym1427 := z.DecBinary() + _ = yym1427 if false { } else { - z.F.DecMapStringStringX(yyv1421, false, d) + z.F.DecMapStringStringX(yyv1426, false, d) } } case "serviceAccountName": @@ -19175,18 +19223,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1430 := &x.ImagePullSecrets - yym1431 := z.DecBinary() - _ = yym1431 + yyv1435 := &x.ImagePullSecrets + yym1436 := z.DecBinary() + _ = yym1436 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1430), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1435), d) } } default: - z.DecStructFieldNotFound(-1, yys1410) - } // end switch yys1410 - } // end for yyj1410 + z.DecStructFieldNotFound(-1, yys1415) + } // end switch yys1415 + } // end for yyj1415 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19194,16 +19242,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1432 int - var yyb1432 bool - var yyhl1432 bool = l >= 0 - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + var yyj1437 int + var yyb1437 bool + var yyhl1437 bool = l >= 0 + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19211,21 +19259,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv1433 := &x.Volumes - yym1434 := z.DecBinary() - _ = yym1434 + yyv1438 := &x.Volumes + yym1439 := z.DecBinary() + _ = yym1439 if false { } else { - h.decSliceVolume((*[]Volume)(yyv1433), d) + h.decSliceVolume((*[]Volume)(yyv1438), d) } } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19233,21 +19281,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv1435 := &x.Containers - yym1436 := z.DecBinary() - _ = yym1436 + yyv1440 := &x.Containers + yym1441 := z.DecBinary() + _ = yym1441 if false { } else { - h.decSliceContainer((*[]Container)(yyv1435), d) + h.decSliceContainer((*[]Container)(yyv1440), d) } } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19257,13 +19305,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19276,20 +19324,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym1439 := z.DecBinary() - _ = yym1439 + yym1444 := z.DecBinary() + _ = yym1444 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19302,20 +19350,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym1441 := z.DecBinary() - _ = yym1441 + yym1446 := z.DecBinary() + _ = yym1446 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19325,13 +19373,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19339,21 +19387,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv1443 := &x.NodeSelector - yym1444 := z.DecBinary() - _ = yym1444 + yyv1448 := &x.NodeSelector + yym1449 := z.DecBinary() + _ = yym1449 if false { } else { - z.F.DecMapStringStringX(yyv1443, false, d) + z.F.DecMapStringStringX(yyv1448, false, d) } } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19363,13 +19411,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19379,13 +19427,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19395,13 +19443,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19411,13 +19459,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19427,13 +19475,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19443,13 +19491,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19464,13 +19512,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19478,26 +19526,26 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv1452 := &x.ImagePullSecrets - yym1453 := z.DecBinary() - _ = yym1453 + yyv1457 := &x.ImagePullSecrets + yym1458 := z.DecBinary() + _ = yym1458 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1452), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv1457), d) } } for { - yyj1432++ - if yyhl1432 { - yyb1432 = yyj1432 > l + yyj1437++ + if yyhl1437 { + yyb1437 = yyj1437 > l } else { - yyb1432 = r.CheckBreak() + yyb1437 = r.CheckBreak() } - if yyb1432 { + if yyb1437 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1432-1, "") + z.DecStructFieldNotFound(yyj1437-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19509,37 +19557,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1454 := z.EncBinary() - _ = yym1454 + yym1459 := z.EncBinary() + _ = yym1459 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1455 := !z.EncBinary() - yy2arr1455 := z.EncBasicHandle().StructToArray - var yyq1455 [5]bool - _, _, _ = yysep1455, yyq1455, yy2arr1455 - const yyr1455 bool = false - yyq1455[0] = x.SELinuxOptions != nil - yyq1455[1] = x.RunAsUser != nil - yyq1455[2] = x.RunAsNonRoot != nil - yyq1455[3] = len(x.SupplementalGroups) != 0 - yyq1455[4] = x.FSGroup != nil - var yynn1455 int - if yyr1455 || yy2arr1455 { + yysep1460 := !z.EncBinary() + yy2arr1460 := z.EncBasicHandle().StructToArray + var yyq1460 [5]bool + _, _, _ = yysep1460, yyq1460, yy2arr1460 + const yyr1460 bool = false + yyq1460[0] = x.SELinuxOptions != nil + yyq1460[1] = x.RunAsUser != nil + yyq1460[2] = x.RunAsNonRoot != nil + yyq1460[3] = len(x.SupplementalGroups) != 0 + yyq1460[4] = x.FSGroup != nil + var yynn1460 int + if yyr1460 || yy2arr1460 { r.EncodeArrayStart(5) } else { - yynn1455 = 0 - for _, b := range yyq1455 { + yynn1460 = 0 + for _, b := range yyq1460 { if b { - yynn1455++ + yynn1460++ } } - r.EncodeMapStart(yynn1455) - yynn1455 = 0 + r.EncodeMapStart(yynn1460) + yynn1460 = 0 } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[0] { + if yyq1460[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -19549,7 +19597,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1455[0] { + if yyq1460[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -19560,84 +19608,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[1] { + if yyq1460[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy1458 := *x.RunAsUser - yym1459 := z.EncBinary() - _ = yym1459 + yy1463 := *x.RunAsUser + yym1464 := z.EncBinary() + _ = yym1464 if false { } else { - r.EncodeInt(int64(yy1458)) + r.EncodeInt(int64(yy1463)) } } } else { r.EncodeNil() } } else { - if yyq1455[1] { + if yyq1460[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy1460 := *x.RunAsUser - yym1461 := z.EncBinary() - _ = yym1461 + yy1465 := *x.RunAsUser + yym1466 := z.EncBinary() + _ = yym1466 if false { } else { - r.EncodeInt(int64(yy1460)) + r.EncodeInt(int64(yy1465)) } } } } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[2] { + if yyq1460[2] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1463 := *x.RunAsNonRoot - yym1464 := z.EncBinary() - _ = yym1464 + yy1468 := *x.RunAsNonRoot + yym1469 := z.EncBinary() + _ = yym1469 if false { } else { - r.EncodeBool(bool(yy1463)) + r.EncodeBool(bool(yy1468)) } } } else { r.EncodeNil() } } else { - if yyq1455[2] { + if yyq1460[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy1465 := *x.RunAsNonRoot - yym1466 := z.EncBinary() - _ = yym1466 + yy1470 := *x.RunAsNonRoot + yym1471 := z.EncBinary() + _ = yym1471 if false { } else { - r.EncodeBool(bool(yy1465)) + r.EncodeBool(bool(yy1470)) } } } } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[3] { + if yyq1460[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1468 := z.EncBinary() - _ = yym1468 + yym1473 := z.EncBinary() + _ = yym1473 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -19647,15 +19695,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1455[3] { + if yyq1460[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym1469 := z.EncBinary() - _ = yym1469 + yym1474 := z.EncBinary() + _ = yym1474 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -19663,42 +19711,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1455[4] { + if yyq1460[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy1471 := *x.FSGroup - yym1472 := z.EncBinary() - _ = yym1472 + yy1476 := *x.FSGroup + yym1477 := z.EncBinary() + _ = yym1477 if false { } else { - r.EncodeInt(int64(yy1471)) + r.EncodeInt(int64(yy1476)) } } } else { r.EncodeNil() } } else { - if yyq1455[4] { + if yyq1460[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy1473 := *x.FSGroup - yym1474 := z.EncBinary() - _ = yym1474 + yy1478 := *x.FSGroup + yym1479 := z.EncBinary() + _ = yym1479 if false { } else { - r.EncodeInt(int64(yy1473)) + r.EncodeInt(int64(yy1478)) } } } } - if yyr1455 || yy2arr1455 { + if yyr1460 || yy2arr1460 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -19711,25 +19759,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1475 := z.DecBinary() - _ = yym1475 + yym1480 := z.DecBinary() + _ = yym1480 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1476 := r.ContainerType() - if yyct1476 == codecSelferValueTypeMap1234 { - yyl1476 := r.ReadMapStart() - if yyl1476 == 0 { + yyct1481 := r.ContainerType() + if yyct1481 == codecSelferValueTypeMap1234 { + yyl1481 := r.ReadMapStart() + if yyl1481 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1476, d) + x.codecDecodeSelfFromMap(yyl1481, d) } - } else if yyct1476 == codecSelferValueTypeArray1234 { - yyl1476 := r.ReadArrayStart() - if yyl1476 == 0 { + } else if yyct1481 == codecSelferValueTypeArray1234 { + yyl1481 := r.ReadArrayStart() + if yyl1481 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1476, d) + x.codecDecodeSelfFromArray(yyl1481, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -19741,12 +19789,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1477Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1477Slc - var yyhl1477 bool = l >= 0 - for yyj1477 := 0; ; yyj1477++ { - if yyhl1477 { - if yyj1477 >= l { + var yys1482Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1482Slc + var yyhl1482 bool = l >= 0 + for yyj1482 := 0; ; yyj1482++ { + if yyhl1482 { + if yyj1482 >= l { break } } else { @@ -19755,10 +19803,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1477Slc = r.DecodeBytes(yys1477Slc, true, true) - yys1477 := string(yys1477Slc) + yys1482Slc = r.DecodeBytes(yys1482Slc, true, true) + yys1482 := string(yys1482Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1477 { + switch yys1482 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -19779,8 +19827,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1480 := z.DecBinary() - _ = yym1480 + yym1485 := z.DecBinary() + _ = yym1485 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -19795,8 +19843,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1482 := z.DecBinary() - _ = yym1482 + yym1487 := z.DecBinary() + _ = yym1487 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -19806,12 +19854,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1483 := &x.SupplementalGroups - yym1484 := z.DecBinary() - _ = yym1484 + yyv1488 := &x.SupplementalGroups + yym1489 := z.DecBinary() + _ = yym1489 if false { } else { - z.F.DecSliceInt64X(yyv1483, false, d) + z.F.DecSliceInt64X(yyv1488, false, d) } } case "fsGroup": @@ -19823,17 +19871,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1486 := z.DecBinary() - _ = yym1486 + yym1491 := z.DecBinary() + _ = yym1491 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys1477) - } // end switch yys1477 - } // end for yyj1477 + z.DecStructFieldNotFound(-1, yys1482) + } // end switch yys1482 + } // end for yyj1482 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -19841,16 +19889,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1487 int - var yyb1487 bool - var yyhl1487 bool = l >= 0 - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + var yyj1492 int + var yyb1492 bool + var yyhl1492 bool = l >= 0 + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19865,13 +19913,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19884,20 +19932,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym1490 := z.DecBinary() - _ = yym1490 + yym1495 := z.DecBinary() + _ = yym1495 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19910,20 +19958,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym1492 := z.DecBinary() - _ = yym1492 + yym1497 := z.DecBinary() + _ = yym1497 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19931,21 +19979,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv1493 := &x.SupplementalGroups - yym1494 := z.DecBinary() - _ = yym1494 + yyv1498 := &x.SupplementalGroups + yym1499 := z.DecBinary() + _ = yym1499 if false { } else { - z.F.DecSliceInt64X(yyv1493, false, d) + z.F.DecSliceInt64X(yyv1498, false, d) } } - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -19958,25 +20006,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym1496 := z.DecBinary() - _ = yym1496 + yym1501 := z.DecBinary() + _ = yym1501 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj1487++ - if yyhl1487 { - yyb1487 = yyj1487 > l + yyj1492++ + if yyhl1492 { + yyb1492 = yyj1492 > l } else { - yyb1487 = r.CheckBreak() + yyb1492 = r.CheckBreak() } - if yyb1487 { + if yyb1492 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1487-1, "") + z.DecStructFieldNotFound(yyj1492-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -19988,60 +20036,60 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1497 := z.EncBinary() - _ = yym1497 + yym1502 := z.EncBinary() + _ = yym1502 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1498 := !z.EncBinary() - yy2arr1498 := z.EncBasicHandle().StructToArray - var yyq1498 [8]bool - _, _, _ = yysep1498, yyq1498, yy2arr1498 - const yyr1498 bool = false - yyq1498[0] = x.Phase != "" - yyq1498[1] = len(x.Conditions) != 0 - yyq1498[2] = x.Message != "" - yyq1498[3] = x.Reason != "" - yyq1498[4] = x.HostIP != "" - yyq1498[5] = x.PodIP != "" - yyq1498[6] = x.StartTime != nil - yyq1498[7] = len(x.ContainerStatuses) != 0 - var yynn1498 int - if yyr1498 || yy2arr1498 { + yysep1503 := !z.EncBinary() + yy2arr1503 := z.EncBasicHandle().StructToArray + var yyq1503 [8]bool + _, _, _ = yysep1503, yyq1503, yy2arr1503 + const yyr1503 bool = false + yyq1503[0] = x.Phase != "" + yyq1503[1] = len(x.Conditions) != 0 + yyq1503[2] = x.Message != "" + yyq1503[3] = x.Reason != "" + yyq1503[4] = x.HostIP != "" + yyq1503[5] = x.PodIP != "" + yyq1503[6] = x.StartTime != nil + yyq1503[7] = len(x.ContainerStatuses) != 0 + var yynn1503 int + if yyr1503 || yy2arr1503 { r.EncodeArrayStart(8) } else { - yynn1498 = 0 - for _, b := range yyq1498 { + yynn1503 = 0 + for _, b := range yyq1503 { if b { - yynn1498++ + yynn1503++ } } - r.EncodeMapStart(yynn1498) - yynn1498 = 0 + r.EncodeMapStart(yynn1503) + yynn1503 = 0 } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[0] { + if yyq1503[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1498[0] { + if yyq1503[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[1] { + if yyq1503[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym1501 := z.EncBinary() - _ = yym1501 + yym1506 := z.EncBinary() + _ = yym1506 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -20051,15 +20099,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1498[1] { + if yyq1503[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym1502 := z.EncBinary() - _ = yym1502 + yym1507 := z.EncBinary() + _ = yym1507 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -20067,11 +20115,11 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[2] { - yym1504 := z.EncBinary() - _ = yym1504 + if yyq1503[2] { + yym1509 := z.EncBinary() + _ = yym1509 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -20080,23 +20128,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1498[2] { + if yyq1503[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1505 := z.EncBinary() - _ = yym1505 + yym1510 := z.EncBinary() + _ = yym1510 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[3] { - yym1507 := z.EncBinary() - _ = yym1507 + if yyq1503[3] { + yym1512 := z.EncBinary() + _ = yym1512 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -20105,23 +20153,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1498[3] { + if yyq1503[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1508 := z.EncBinary() - _ = yym1508 + yym1513 := z.EncBinary() + _ = yym1513 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[4] { - yym1510 := z.EncBinary() - _ = yym1510 + if yyq1503[4] { + yym1515 := z.EncBinary() + _ = yym1515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) @@ -20130,23 +20178,23 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1498[4] { + if yyq1503[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1511 := z.EncBinary() - _ = yym1511 + yym1516 := z.EncBinary() + _ = yym1516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[5] { - yym1513 := z.EncBinary() - _ = yym1513 + if yyq1503[5] { + yym1518 := z.EncBinary() + _ = yym1518 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -20155,31 +20203,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1498[5] { + if yyq1503[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1514 := z.EncBinary() - _ = yym1514 + yym1519 := z.EncBinary() + _ = yym1519 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[6] { + if yyq1503[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym1516 := z.EncBinary() - _ = yym1516 + yym1521 := z.EncBinary() + _ = yym1521 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1516 { + } else if yym1521 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1516 && z.IsJSONHandle() { + } else if !yym1521 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -20189,20 +20237,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1498[6] { + if yyq1503[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym1517 := z.EncBinary() - _ = yym1517 + yym1522 := z.EncBinary() + _ = yym1522 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym1517 { + } else if yym1522 { z.EncBinaryMarshal(x.StartTime) - } else if !yym1517 && z.IsJSONHandle() { + } else if !yym1522 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -20210,14 +20258,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1498[7] { + if yyq1503[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1519 := z.EncBinary() - _ = yym1519 + yym1524 := z.EncBinary() + _ = yym1524 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -20227,15 +20275,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1498[7] { + if yyq1503[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym1520 := z.EncBinary() - _ = yym1520 + yym1525 := z.EncBinary() + _ = yym1525 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -20243,7 +20291,7 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1498 || yy2arr1498 { + if yyr1503 || yy2arr1503 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20256,25 +20304,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1521 := z.DecBinary() - _ = yym1521 + yym1526 := z.DecBinary() + _ = yym1526 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1522 := r.ContainerType() - if yyct1522 == codecSelferValueTypeMap1234 { - yyl1522 := r.ReadMapStart() - if yyl1522 == 0 { + yyct1527 := r.ContainerType() + if yyct1527 == codecSelferValueTypeMap1234 { + yyl1527 := r.ReadMapStart() + if yyl1527 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1522, d) + x.codecDecodeSelfFromMap(yyl1527, d) } - } else if yyct1522 == codecSelferValueTypeArray1234 { - yyl1522 := r.ReadArrayStart() - if yyl1522 == 0 { + } else if yyct1527 == codecSelferValueTypeArray1234 { + yyl1527 := r.ReadArrayStart() + if yyl1527 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1522, d) + x.codecDecodeSelfFromArray(yyl1527, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20286,12 +20334,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1523Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1523Slc - var yyhl1523 bool = l >= 0 - for yyj1523 := 0; ; yyj1523++ { - if yyhl1523 { - if yyj1523 >= l { + var yys1528Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1528Slc + var yyhl1528 bool = l >= 0 + for yyj1528 := 0; ; yyj1528++ { + if yyhl1528 { + if yyj1528 >= l { break } } else { @@ -20300,10 +20348,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1523Slc = r.DecodeBytes(yys1523Slc, true, true) - yys1523 := string(yys1523Slc) + yys1528Slc = r.DecodeBytes(yys1528Slc, true, true) + yys1528 := string(yys1528Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1523 { + switch yys1528 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -20314,12 +20362,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1525 := &x.Conditions - yym1526 := z.DecBinary() - _ = yym1526 + yyv1530 := &x.Conditions + yym1531 := z.DecBinary() + _ = yym1531 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1525), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1530), d) } } case "message": @@ -20355,13 +20403,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1532 := z.DecBinary() - _ = yym1532 + yym1537 := z.DecBinary() + _ = yym1537 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1532 { + } else if yym1537 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1532 && z.IsJSONHandle() { + } else if !yym1537 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -20371,18 +20419,18 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1533 := &x.ContainerStatuses - yym1534 := z.DecBinary() - _ = yym1534 + yyv1538 := &x.ContainerStatuses + yym1539 := z.DecBinary() + _ = yym1539 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1533), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1538), d) } } default: - z.DecStructFieldNotFound(-1, yys1523) - } // end switch yys1523 - } // end for yyj1523 + z.DecStructFieldNotFound(-1, yys1528) + } // end switch yys1528 + } // end for yyj1528 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20390,16 +20438,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { 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 yyj1540 int + var yyb1540 bool + var yyhl1540 bool = l >= 0 + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20409,13 +20457,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20423,21 +20471,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv1537 := &x.Conditions - yym1538 := z.DecBinary() - _ = yym1538 + yyv1542 := &x.Conditions + yym1543 := z.DecBinary() + _ = yym1543 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv1537), d) + h.decSlicePodCondition((*[]PodCondition)(yyv1542), d) } } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20447,13 +20495,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20463,13 +20511,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20479,13 +20527,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20495,13 +20543,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20514,25 +20562,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_unversioned.Time) } - yym1544 := z.DecBinary() - _ = yym1544 + yym1549 := z.DecBinary() + _ = yym1549 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym1544 { + } else if yym1549 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym1544 && z.IsJSONHandle() { + } else if !yym1549 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20540,26 +20588,26 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv1545 := &x.ContainerStatuses - yym1546 := z.DecBinary() - _ = yym1546 + yyv1550 := &x.ContainerStatuses + yym1551 := z.DecBinary() + _ = yym1551 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv1545), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv1550), d) } } for { - yyj1535++ - if yyhl1535 { - yyb1535 = yyj1535 > l + yyj1540++ + if yyhl1540 { + yyb1540 = yyj1540 > l } else { - yyb1535 = r.CheckBreak() + yyb1540 = r.CheckBreak() } - if yyb1535 { + if yyb1540 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1535-1, "") + z.DecStructFieldNotFound(yyj1540-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20571,38 +20619,38 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1547 := z.EncBinary() - _ = yym1547 + yym1552 := z.EncBinary() + _ = yym1552 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1548 := !z.EncBinary() - yy2arr1548 := z.EncBasicHandle().StructToArray - var yyq1548 [4]bool - _, _, _ = yysep1548, yyq1548, yy2arr1548 - const yyr1548 bool = false - yyq1548[0] = x.Kind != "" - yyq1548[1] = x.APIVersion != "" - yyq1548[2] = true - yyq1548[3] = true - var yynn1548 int - if yyr1548 || yy2arr1548 { + yysep1553 := !z.EncBinary() + yy2arr1553 := z.EncBasicHandle().StructToArray + var yyq1553 [4]bool + _, _, _ = yysep1553, yyq1553, yy2arr1553 + const yyr1553 bool = false + yyq1553[0] = x.Kind != "" + yyq1553[1] = x.APIVersion != "" + yyq1553[2] = true + yyq1553[3] = true + var yynn1553 int + if yyr1553 || yy2arr1553 { r.EncodeArrayStart(4) } else { - yynn1548 = 0 - for _, b := range yyq1548 { + yynn1553 = 0 + for _, b := range yyq1553 { if b { - yynn1548++ + yynn1553++ } } - r.EncodeMapStart(yynn1548) - yynn1548 = 0 + r.EncodeMapStart(yynn1553) + yynn1553 = 0 } - if yyr1548 || yy2arr1548 { + if yyr1553 || yy2arr1553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[0] { - yym1550 := z.EncBinary() - _ = yym1550 + if yyq1553[0] { + yym1555 := z.EncBinary() + _ = yym1555 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -20611,23 +20659,23 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[0] { + if yyq1553[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1551 := z.EncBinary() - _ = yym1551 + yym1556 := z.EncBinary() + _ = yym1556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1548 || yy2arr1548 { + if yyr1553 || yy2arr1553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[1] { - yym1553 := z.EncBinary() - _ = yym1553 + if yyq1553[1] { + yym1558 := z.EncBinary() + _ = yym1558 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -20636,53 +20684,53 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1548[1] { + if yyq1553[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1554 := z.EncBinary() - _ = yym1554 + yym1559 := z.EncBinary() + _ = yym1559 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1548 || yy2arr1548 { + if yyr1553 || yy2arr1553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[2] { - yy1556 := &x.ObjectMeta - yy1556.CodecEncodeSelf(e) + if yyq1553[2] { + yy1561 := &x.ObjectMeta + yy1561.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1548[2] { + if yyq1553[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1557 := &x.ObjectMeta - yy1557.CodecEncodeSelf(e) + yy1562 := &x.ObjectMeta + yy1562.CodecEncodeSelf(e) } } - if yyr1548 || yy2arr1548 { + if yyr1553 || yy2arr1553 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1548[3] { - yy1559 := &x.Status - yy1559.CodecEncodeSelf(e) + if yyq1553[3] { + yy1564 := &x.Status + yy1564.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1548[3] { + if yyq1553[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1560 := &x.Status - yy1560.CodecEncodeSelf(e) + yy1565 := &x.Status + yy1565.CodecEncodeSelf(e) } } - if yyr1548 || yy2arr1548 { + if yyr1553 || yy2arr1553 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -20695,25 +20743,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1561 := z.DecBinary() - _ = yym1561 + yym1566 := z.DecBinary() + _ = yym1566 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1562 := r.ContainerType() - if yyct1562 == codecSelferValueTypeMap1234 { - yyl1562 := r.ReadMapStart() - if yyl1562 == 0 { + yyct1567 := r.ContainerType() + if yyct1567 == codecSelferValueTypeMap1234 { + yyl1567 := r.ReadMapStart() + if yyl1567 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1562, d) + x.codecDecodeSelfFromMap(yyl1567, d) } - } else if yyct1562 == codecSelferValueTypeArray1234 { - yyl1562 := r.ReadArrayStart() - if yyl1562 == 0 { + } else if yyct1567 == codecSelferValueTypeArray1234 { + yyl1567 := r.ReadArrayStart() + if yyl1567 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1562, d) + x.codecDecodeSelfFromArray(yyl1567, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -20725,12 +20773,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1563Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1563Slc - var yyhl1563 bool = l >= 0 - for yyj1563 := 0; ; yyj1563++ { - if yyhl1563 { - if yyj1563 >= l { + var yys1568Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1568Slc + var yyhl1568 bool = l >= 0 + for yyj1568 := 0; ; yyj1568++ { + if yyhl1568 { + if yyj1568 >= l { break } } else { @@ -20739,10 +20787,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1563Slc = r.DecodeBytes(yys1563Slc, true, true) - yys1563 := string(yys1563Slc) + yys1568Slc = r.DecodeBytes(yys1568Slc, true, true) + yys1568 := string(yys1568Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1563 { + switch yys1568 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -20759,20 +20807,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1566 := &x.ObjectMeta - yyv1566.CodecDecodeSelf(d) + yyv1571 := &x.ObjectMeta + yyv1571.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1567 := &x.Status - yyv1567.CodecDecodeSelf(d) + yyv1572 := &x.Status + yyv1572.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1563) - } // end switch yys1563 - } // end for yyj1563 + z.DecStructFieldNotFound(-1, yys1568) + } // end switch yys1568 + } // end for yyj1568 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -20780,16 +20828,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1568 int - var yyb1568 bool - var yyhl1568 bool = l >= 0 - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + var yyj1573 int + var yyb1573 bool + var yyhl1573 bool = l >= 0 + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1568 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1568 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20799,13 +20847,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1568 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1568 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20815,13 +20863,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1568 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1568 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20829,16 +20877,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1571 := &x.ObjectMeta - yyv1571.CodecDecodeSelf(d) + yyv1576 := &x.ObjectMeta + yyv1576.CodecDecodeSelf(d) } - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1568 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1568 { + if yyb1573 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -20846,21 +20894,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1572 := &x.Status - yyv1572.CodecDecodeSelf(d) + yyv1577 := &x.Status + yyv1577.CodecDecodeSelf(d) } for { - yyj1568++ - if yyhl1568 { - yyb1568 = yyj1568 > l + yyj1573++ + if yyhl1573 { + yyb1573 = yyj1573 > l } else { - yyb1568 = r.CheckBreak() + yyb1573 = r.CheckBreak() } - if yyb1568 { + if yyb1573 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1568-1, "") + z.DecStructFieldNotFound(yyj1573-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -20872,39 +20920,39 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1573 := z.EncBinary() - _ = yym1573 + yym1578 := z.EncBinary() + _ = yym1578 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1574 := !z.EncBinary() - yy2arr1574 := z.EncBasicHandle().StructToArray - var yyq1574 [5]bool - _, _, _ = yysep1574, yyq1574, yy2arr1574 - const yyr1574 bool = false - yyq1574[0] = x.Kind != "" - yyq1574[1] = x.APIVersion != "" - yyq1574[2] = true - yyq1574[3] = true - yyq1574[4] = true - var yynn1574 int - if yyr1574 || yy2arr1574 { + yysep1579 := !z.EncBinary() + yy2arr1579 := z.EncBasicHandle().StructToArray + var yyq1579 [5]bool + _, _, _ = yysep1579, yyq1579, yy2arr1579 + const yyr1579 bool = false + yyq1579[0] = x.Kind != "" + yyq1579[1] = x.APIVersion != "" + yyq1579[2] = true + yyq1579[3] = true + yyq1579[4] = true + var yynn1579 int + if yyr1579 || yy2arr1579 { r.EncodeArrayStart(5) } else { - yynn1574 = 0 - for _, b := range yyq1574 { + yynn1579 = 0 + for _, b := range yyq1579 { if b { - yynn1574++ + yynn1579++ } } - r.EncodeMapStart(yynn1574) - yynn1574 = 0 + r.EncodeMapStart(yynn1579) + yynn1579 = 0 } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[0] { - yym1576 := z.EncBinary() - _ = yym1576 + if yyq1579[0] { + yym1581 := z.EncBinary() + _ = yym1581 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -20913,23 +20961,23 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1574[0] { + if yyq1579[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1577 := z.EncBinary() - _ = yym1577 + yym1582 := z.EncBinary() + _ = yym1582 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[1] { - yym1579 := z.EncBinary() - _ = yym1579 + if yyq1579[1] { + yym1584 := z.EncBinary() + _ = yym1584 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -20938,70 +20986,70 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1574[1] { + if yyq1579[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1580 := z.EncBinary() - _ = yym1580 + yym1585 := z.EncBinary() + _ = yym1585 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[2] { - yy1582 := &x.ObjectMeta - yy1582.CodecEncodeSelf(e) + if yyq1579[2] { + yy1587 := &x.ObjectMeta + yy1587.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1574[2] { + if yyq1579[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1583 := &x.ObjectMeta - yy1583.CodecEncodeSelf(e) + yy1588 := &x.ObjectMeta + yy1588.CodecEncodeSelf(e) } } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[3] { - yy1585 := &x.Spec - yy1585.CodecEncodeSelf(e) + if yyq1579[3] { + yy1590 := &x.Spec + yy1590.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1574[3] { + if yyq1579[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1586 := &x.Spec - yy1586.CodecEncodeSelf(e) + yy1591 := &x.Spec + yy1591.CodecEncodeSelf(e) } } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1574[4] { - yy1588 := &x.Status - yy1588.CodecEncodeSelf(e) + if yyq1579[4] { + yy1593 := &x.Status + yy1593.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1574[4] { + if yyq1579[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1589 := &x.Status - yy1589.CodecEncodeSelf(e) + yy1594 := &x.Status + yy1594.CodecEncodeSelf(e) } } - if yyr1574 || yy2arr1574 { + if yyr1579 || yy2arr1579 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21014,25 +21062,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1590 := z.DecBinary() - _ = yym1590 + yym1595 := z.DecBinary() + _ = yym1595 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1591 := r.ContainerType() - if yyct1591 == codecSelferValueTypeMap1234 { - yyl1591 := r.ReadMapStart() - if yyl1591 == 0 { + yyct1596 := r.ContainerType() + if yyct1596 == codecSelferValueTypeMap1234 { + yyl1596 := r.ReadMapStart() + if yyl1596 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1591, d) + x.codecDecodeSelfFromMap(yyl1596, d) } - } else if yyct1591 == codecSelferValueTypeArray1234 { - yyl1591 := r.ReadArrayStart() - if yyl1591 == 0 { + } else if yyct1596 == codecSelferValueTypeArray1234 { + yyl1596 := r.ReadArrayStart() + if yyl1596 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1591, d) + x.codecDecodeSelfFromArray(yyl1596, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21044,12 +21092,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1592Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1592Slc - var yyhl1592 bool = l >= 0 - for yyj1592 := 0; ; yyj1592++ { - if yyhl1592 { - if yyj1592 >= l { + var yys1597Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1597Slc + var yyhl1597 bool = l >= 0 + for yyj1597 := 0; ; yyj1597++ { + if yyhl1597 { + if yyj1597 >= l { break } } else { @@ -21058,10 +21106,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1592Slc = r.DecodeBytes(yys1592Slc, true, true) - yys1592 := string(yys1592Slc) + yys1597Slc = r.DecodeBytes(yys1597Slc, true, true) + yys1597 := string(yys1597Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1592 { + switch yys1597 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21078,27 +21126,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1595 := &x.ObjectMeta - yyv1595.CodecDecodeSelf(d) + yyv1600 := &x.ObjectMeta + yyv1600.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1596 := &x.Spec - yyv1596.CodecDecodeSelf(d) + yyv1601 := &x.Spec + yyv1601.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1597 := &x.Status - yyv1597.CodecDecodeSelf(d) + yyv1602 := &x.Status + yyv1602.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1592) - } // end switch yys1592 - } // end for yyj1592 + z.DecStructFieldNotFound(-1, yys1597) + } // end switch yys1597 + } // end for yyj1597 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21106,16 +21154,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1598 int - var yyb1598 bool - var yyhl1598 bool = l >= 0 - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + var yyj1603 int + var yyb1603 bool + var yyhl1603 bool = l >= 0 + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21125,13 +21173,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21141,13 +21189,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21155,16 +21203,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1601 := &x.ObjectMeta - yyv1601.CodecDecodeSelf(d) + yyv1606 := &x.ObjectMeta + yyv1606.CodecDecodeSelf(d) } - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21172,16 +21220,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1602 := &x.Spec - yyv1602.CodecDecodeSelf(d) + yyv1607 := &x.Spec + yyv1607.CodecDecodeSelf(d) } - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21189,21 +21237,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv1603 := &x.Status - yyv1603.CodecDecodeSelf(d) + yyv1608 := &x.Status + yyv1608.CodecDecodeSelf(d) } for { - yyj1598++ - if yyhl1598 { - yyb1598 = yyj1598 > l + yyj1603++ + if yyhl1603 { + yyb1603 = yyj1603 > l } else { - yyb1598 = r.CheckBreak() + yyb1603 = r.CheckBreak() } - if yyb1598 { + if yyb1603 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1598-1, "") + z.DecStructFieldNotFound(yyj1603-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21215,37 +21263,37 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1604 := z.EncBinary() - _ = yym1604 + yym1609 := z.EncBinary() + _ = yym1609 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1605 := !z.EncBinary() - yy2arr1605 := z.EncBasicHandle().StructToArray - var yyq1605 [4]bool - _, _, _ = yysep1605, yyq1605, yy2arr1605 - const yyr1605 bool = false - yyq1605[0] = x.Kind != "" - yyq1605[1] = x.APIVersion != "" - yyq1605[2] = true - var yynn1605 int - if yyr1605 || yy2arr1605 { + yysep1610 := !z.EncBinary() + yy2arr1610 := z.EncBasicHandle().StructToArray + var yyq1610 [4]bool + _, _, _ = yysep1610, yyq1610, yy2arr1610 + const yyr1610 bool = false + yyq1610[0] = x.Kind != "" + yyq1610[1] = x.APIVersion != "" + yyq1610[2] = true + var yynn1610 int + if yyr1610 || yy2arr1610 { r.EncodeArrayStart(4) } else { - yynn1605 = 1 - for _, b := range yyq1605 { + yynn1610 = 1 + for _, b := range yyq1610 { if b { - yynn1605++ + yynn1610++ } } - r.EncodeMapStart(yynn1605) - yynn1605 = 0 + r.EncodeMapStart(yynn1610) + yynn1610 = 0 } - if yyr1605 || yy2arr1605 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[0] { - yym1607 := z.EncBinary() - _ = yym1607 + if yyq1610[0] { + yym1612 := z.EncBinary() + _ = yym1612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21254,23 +21302,23 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1605[0] { + if yyq1610[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1608 := z.EncBinary() - _ = yym1608 + yym1613 := z.EncBinary() + _ = yym1613 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1605 || yy2arr1605 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[1] { - yym1610 := z.EncBinary() - _ = yym1610 + if yyq1610[1] { + yym1615 := z.EncBinary() + _ = yym1615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21279,54 +21327,54 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1605[1] { + if yyq1610[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1611 := z.EncBinary() - _ = yym1611 + yym1616 := z.EncBinary() + _ = yym1616 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1605 || yy2arr1605 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1605[2] { - yy1613 := &x.ListMeta - yym1614 := z.EncBinary() - _ = yym1614 + if yyq1610[2] { + yy1618 := &x.ListMeta + yym1619 := z.EncBinary() + _ = yym1619 if false { - } else if z.HasExtensions() && z.EncExt(yy1613) { + } else if z.HasExtensions() && z.EncExt(yy1618) { } else { - z.EncFallback(yy1613) + z.EncFallback(yy1618) } } else { r.EncodeNil() } } else { - if yyq1605[2] { + if yyq1610[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1615 := &x.ListMeta - yym1616 := z.EncBinary() - _ = yym1616 + yy1620 := &x.ListMeta + yym1621 := z.EncBinary() + _ = yym1621 if false { - } else if z.HasExtensions() && z.EncExt(yy1615) { + } else if z.HasExtensions() && z.EncExt(yy1620) { } else { - z.EncFallback(yy1615) + z.EncFallback(yy1620) } } } - if yyr1605 || yy2arr1605 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1618 := z.EncBinary() - _ = yym1618 + yym1623 := z.EncBinary() + _ = yym1623 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -21339,15 +21387,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1619 := z.EncBinary() - _ = yym1619 + yym1624 := z.EncBinary() + _ = yym1624 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr1605 || yy2arr1605 { + if yyr1610 || yy2arr1610 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21360,25 +21408,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1620 := z.DecBinary() - _ = yym1620 + yym1625 := z.DecBinary() + _ = yym1625 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1621 := r.ContainerType() - if yyct1621 == codecSelferValueTypeMap1234 { - yyl1621 := r.ReadMapStart() - if yyl1621 == 0 { + yyct1626 := r.ContainerType() + if yyct1626 == codecSelferValueTypeMap1234 { + yyl1626 := r.ReadMapStart() + if yyl1626 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1621, d) + x.codecDecodeSelfFromMap(yyl1626, d) } - } else if yyct1621 == codecSelferValueTypeArray1234 { - yyl1621 := r.ReadArrayStart() - if yyl1621 == 0 { + } else if yyct1626 == codecSelferValueTypeArray1234 { + yyl1626 := r.ReadArrayStart() + if yyl1626 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1621, d) + x.codecDecodeSelfFromArray(yyl1626, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21390,12 +21438,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1622Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1622Slc - var yyhl1622 bool = l >= 0 - for yyj1622 := 0; ; yyj1622++ { - if yyhl1622 { - if yyj1622 >= l { + var yys1627Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1627Slc + var yyhl1627 bool = l >= 0 + for yyj1627 := 0; ; yyj1627++ { + if yyhl1627 { + if yyj1627 >= l { break } } else { @@ -21404,10 +21452,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1622Slc = r.DecodeBytes(yys1622Slc, true, true) - yys1622 := string(yys1622Slc) + yys1627Slc = r.DecodeBytes(yys1627Slc, true, true) + yys1627 := string(yys1627Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1622 { + switch yys1627 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21424,31 +21472,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1625 := &x.ListMeta - yym1626 := z.DecBinary() - _ = yym1626 + yyv1630 := &x.ListMeta + yym1631 := z.DecBinary() + _ = yym1631 if false { - } else if z.HasExtensions() && z.DecExt(yyv1625) { + } else if z.HasExtensions() && z.DecExt(yyv1630) { } else { - z.DecFallback(yyv1625, false) + z.DecFallback(yyv1630, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1627 := &x.Items - yym1628 := z.DecBinary() - _ = yym1628 + yyv1632 := &x.Items + yym1633 := z.DecBinary() + _ = yym1633 if false { } else { - h.decSlicePod((*[]Pod)(yyv1627), d) + h.decSlicePod((*[]Pod)(yyv1632), d) } } default: - z.DecStructFieldNotFound(-1, yys1622) - } // end switch yys1622 - } // end for yyj1622 + z.DecStructFieldNotFound(-1, yys1627) + } // end switch yys1627 + } // end for yyj1627 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21456,16 +21504,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1629 int - var yyb1629 bool - var yyhl1629 bool = l >= 0 - yyj1629++ - if yyhl1629 { - yyb1629 = yyj1629 > l + var yyj1634 int + var yyb1634 bool + var yyhl1634 bool = l >= 0 + yyj1634++ + if yyhl1634 { + yyb1634 = yyj1634 > l } else { - yyb1629 = r.CheckBreak() + yyb1634 = r.CheckBreak() } - if yyb1629 { + if yyb1634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21475,13 +21523,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1629++ - if yyhl1629 { - yyb1629 = yyj1629 > l + yyj1634++ + if yyhl1634 { + yyb1634 = yyj1634 > l } else { - yyb1629 = r.CheckBreak() + yyb1634 = r.CheckBreak() } - if yyb1629 { + if yyb1634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21491,13 +21539,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1629++ - if yyhl1629 { - yyb1629 = yyj1629 > l + yyj1634++ + if yyhl1634 { + yyb1634 = yyj1634 > l } else { - yyb1629 = r.CheckBreak() + yyb1634 = r.CheckBreak() } - if yyb1629 { + if yyb1634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21505,22 +21553,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1632 := &x.ListMeta - yym1633 := z.DecBinary() - _ = yym1633 + yyv1637 := &x.ListMeta + yym1638 := z.DecBinary() + _ = yym1638 if false { - } else if z.HasExtensions() && z.DecExt(yyv1632) { + } else if z.HasExtensions() && z.DecExt(yyv1637) { } else { - z.DecFallback(yyv1632, false) + z.DecFallback(yyv1637, false) } } - yyj1629++ - if yyhl1629 { - yyb1629 = yyj1629 > l + yyj1634++ + if yyhl1634 { + yyb1634 = yyj1634 > l } else { - yyb1629 = r.CheckBreak() + yyb1634 = r.CheckBreak() } - if yyb1629 { + if yyb1634 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21528,26 +21576,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1634 := &x.Items - yym1635 := z.DecBinary() - _ = yym1635 + yyv1639 := &x.Items + yym1640 := z.DecBinary() + _ = yym1640 if false { } else { - h.decSlicePod((*[]Pod)(yyv1634), d) + h.decSlicePod((*[]Pod)(yyv1639), d) } } for { - yyj1629++ - if yyhl1629 { - yyb1629 = yyj1629 > l + yyj1634++ + if yyhl1634 { + yyb1634 = yyj1634 > l } else { - yyb1629 = r.CheckBreak() + yyb1634 = r.CheckBreak() } - if yyb1629 { + if yyb1634 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1629-1, "") + z.DecStructFieldNotFound(yyj1634-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21559,66 +21607,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1636 := z.EncBinary() - _ = yym1636 + yym1641 := z.EncBinary() + _ = yym1641 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1637 := !z.EncBinary() - yy2arr1637 := z.EncBasicHandle().StructToArray - var yyq1637 [2]bool - _, _, _ = yysep1637, yyq1637, yy2arr1637 - const yyr1637 bool = false - yyq1637[0] = true - yyq1637[1] = true - var yynn1637 int - if yyr1637 || yy2arr1637 { + yysep1642 := !z.EncBinary() + yy2arr1642 := z.EncBasicHandle().StructToArray + var yyq1642 [2]bool + _, _, _ = yysep1642, yyq1642, yy2arr1642 + const yyr1642 bool = false + yyq1642[0] = true + yyq1642[1] = true + var yynn1642 int + if yyr1642 || yy2arr1642 { r.EncodeArrayStart(2) } else { - yynn1637 = 0 - for _, b := range yyq1637 { + yynn1642 = 0 + for _, b := range yyq1642 { if b { - yynn1637++ + yynn1642++ } } - r.EncodeMapStart(yynn1637) - yynn1637 = 0 + r.EncodeMapStart(yynn1642) + yynn1642 = 0 } - if yyr1637 || yy2arr1637 { + if yyr1642 || yy2arr1642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1637[0] { - yy1639 := &x.ObjectMeta - yy1639.CodecEncodeSelf(e) + if yyq1642[0] { + yy1644 := &x.ObjectMeta + yy1644.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1637[0] { + if yyq1642[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1640 := &x.ObjectMeta - yy1640.CodecEncodeSelf(e) + yy1645 := &x.ObjectMeta + yy1645.CodecEncodeSelf(e) } } - if yyr1637 || yy2arr1637 { + if yyr1642 || yy2arr1642 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1637[1] { - yy1642 := &x.Spec - yy1642.CodecEncodeSelf(e) + if yyq1642[1] { + yy1647 := &x.Spec + yy1647.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1637[1] { + if yyq1642[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1643 := &x.Spec - yy1643.CodecEncodeSelf(e) + yy1648 := &x.Spec + yy1648.CodecEncodeSelf(e) } } - if yyr1637 || yy2arr1637 { + if yyr1642 || yy2arr1642 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21631,25 +21679,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1644 := z.DecBinary() - _ = yym1644 + yym1649 := z.DecBinary() + _ = yym1649 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1645 := r.ContainerType() - if yyct1645 == codecSelferValueTypeMap1234 { - yyl1645 := r.ReadMapStart() - if yyl1645 == 0 { + yyct1650 := r.ContainerType() + if yyct1650 == codecSelferValueTypeMap1234 { + yyl1650 := r.ReadMapStart() + if yyl1650 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1645, d) + x.codecDecodeSelfFromMap(yyl1650, d) } - } else if yyct1645 == codecSelferValueTypeArray1234 { - yyl1645 := r.ReadArrayStart() - if yyl1645 == 0 { + } else if yyct1650 == codecSelferValueTypeArray1234 { + yyl1650 := r.ReadArrayStart() + if yyl1650 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1645, d) + x.codecDecodeSelfFromArray(yyl1650, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21661,12 +21709,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1646Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1646Slc - var yyhl1646 bool = l >= 0 - for yyj1646 := 0; ; yyj1646++ { - if yyhl1646 { - if yyj1646 >= l { + var yys1651Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1651Slc + var yyhl1651 bool = l >= 0 + for yyj1651 := 0; ; yyj1651++ { + if yyhl1651 { + if yyj1651 >= l { break } } else { @@ -21675,28 +21723,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1646Slc = r.DecodeBytes(yys1646Slc, true, true) - yys1646 := string(yys1646Slc) + yys1651Slc = r.DecodeBytes(yys1651Slc, true, true) + yys1651 := string(yys1651Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1646 { + switch yys1651 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1647 := &x.ObjectMeta - yyv1647.CodecDecodeSelf(d) + yyv1652 := &x.ObjectMeta + yyv1652.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1648 := &x.Spec - yyv1648.CodecDecodeSelf(d) + yyv1653 := &x.Spec + yyv1653.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1646) - } // end switch yys1646 - } // end for yyj1646 + z.DecStructFieldNotFound(-1, yys1651) + } // end switch yys1651 + } // end for yyj1651 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21704,16 +21752,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1649 int - var yyb1649 bool - var yyhl1649 bool = l >= 0 - yyj1649++ - if yyhl1649 { - yyb1649 = yyj1649 > l + var yyj1654 int + var yyb1654 bool + var yyhl1654 bool = l >= 0 + yyj1654++ + if yyhl1654 { + yyb1654 = yyj1654 > l } else { - yyb1649 = r.CheckBreak() + yyb1654 = r.CheckBreak() } - if yyb1649 { + if yyb1654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21721,16 +21769,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1650 := &x.ObjectMeta - yyv1650.CodecDecodeSelf(d) + yyv1655 := &x.ObjectMeta + yyv1655.CodecDecodeSelf(d) } - yyj1649++ - if yyhl1649 { - yyb1649 = yyj1649 > l + yyj1654++ + if yyhl1654 { + yyb1654 = yyj1654 > l } else { - yyb1649 = r.CheckBreak() + yyb1654 = r.CheckBreak() } - if yyb1649 { + if yyb1654 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21738,21 +21786,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv1651 := &x.Spec - yyv1651.CodecDecodeSelf(d) + yyv1656 := &x.Spec + yyv1656.CodecDecodeSelf(d) } for { - yyj1649++ - if yyhl1649 { - yyb1649 = yyj1649 > l + yyj1654++ + if yyhl1654 { + yyb1654 = yyj1654 > l } else { - yyb1649 = r.CheckBreak() + yyb1654 = r.CheckBreak() } - if yyb1649 { + if yyb1654 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1649-1, "") + z.DecStructFieldNotFound(yyj1654-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -21764,38 +21812,38 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1652 := z.EncBinary() - _ = yym1652 + yym1657 := z.EncBinary() + _ = yym1657 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 - yyq1653[3] = true - var yynn1653 int - if yyr1653 || yy2arr1653 { + yysep1658 := !z.EncBinary() + yy2arr1658 := z.EncBasicHandle().StructToArray + var yyq1658 [4]bool + _, _, _ = yysep1658, yyq1658, yy2arr1658 + const yyr1658 bool = false + yyq1658[0] = x.Kind != "" + yyq1658[1] = x.APIVersion != "" + yyq1658[2] = true + yyq1658[3] = true + var yynn1658 int + if yyr1658 || yy2arr1658 { r.EncodeArrayStart(4) } else { - yynn1653 = 0 - for _, b := range yyq1653 { + yynn1658 = 0 + for _, b := range yyq1658 { if b { - yynn1653++ + yynn1658++ } } - r.EncodeMapStart(yynn1653) - yynn1653 = 0 + r.EncodeMapStart(yynn1658) + yynn1658 = 0 } - if yyr1653 || yy2arr1653 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[0] { - yym1655 := z.EncBinary() - _ = yym1655 + if yyq1658[0] { + yym1660 := z.EncBinary() + _ = yym1660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -21804,23 +21852,23 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1653[0] { + if yyq1658[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1656 := z.EncBinary() - _ = yym1656 + yym1661 := z.EncBinary() + _ = yym1661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1653 || yy2arr1653 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[1] { - yym1658 := z.EncBinary() - _ = yym1658 + if yyq1658[1] { + yym1663 := z.EncBinary() + _ = yym1663 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -21829,53 +21877,53 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1653[1] { + if yyq1658[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1659 := z.EncBinary() - _ = yym1659 + yym1664 := z.EncBinary() + _ = yym1664 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1653 || yy2arr1653 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[2] { - yy1661 := &x.ObjectMeta - yy1661.CodecEncodeSelf(e) + if yyq1658[2] { + yy1666 := &x.ObjectMeta + yy1666.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1653[2] { + if yyq1658[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1662 := &x.ObjectMeta - yy1662.CodecEncodeSelf(e) + yy1667 := &x.ObjectMeta + yy1667.CodecEncodeSelf(e) } } - if yyr1653 || yy2arr1653 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1653[3] { - yy1664 := &x.Template - yy1664.CodecEncodeSelf(e) + if yyq1658[3] { + yy1669 := &x.Template + yy1669.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1653[3] { + if yyq1658[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1665 := &x.Template - yy1665.CodecEncodeSelf(e) + yy1670 := &x.Template + yy1670.CodecEncodeSelf(e) } } - if yyr1653 || yy2arr1653 { + if yyr1658 || yy2arr1658 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -21888,25 +21936,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1666 := z.DecBinary() - _ = yym1666 + yym1671 := z.DecBinary() + _ = yym1671 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1667 := r.ContainerType() - if yyct1667 == codecSelferValueTypeMap1234 { - yyl1667 := r.ReadMapStart() - if yyl1667 == 0 { + yyct1672 := r.ContainerType() + if yyct1672 == codecSelferValueTypeMap1234 { + yyl1672 := r.ReadMapStart() + if yyl1672 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1667, d) + x.codecDecodeSelfFromMap(yyl1672, d) } - } else if yyct1667 == codecSelferValueTypeArray1234 { - yyl1667 := r.ReadArrayStart() - if yyl1667 == 0 { + } else if yyct1672 == codecSelferValueTypeArray1234 { + yyl1672 := r.ReadArrayStart() + if yyl1672 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1667, d) + x.codecDecodeSelfFromArray(yyl1672, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -21918,12 +21966,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1668Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1668Slc - var yyhl1668 bool = l >= 0 - for yyj1668 := 0; ; yyj1668++ { - if yyhl1668 { - if yyj1668 >= l { + var yys1673Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1673Slc + var yyhl1673 bool = l >= 0 + for yyj1673 := 0; ; yyj1673++ { + if yyhl1673 { + if yyj1673 >= l { break } } else { @@ -21932,10 +21980,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1668Slc = r.DecodeBytes(yys1668Slc, true, true) - yys1668 := string(yys1668Slc) + yys1673Slc = r.DecodeBytes(yys1673Slc, true, true) + yys1673 := string(yys1673Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1668 { + switch yys1673 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -21952,20 +22000,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1671 := &x.ObjectMeta - yyv1671.CodecDecodeSelf(d) + yyv1676 := &x.ObjectMeta + yyv1676.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1672 := &x.Template - yyv1672.CodecDecodeSelf(d) + yyv1677 := &x.Template + yyv1677.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1668) - } // end switch yys1668 - } // end for yyj1668 + z.DecStructFieldNotFound(-1, yys1673) + } // end switch yys1673 + } // end for yyj1673 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -21973,16 +22021,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1673 int - var yyb1673 bool - var yyhl1673 bool = l >= 0 - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + var yyj1678 int + var yyb1678 bool + var yyhl1678 bool = l >= 0 + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -21992,13 +22040,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22008,13 +22056,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22022,16 +22070,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1676 := &x.ObjectMeta - yyv1676.CodecDecodeSelf(d) + yyv1681 := &x.ObjectMeta + yyv1681.CodecDecodeSelf(d) } - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22039,21 +22087,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv1677 := &x.Template - yyv1677.CodecDecodeSelf(d) + yyv1682 := &x.Template + yyv1682.CodecDecodeSelf(d) } for { - yyj1673++ - if yyhl1673 { - yyb1673 = yyj1673 > l + yyj1678++ + if yyhl1678 { + yyb1678 = yyj1678 > l } else { - yyb1673 = r.CheckBreak() + yyb1678 = r.CheckBreak() } - if yyb1673 { + if yyb1678 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1673-1, "") + z.DecStructFieldNotFound(yyj1678-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22065,37 +22113,37 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1678 := z.EncBinary() - _ = yym1678 + yym1683 := z.EncBinary() + _ = yym1683 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1679 := !z.EncBinary() - yy2arr1679 := z.EncBasicHandle().StructToArray - var yyq1679 [4]bool - _, _, _ = yysep1679, yyq1679, yy2arr1679 - const yyr1679 bool = false - yyq1679[0] = x.Kind != "" - yyq1679[1] = x.APIVersion != "" - yyq1679[2] = true - var yynn1679 int - if yyr1679 || yy2arr1679 { + yysep1684 := !z.EncBinary() + yy2arr1684 := z.EncBasicHandle().StructToArray + var yyq1684 [4]bool + _, _, _ = yysep1684, yyq1684, yy2arr1684 + const yyr1684 bool = false + yyq1684[0] = x.Kind != "" + yyq1684[1] = x.APIVersion != "" + yyq1684[2] = true + var yynn1684 int + if yyr1684 || yy2arr1684 { r.EncodeArrayStart(4) } else { - yynn1679 = 1 - for _, b := range yyq1679 { + yynn1684 = 1 + for _, b := range yyq1684 { if b { - yynn1679++ + yynn1684++ } } - r.EncodeMapStart(yynn1679) - yynn1679 = 0 + r.EncodeMapStart(yynn1684) + yynn1684 = 0 } - if yyr1679 || yy2arr1679 { + if yyr1684 || yy2arr1684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1679[0] { - yym1681 := z.EncBinary() - _ = yym1681 + if yyq1684[0] { + yym1686 := z.EncBinary() + _ = yym1686 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22104,23 +22152,23 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1679[0] { + if yyq1684[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1682 := z.EncBinary() - _ = yym1682 + yym1687 := z.EncBinary() + _ = yym1687 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1679 || yy2arr1679 { + if yyr1684 || yy2arr1684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1679[1] { - yym1684 := z.EncBinary() - _ = yym1684 + if yyq1684[1] { + yym1689 := z.EncBinary() + _ = yym1689 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -22129,54 +22177,54 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1679[1] { + if yyq1684[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1685 := z.EncBinary() - _ = yym1685 + yym1690 := z.EncBinary() + _ = yym1690 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1679 || yy2arr1679 { + if yyr1684 || yy2arr1684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1679[2] { - yy1687 := &x.ListMeta - yym1688 := z.EncBinary() - _ = yym1688 + if yyq1684[2] { + yy1692 := &x.ListMeta + yym1693 := z.EncBinary() + _ = yym1693 if false { - } else if z.HasExtensions() && z.EncExt(yy1687) { + } else if z.HasExtensions() && z.EncExt(yy1692) { } else { - z.EncFallback(yy1687) + z.EncFallback(yy1692) } } else { r.EncodeNil() } } else { - if yyq1679[2] { + if yyq1684[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1689 := &x.ListMeta - yym1690 := z.EncBinary() - _ = yym1690 + yy1694 := &x.ListMeta + yym1695 := z.EncBinary() + _ = yym1695 if false { - } else if z.HasExtensions() && z.EncExt(yy1689) { + } else if z.HasExtensions() && z.EncExt(yy1694) { } else { - z.EncFallback(yy1689) + z.EncFallback(yy1694) } } } - if yyr1679 || yy2arr1679 { + if yyr1684 || yy2arr1684 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1692 := z.EncBinary() - _ = yym1692 + yym1697 := z.EncBinary() + _ = yym1697 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -22189,15 +22237,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1693 := z.EncBinary() - _ = yym1693 + yym1698 := z.EncBinary() + _ = yym1698 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr1679 || yy2arr1679 { + if yyr1684 || yy2arr1684 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22210,25 +22258,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1694 := z.DecBinary() - _ = yym1694 + yym1699 := z.DecBinary() + _ = yym1699 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1695 := r.ContainerType() - if yyct1695 == codecSelferValueTypeMap1234 { - yyl1695 := r.ReadMapStart() - if yyl1695 == 0 { + yyct1700 := r.ContainerType() + if yyct1700 == codecSelferValueTypeMap1234 { + yyl1700 := r.ReadMapStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1695, d) + x.codecDecodeSelfFromMap(yyl1700, d) } - } else if yyct1695 == codecSelferValueTypeArray1234 { - yyl1695 := r.ReadArrayStart() - if yyl1695 == 0 { + } else if yyct1700 == codecSelferValueTypeArray1234 { + yyl1700 := r.ReadArrayStart() + if yyl1700 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1695, d) + x.codecDecodeSelfFromArray(yyl1700, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22240,12 +22288,12 @@ func (x *PodTemplateList) 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 yys1701Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1701Slc + var yyhl1701 bool = l >= 0 + for yyj1701 := 0; ; yyj1701++ { + if yyhl1701 { + if yyj1701 >= l { break } } else { @@ -22254,10 +22302,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1696Slc = r.DecodeBytes(yys1696Slc, true, true) - yys1696 := string(yys1696Slc) + yys1701Slc = r.DecodeBytes(yys1701Slc, true, true) + yys1701 := string(yys1701Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1696 { + switch yys1701 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -22274,31 +22322,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1699 := &x.ListMeta - yym1700 := z.DecBinary() - _ = yym1700 + yyv1704 := &x.ListMeta + yym1705 := z.DecBinary() + _ = yym1705 if false { - } else if z.HasExtensions() && z.DecExt(yyv1699) { + } else if z.HasExtensions() && z.DecExt(yyv1704) { } else { - z.DecFallback(yyv1699, false) + z.DecFallback(yyv1704, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1701 := &x.Items - yym1702 := z.DecBinary() - _ = yym1702 + yyv1706 := &x.Items + yym1707 := z.DecBinary() + _ = yym1707 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1701), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1706), d) } } default: - z.DecStructFieldNotFound(-1, yys1696) - } // end switch yys1696 - } // end for yyj1696 + z.DecStructFieldNotFound(-1, yys1701) + } // end switch yys1701 + } // end for yyj1701 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22306,16 +22354,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1703 int - var yyb1703 bool - var yyhl1703 bool = l >= 0 - yyj1703++ - if yyhl1703 { - yyb1703 = yyj1703 > l + var yyj1708 int + var yyb1708 bool + var yyhl1708 bool = l >= 0 + yyj1708++ + if yyhl1708 { + yyb1708 = yyj1708 > l } else { - yyb1703 = r.CheckBreak() + yyb1708 = r.CheckBreak() } - if yyb1703 { + if yyb1708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22325,13 +22373,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj1703++ - if yyhl1703 { - yyb1703 = yyj1703 > l + yyj1708++ + if yyhl1708 { + yyb1708 = yyj1708 > l } else { - yyb1703 = r.CheckBreak() + yyb1708 = r.CheckBreak() } - if yyb1703 { + if yyb1708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22341,13 +22389,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj1703++ - if yyhl1703 { - yyb1703 = yyj1703 > l + yyj1708++ + if yyhl1708 { + yyb1708 = yyj1708 > l } else { - yyb1703 = r.CheckBreak() + yyb1708 = r.CheckBreak() } - if yyb1703 { + if yyb1708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22355,22 +22403,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1706 := &x.ListMeta - yym1707 := z.DecBinary() - _ = yym1707 + yyv1711 := &x.ListMeta + yym1712 := z.DecBinary() + _ = yym1712 if false { - } else if z.HasExtensions() && z.DecExt(yyv1706) { + } else if z.HasExtensions() && z.DecExt(yyv1711) { } else { - z.DecFallback(yyv1706, false) + z.DecFallback(yyv1711, false) } } - yyj1703++ - if yyhl1703 { - yyb1703 = yyj1703 > l + yyj1708++ + if yyhl1708 { + yyb1708 = yyj1708 > l } else { - yyb1703 = r.CheckBreak() + yyb1708 = r.CheckBreak() } - if yyb1703 { + if yyb1708 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22378,26 +22426,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1708 := &x.Items - yym1709 := z.DecBinary() - _ = yym1709 + yyv1713 := &x.Items + yym1714 := z.DecBinary() + _ = yym1714 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv1708), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv1713), d) } } for { - yyj1703++ - if yyhl1703 { - yyb1703 = yyj1703 > l + yyj1708++ + if yyhl1708 { + yyb1708 = yyj1708 > l } else { - yyb1703 = r.CheckBreak() + yyb1708 = r.CheckBreak() } - if yyb1703 { + if yyb1708 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1703-1, "") + z.DecStructFieldNotFound(yyj1708-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22409,75 +22457,75 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1710 := z.EncBinary() - _ = yym1710 + yym1715 := z.EncBinary() + _ = yym1715 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1711 := !z.EncBinary() - yy2arr1711 := z.EncBasicHandle().StructToArray - var yyq1711 [3]bool - _, _, _ = yysep1711, yyq1711, yy2arr1711 - const yyr1711 bool = false - yyq1711[0] = x.Replicas != nil - yyq1711[1] = len(x.Selector) != 0 - yyq1711[2] = x.Template != nil - var yynn1711 int - if yyr1711 || yy2arr1711 { + yysep1716 := !z.EncBinary() + yy2arr1716 := z.EncBasicHandle().StructToArray + var yyq1716 [3]bool + _, _, _ = yysep1716, yyq1716, yy2arr1716 + const yyr1716 bool = false + yyq1716[0] = x.Replicas != nil + yyq1716[1] = len(x.Selector) != 0 + yyq1716[2] = x.Template != nil + var yynn1716 int + if yyr1716 || yy2arr1716 { r.EncodeArrayStart(3) } else { - yynn1711 = 0 - for _, b := range yyq1711 { + yynn1716 = 0 + for _, b := range yyq1716 { if b { - yynn1711++ + yynn1716++ } } - r.EncodeMapStart(yynn1711) - yynn1711 = 0 + r.EncodeMapStart(yynn1716) + yynn1716 = 0 } - if yyr1711 || yy2arr1711 { + if yyr1716 || yy2arr1716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1711[0] { + if yyq1716[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy1713 := *x.Replicas - yym1714 := z.EncBinary() - _ = yym1714 + yy1718 := *x.Replicas + yym1719 := z.EncBinary() + _ = yym1719 if false { } else { - r.EncodeInt(int64(yy1713)) + r.EncodeInt(int64(yy1718)) } } } else { r.EncodeNil() } } else { - if yyq1711[0] { + if yyq1716[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy1715 := *x.Replicas - yym1716 := z.EncBinary() - _ = yym1716 + yy1720 := *x.Replicas + yym1721 := z.EncBinary() + _ = yym1721 if false { } else { - r.EncodeInt(int64(yy1715)) + r.EncodeInt(int64(yy1720)) } } } } - if yyr1711 || yy2arr1711 { + if yyr1716 || yy2arr1716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1711[1] { + if yyq1716[1] { if x.Selector == nil { r.EncodeNil() } else { - yym1718 := z.EncBinary() - _ = yym1718 + yym1723 := z.EncBinary() + _ = yym1723 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -22487,15 +22535,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1711[1] { + if yyq1716[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1719 := z.EncBinary() - _ = yym1719 + yym1724 := z.EncBinary() + _ = yym1724 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -22503,9 +22551,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1711 || yy2arr1711 { + if yyr1716 || yy2arr1716 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1711[2] { + if yyq1716[2] { if x.Template == nil { r.EncodeNil() } else { @@ -22515,7 +22563,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1711[2] { + if yyq1716[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -22526,7 +22574,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1711 || yy2arr1711 { + if yyr1716 || yy2arr1716 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22539,25 +22587,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1721 := z.DecBinary() - _ = yym1721 + yym1726 := z.DecBinary() + _ = yym1726 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1722 := r.ContainerType() - if yyct1722 == codecSelferValueTypeMap1234 { - yyl1722 := r.ReadMapStart() - if yyl1722 == 0 { + yyct1727 := r.ContainerType() + if yyct1727 == codecSelferValueTypeMap1234 { + yyl1727 := r.ReadMapStart() + if yyl1727 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1722, d) + x.codecDecodeSelfFromMap(yyl1727, d) } - } else if yyct1722 == codecSelferValueTypeArray1234 { - yyl1722 := r.ReadArrayStart() - if yyl1722 == 0 { + } else if yyct1727 == codecSelferValueTypeArray1234 { + yyl1727 := r.ReadArrayStart() + if yyl1727 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1722, d) + x.codecDecodeSelfFromArray(yyl1727, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22569,12 +22617,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1723Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1723Slc - var yyhl1723 bool = l >= 0 - for yyj1723 := 0; ; yyj1723++ { - if yyhl1723 { - if yyj1723 >= l { + var yys1728Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1728Slc + var yyhl1728 bool = l >= 0 + for yyj1728 := 0; ; yyj1728++ { + if yyhl1728 { + if yyj1728 >= l { break } } else { @@ -22583,10 +22631,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1723Slc = r.DecodeBytes(yys1723Slc, true, true) - yys1723 := string(yys1723Slc) + yys1728Slc = r.DecodeBytes(yys1728Slc, true, true) + yys1728 := string(yys1728Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1723 { + switch yys1728 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -22596,8 +22644,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym1725 := z.DecBinary() - _ = yym1725 + yym1730 := z.DecBinary() + _ = yym1730 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -22607,12 +22655,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1726 := &x.Selector - yym1727 := z.DecBinary() - _ = yym1727 + yyv1731 := &x.Selector + yym1732 := z.DecBinary() + _ = yym1732 if false { } else { - z.F.DecMapStringStringX(yyv1726, false, d) + z.F.DecMapStringStringX(yyv1731, false, d) } } case "template": @@ -22627,9 +22675,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1723) - } // end switch yys1723 - } // end for yyj1723 + z.DecStructFieldNotFound(-1, yys1728) + } // end switch yys1728 + } // end for yyj1728 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22637,16 +22685,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1729 int - var yyb1729 bool - var yyhl1729 bool = l >= 0 - yyj1729++ - if yyhl1729 { - yyb1729 = yyj1729 > l + var yyj1734 int + var yyb1734 bool + var yyhl1734 bool = l >= 0 + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1729 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1729 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22659,20 +22707,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym1731 := z.DecBinary() - _ = yym1731 + yym1736 := z.DecBinary() + _ = yym1736 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj1729++ - if yyhl1729 { - yyb1729 = yyj1729 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1729 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1729 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22680,21 +22728,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1732 := &x.Selector - yym1733 := z.DecBinary() - _ = yym1733 + yyv1737 := &x.Selector + yym1738 := z.DecBinary() + _ = yym1738 if false { } else { - z.F.DecMapStringStringX(yyv1732, false, d) + z.F.DecMapStringStringX(yyv1737, false, d) } } - yyj1729++ - if yyhl1729 { - yyb1729 = yyj1729 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1729 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1729 { + if yyb1734 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22710,17 +22758,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj1729++ - if yyhl1729 { - yyb1729 = yyj1729 > l + yyj1734++ + if yyhl1734 { + yyb1734 = yyj1734 > l } else { - yyb1729 = r.CheckBreak() + yyb1734 = r.CheckBreak() } - if yyb1729 { + if yyb1734 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1729-1, "") + z.DecStructFieldNotFound(yyj1734-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22732,34 +22780,34 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1735 := z.EncBinary() - _ = yym1735 + yym1740 := z.EncBinary() + _ = yym1740 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1736 := !z.EncBinary() - yy2arr1736 := z.EncBasicHandle().StructToArray - var yyq1736 [2]bool - _, _, _ = yysep1736, yyq1736, yy2arr1736 - const yyr1736 bool = false - yyq1736[1] = x.ObservedGeneration != 0 - var yynn1736 int - if yyr1736 || yy2arr1736 { + yysep1741 := !z.EncBinary() + yy2arr1741 := z.EncBasicHandle().StructToArray + var yyq1741 [2]bool + _, _, _ = yysep1741, yyq1741, yy2arr1741 + const yyr1741 bool = false + yyq1741[1] = x.ObservedGeneration != 0 + var yynn1741 int + if yyr1741 || yy2arr1741 { r.EncodeArrayStart(2) } else { - yynn1736 = 1 - for _, b := range yyq1736 { + yynn1741 = 1 + for _, b := range yyq1741 { if b { - yynn1736++ + yynn1741++ } } - r.EncodeMapStart(yynn1736) - yynn1736 = 0 + r.EncodeMapStart(yynn1741) + yynn1741 = 0 } - if yyr1736 || yy2arr1736 { + if yyr1741 || yy2arr1741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1738 := z.EncBinary() - _ = yym1738 + yym1743 := z.EncBinary() + _ = yym1743 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -22768,18 +22816,18 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1739 := z.EncBinary() - _ = yym1739 + yym1744 := z.EncBinary() + _ = yym1744 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr1736 || yy2arr1736 { + if yyr1741 || yy2arr1741 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1736[1] { - yym1741 := z.EncBinary() - _ = yym1741 + if yyq1741[1] { + yym1746 := z.EncBinary() + _ = yym1746 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -22788,19 +22836,19 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1736[1] { + if yyq1741[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1742 := z.EncBinary() - _ = yym1742 + yym1747 := z.EncBinary() + _ = yym1747 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr1736 || yy2arr1736 { + if yyr1741 || yy2arr1741 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -22813,25 +22861,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1743 := z.DecBinary() - _ = yym1743 + yym1748 := z.DecBinary() + _ = yym1748 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1744 := r.ContainerType() - if yyct1744 == codecSelferValueTypeMap1234 { - yyl1744 := r.ReadMapStart() - if yyl1744 == 0 { + yyct1749 := r.ContainerType() + if yyct1749 == codecSelferValueTypeMap1234 { + yyl1749 := r.ReadMapStart() + if yyl1749 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1744, d) + x.codecDecodeSelfFromMap(yyl1749, d) } - } else if yyct1744 == codecSelferValueTypeArray1234 { - yyl1744 := r.ReadArrayStart() - if yyl1744 == 0 { + } else if yyct1749 == codecSelferValueTypeArray1234 { + yyl1749 := r.ReadArrayStart() + if yyl1749 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1744, d) + x.codecDecodeSelfFromArray(yyl1749, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -22843,12 +22891,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1745Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1745Slc - var yyhl1745 bool = l >= 0 - for yyj1745 := 0; ; yyj1745++ { - if yyhl1745 { - if yyj1745 >= l { + var yys1750Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1750Slc + var yyhl1750 bool = l >= 0 + for yyj1750 := 0; ; yyj1750++ { + if yyhl1750 { + if yyj1750 >= l { break } } else { @@ -22857,10 +22905,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1745Slc = r.DecodeBytes(yys1745Slc, true, true) - yys1745 := string(yys1745Slc) + yys1750Slc = r.DecodeBytes(yys1750Slc, true, true) + yys1750 := string(yys1750Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1745 { + switch yys1750 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -22874,9 +22922,9 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 x.ObservedGeneration = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys1745) - } // end switch yys1745 - } // end for yyj1745 + z.DecStructFieldNotFound(-1, yys1750) + } // end switch yys1750 + } // end for yyj1750 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -22884,16 +22932,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1748 int - var yyb1748 bool - var yyhl1748 bool = l >= 0 - yyj1748++ - if yyhl1748 { - yyb1748 = yyj1748 > l + var yyj1753 int + var yyb1753 bool + var yyhl1753 bool = l >= 0 + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1748 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1748 { + if yyb1753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22903,13 +22951,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj1748++ - if yyhl1748 { - yyb1748 = yyj1748 > l + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1748 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1748 { + if yyb1753 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -22920,17 +22968,17 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 x.ObservedGeneration = int64(r.DecodeInt(64)) } for { - yyj1748++ - if yyhl1748 { - yyb1748 = yyj1748 > l + yyj1753++ + if yyhl1753 { + yyb1753 = yyj1753 > l } else { - yyb1748 = r.CheckBreak() + yyb1753 = r.CheckBreak() } - if yyb1748 { + if yyb1753 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1748-1, "") + z.DecStructFieldNotFound(yyj1753-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -22942,39 +22990,39 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1751 := z.EncBinary() - _ = yym1751 + yym1756 := z.EncBinary() + _ = yym1756 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1752 := !z.EncBinary() - yy2arr1752 := z.EncBasicHandle().StructToArray - var yyq1752 [5]bool - _, _, _ = yysep1752, yyq1752, yy2arr1752 - const yyr1752 bool = false - yyq1752[0] = x.Kind != "" - yyq1752[1] = x.APIVersion != "" - yyq1752[2] = true - yyq1752[3] = true - yyq1752[4] = true - var yynn1752 int - if yyr1752 || yy2arr1752 { + yysep1757 := !z.EncBinary() + yy2arr1757 := z.EncBasicHandle().StructToArray + var yyq1757 [5]bool + _, _, _ = yysep1757, yyq1757, yy2arr1757 + const yyr1757 bool = false + yyq1757[0] = x.Kind != "" + yyq1757[1] = x.APIVersion != "" + yyq1757[2] = true + yyq1757[3] = true + yyq1757[4] = true + var yynn1757 int + if yyr1757 || yy2arr1757 { r.EncodeArrayStart(5) } else { - yynn1752 = 0 - for _, b := range yyq1752 { + yynn1757 = 0 + for _, b := range yyq1757 { if b { - yynn1752++ + yynn1757++ } } - r.EncodeMapStart(yynn1752) - yynn1752 = 0 + r.EncodeMapStart(yynn1757) + yynn1757 = 0 } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1752[0] { - yym1754 := z.EncBinary() - _ = yym1754 + if yyq1757[0] { + yym1759 := z.EncBinary() + _ = yym1759 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -22983,23 +23031,23 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1752[0] { + if yyq1757[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1755 := z.EncBinary() - _ = yym1755 + yym1760 := z.EncBinary() + _ = yym1760 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1752[1] { - yym1757 := z.EncBinary() - _ = yym1757 + if yyq1757[1] { + yym1762 := z.EncBinary() + _ = yym1762 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23008,70 +23056,70 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1752[1] { + if yyq1757[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1758 := z.EncBinary() - _ = yym1758 + yym1763 := z.EncBinary() + _ = yym1763 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1752[2] { - yy1760 := &x.ObjectMeta - yy1760.CodecEncodeSelf(e) + if yyq1757[2] { + yy1765 := &x.ObjectMeta + yy1765.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1752[2] { + if yyq1757[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1761 := &x.ObjectMeta - yy1761.CodecEncodeSelf(e) + yy1766 := &x.ObjectMeta + yy1766.CodecEncodeSelf(e) } } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1752[3] { - yy1763 := &x.Spec - yy1763.CodecEncodeSelf(e) + if yyq1757[3] { + yy1768 := &x.Spec + yy1768.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1752[3] { + if yyq1757[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1764 := &x.Spec - yy1764.CodecEncodeSelf(e) + yy1769 := &x.Spec + yy1769.CodecEncodeSelf(e) } } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1752[4] { - yy1766 := &x.Status - yy1766.CodecEncodeSelf(e) + if yyq1757[4] { + yy1771 := &x.Status + yy1771.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1752[4] { + if yyq1757[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1767 := &x.Status - yy1767.CodecEncodeSelf(e) + yy1772 := &x.Status + yy1772.CodecEncodeSelf(e) } } - if yyr1752 || yy2arr1752 { + if yyr1757 || yy2arr1757 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23084,25 +23132,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1768 := z.DecBinary() - _ = yym1768 + yym1773 := z.DecBinary() + _ = yym1773 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1769 := r.ContainerType() - if yyct1769 == codecSelferValueTypeMap1234 { - yyl1769 := r.ReadMapStart() - if yyl1769 == 0 { + yyct1774 := r.ContainerType() + if yyct1774 == codecSelferValueTypeMap1234 { + yyl1774 := r.ReadMapStart() + if yyl1774 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1769, d) + x.codecDecodeSelfFromMap(yyl1774, d) } - } else if yyct1769 == codecSelferValueTypeArray1234 { - yyl1769 := r.ReadArrayStart() - if yyl1769 == 0 { + } else if yyct1774 == codecSelferValueTypeArray1234 { + yyl1774 := r.ReadArrayStart() + if yyl1774 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1769, d) + x.codecDecodeSelfFromArray(yyl1774, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23114,12 +23162,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1770Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1770Slc - var yyhl1770 bool = l >= 0 - for yyj1770 := 0; ; yyj1770++ { - if yyhl1770 { - if yyj1770 >= l { + var yys1775Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1775Slc + var yyhl1775 bool = l >= 0 + for yyj1775 := 0; ; yyj1775++ { + if yyhl1775 { + if yyj1775 >= l { break } } else { @@ -23128,10 +23176,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1770Slc = r.DecodeBytes(yys1770Slc, true, true) - yys1770 := string(yys1770Slc) + yys1775Slc = r.DecodeBytes(yys1775Slc, true, true) + yys1775 := string(yys1775Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1770 { + switch yys1775 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23148,27 +23196,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1773 := &x.ObjectMeta - yyv1773.CodecDecodeSelf(d) + yyv1778 := &x.ObjectMeta + yyv1778.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1774 := &x.Spec - yyv1774.CodecDecodeSelf(d) + yyv1779 := &x.Spec + yyv1779.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1775 := &x.Status - yyv1775.CodecDecodeSelf(d) + yyv1780 := &x.Status + yyv1780.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1770) - } // end switch yys1770 - } // end for yyj1770 + z.DecStructFieldNotFound(-1, yys1775) + } // end switch yys1775 + } // end for yyj1775 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23176,16 +23224,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1776 int - var yyb1776 bool - var yyhl1776 bool = l >= 0 - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + var yyj1781 int + var yyb1781 bool + var yyhl1781 bool = l >= 0 + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23195,13 +23243,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23211,13 +23259,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23225,16 +23273,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1779 := &x.ObjectMeta - yyv1779.CodecDecodeSelf(d) + yyv1784 := &x.ObjectMeta + yyv1784.CodecDecodeSelf(d) } - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23242,16 +23290,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv1780 := &x.Spec - yyv1780.CodecDecodeSelf(d) + yyv1785 := &x.Spec + yyv1785.CodecDecodeSelf(d) } - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23259,21 +23307,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv1781 := &x.Status - yyv1781.CodecDecodeSelf(d) + yyv1786 := &x.Status + yyv1786.CodecDecodeSelf(d) } for { - yyj1776++ - if yyhl1776 { - yyb1776 = yyj1776 > l + yyj1781++ + if yyhl1781 { + yyb1781 = yyj1781 > l } else { - yyb1776 = r.CheckBreak() + yyb1781 = r.CheckBreak() } - if yyb1776 { + if yyb1781 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1776-1, "") + z.DecStructFieldNotFound(yyj1781-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23285,37 +23333,37 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1782 := z.EncBinary() - _ = yym1782 + yym1787 := z.EncBinary() + _ = yym1787 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1783 := !z.EncBinary() - yy2arr1783 := z.EncBasicHandle().StructToArray - var yyq1783 [4]bool - _, _, _ = yysep1783, yyq1783, yy2arr1783 - const yyr1783 bool = false - yyq1783[0] = x.Kind != "" - yyq1783[1] = x.APIVersion != "" - yyq1783[2] = true - var yynn1783 int - if yyr1783 || yy2arr1783 { + yysep1788 := !z.EncBinary() + yy2arr1788 := z.EncBasicHandle().StructToArray + var yyq1788 [4]bool + _, _, _ = yysep1788, yyq1788, yy2arr1788 + const yyr1788 bool = false + yyq1788[0] = x.Kind != "" + yyq1788[1] = x.APIVersion != "" + yyq1788[2] = true + var yynn1788 int + if yyr1788 || yy2arr1788 { r.EncodeArrayStart(4) } else { - yynn1783 = 1 - for _, b := range yyq1783 { + yynn1788 = 1 + for _, b := range yyq1788 { if b { - yynn1783++ + yynn1788++ } } - r.EncodeMapStart(yynn1783) - yynn1783 = 0 + r.EncodeMapStart(yynn1788) + yynn1788 = 0 } - if yyr1783 || yy2arr1783 { + if yyr1788 || yy2arr1788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1783[0] { - yym1785 := z.EncBinary() - _ = yym1785 + if yyq1788[0] { + yym1790 := z.EncBinary() + _ = yym1790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -23324,23 +23372,23 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1783[0] { + if yyq1788[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1786 := z.EncBinary() - _ = yym1786 + yym1791 := z.EncBinary() + _ = yym1791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1783 || yy2arr1783 { + if yyr1788 || yy2arr1788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1783[1] { - yym1788 := z.EncBinary() - _ = yym1788 + if yyq1788[1] { + yym1793 := z.EncBinary() + _ = yym1793 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -23349,54 +23397,54 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1783[1] { + if yyq1788[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1789 := z.EncBinary() - _ = yym1789 + yym1794 := z.EncBinary() + _ = yym1794 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1783 || yy2arr1783 { + if yyr1788 || yy2arr1788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1783[2] { - yy1791 := &x.ListMeta - yym1792 := z.EncBinary() - _ = yym1792 + if yyq1788[2] { + yy1796 := &x.ListMeta + yym1797 := z.EncBinary() + _ = yym1797 if false { - } else if z.HasExtensions() && z.EncExt(yy1791) { + } else if z.HasExtensions() && z.EncExt(yy1796) { } else { - z.EncFallback(yy1791) + z.EncFallback(yy1796) } } else { r.EncodeNil() } } else { - if yyq1783[2] { + if yyq1788[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1793 := &x.ListMeta - yym1794 := z.EncBinary() - _ = yym1794 + yy1798 := &x.ListMeta + yym1799 := z.EncBinary() + _ = yym1799 if false { - } else if z.HasExtensions() && z.EncExt(yy1793) { + } else if z.HasExtensions() && z.EncExt(yy1798) { } else { - z.EncFallback(yy1793) + z.EncFallback(yy1798) } } } - if yyr1783 || yy2arr1783 { + if yyr1788 || yy2arr1788 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1796 := z.EncBinary() - _ = yym1796 + yym1801 := z.EncBinary() + _ = yym1801 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -23409,15 +23457,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1797 := z.EncBinary() - _ = yym1797 + yym1802 := z.EncBinary() + _ = yym1802 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr1783 || yy2arr1783 { + if yyr1788 || yy2arr1788 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23430,25 +23478,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1798 := z.DecBinary() - _ = yym1798 + yym1803 := z.DecBinary() + _ = yym1803 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1799 := r.ContainerType() - if yyct1799 == codecSelferValueTypeMap1234 { - yyl1799 := r.ReadMapStart() - if yyl1799 == 0 { + yyct1804 := r.ContainerType() + if yyct1804 == codecSelferValueTypeMap1234 { + yyl1804 := r.ReadMapStart() + if yyl1804 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1799, d) + x.codecDecodeSelfFromMap(yyl1804, d) } - } else if yyct1799 == codecSelferValueTypeArray1234 { - yyl1799 := r.ReadArrayStart() - if yyl1799 == 0 { + } else if yyct1804 == codecSelferValueTypeArray1234 { + yyl1804 := r.ReadArrayStart() + if yyl1804 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1799, d) + x.codecDecodeSelfFromArray(yyl1804, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23460,12 +23508,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1800Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1800Slc - var yyhl1800 bool = l >= 0 - for yyj1800 := 0; ; yyj1800++ { - if yyhl1800 { - if yyj1800 >= l { + var yys1805Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1805Slc + var yyhl1805 bool = l >= 0 + for yyj1805 := 0; ; yyj1805++ { + if yyhl1805 { + if yyj1805 >= l { break } } else { @@ -23474,10 +23522,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1800Slc = r.DecodeBytes(yys1800Slc, true, true) - yys1800 := string(yys1800Slc) + yys1805Slc = r.DecodeBytes(yys1805Slc, true, true) + yys1805 := string(yys1805Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1800 { + switch yys1805 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -23494,31 +23542,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1803 := &x.ListMeta - yym1804 := z.DecBinary() - _ = yym1804 + yyv1808 := &x.ListMeta + yym1809 := z.DecBinary() + _ = yym1809 if false { - } else if z.HasExtensions() && z.DecExt(yyv1803) { + } else if z.HasExtensions() && z.DecExt(yyv1808) { } else { - z.DecFallback(yyv1803, false) + z.DecFallback(yyv1808, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1805 := &x.Items - yym1806 := z.DecBinary() - _ = yym1806 + yyv1810 := &x.Items + yym1811 := z.DecBinary() + _ = yym1811 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1805), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1810), d) } } default: - z.DecStructFieldNotFound(-1, yys1800) - } // end switch yys1800 - } // end for yyj1800 + z.DecStructFieldNotFound(-1, yys1805) + } // end switch yys1805 + } // end for yyj1805 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23526,16 +23574,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1807 int - var yyb1807 bool - var yyhl1807 bool = l >= 0 - yyj1807++ - if yyhl1807 { - yyb1807 = yyj1807 > l + var yyj1812 int + var yyb1812 bool + var yyhl1812 bool = l >= 0 + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1807 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1807 { + if yyb1812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23545,13 +23593,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj1807++ - if yyhl1807 { - yyb1807 = yyj1807 > l + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1807 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1807 { + if yyb1812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23561,13 +23609,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj1807++ - if yyhl1807 { - yyb1807 = yyj1807 > l + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1807 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1807 { + if yyb1812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23575,22 +23623,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1810 := &x.ListMeta - yym1811 := z.DecBinary() - _ = yym1811 + yyv1815 := &x.ListMeta + yym1816 := z.DecBinary() + _ = yym1816 if false { - } else if z.HasExtensions() && z.DecExt(yyv1810) { + } else if z.HasExtensions() && z.DecExt(yyv1815) { } else { - z.DecFallback(yyv1810, false) + z.DecFallback(yyv1815, false) } } - yyj1807++ - if yyhl1807 { - yyb1807 = yyj1807 > l + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1807 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1807 { + if yyb1812 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23598,26 +23646,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1812 := &x.Items - yym1813 := z.DecBinary() - _ = yym1813 + yyv1817 := &x.Items + yym1818 := z.DecBinary() + _ = yym1818 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv1812), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv1817), d) } } for { - yyj1807++ - if yyhl1807 { - yyb1807 = yyj1807 > l + yyj1812++ + if yyhl1812 { + yyb1812 = yyj1812 > l } else { - yyb1807 = r.CheckBreak() + yyb1812 = r.CheckBreak() } - if yyb1807 { + if yyb1812 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1807-1, "") + z.DecStructFieldNotFound(yyj1812-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23626,8 +23674,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1814 := z.EncBinary() - _ = yym1814 + yym1819 := z.EncBinary() + _ = yym1819 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23639,8 +23687,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1815 := z.DecBinary() - _ = yym1815 + yym1820 := z.DecBinary() + _ = yym1820 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23652,8 +23700,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym1816 := z.EncBinary() - _ = yym1816 + yym1821 := z.EncBinary() + _ = yym1821 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -23665,8 +23713,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1817 := z.DecBinary() - _ = yym1817 + yym1822 := z.DecBinary() + _ = yym1822 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -23681,48 +23729,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1818 := z.EncBinary() - _ = yym1818 + yym1823 := z.EncBinary() + _ = yym1823 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1819 := !z.EncBinary() - yy2arr1819 := z.EncBasicHandle().StructToArray - var yyq1819 [1]bool - _, _, _ = yysep1819, yyq1819, yy2arr1819 - const yyr1819 bool = false - yyq1819[0] = true - var yynn1819 int - if yyr1819 || yy2arr1819 { + yysep1824 := !z.EncBinary() + yy2arr1824 := z.EncBasicHandle().StructToArray + var yyq1824 [1]bool + _, _, _ = yysep1824, yyq1824, yy2arr1824 + const yyr1824 bool = false + yyq1824[0] = true + var yynn1824 int + if yyr1824 || yy2arr1824 { r.EncodeArrayStart(1) } else { - yynn1819 = 0 - for _, b := range yyq1819 { + yynn1824 = 0 + for _, b := range yyq1824 { if b { - yynn1819++ + yynn1824++ } } - r.EncodeMapStart(yynn1819) - yynn1819 = 0 + r.EncodeMapStart(yynn1824) + yynn1824 = 0 } - if yyr1819 || yy2arr1819 { + if yyr1824 || yy2arr1824 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1819[0] { - yy1821 := &x.LoadBalancer - yy1821.CodecEncodeSelf(e) + if yyq1824[0] { + yy1826 := &x.LoadBalancer + yy1826.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1819[0] { + if yyq1824[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1822 := &x.LoadBalancer - yy1822.CodecEncodeSelf(e) + yy1827 := &x.LoadBalancer + yy1827.CodecEncodeSelf(e) } } - if yyr1819 || yy2arr1819 { + if yyr1824 || yy2arr1824 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23735,25 +23783,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1823 := z.DecBinary() - _ = yym1823 + yym1828 := z.DecBinary() + _ = yym1828 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1824 := r.ContainerType() - if yyct1824 == codecSelferValueTypeMap1234 { - yyl1824 := r.ReadMapStart() - if yyl1824 == 0 { + yyct1829 := r.ContainerType() + if yyct1829 == codecSelferValueTypeMap1234 { + yyl1829 := r.ReadMapStart() + if yyl1829 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1824, d) + x.codecDecodeSelfFromMap(yyl1829, d) } - } else if yyct1824 == codecSelferValueTypeArray1234 { - yyl1824 := r.ReadArrayStart() - if yyl1824 == 0 { + } else if yyct1829 == codecSelferValueTypeArray1234 { + yyl1829 := r.ReadArrayStart() + if yyl1829 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1824, d) + x.codecDecodeSelfFromArray(yyl1829, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23765,12 +23813,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1825Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1825Slc - var yyhl1825 bool = l >= 0 - for yyj1825 := 0; ; yyj1825++ { - if yyhl1825 { - if yyj1825 >= l { + var yys1830Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1830Slc + var yyhl1830 bool = l >= 0 + for yyj1830 := 0; ; yyj1830++ { + if yyhl1830 { + if yyj1830 >= l { break } } else { @@ -23779,21 +23827,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1825Slc = r.DecodeBytes(yys1825Slc, true, true) - yys1825 := string(yys1825Slc) + yys1830Slc = r.DecodeBytes(yys1830Slc, true, true) + yys1830 := string(yys1830Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1825 { + switch yys1830 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1826 := &x.LoadBalancer - yyv1826.CodecDecodeSelf(d) + yyv1831 := &x.LoadBalancer + yyv1831.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1825) - } // end switch yys1825 - } // end for yyj1825 + z.DecStructFieldNotFound(-1, yys1830) + } // end switch yys1830 + } // end for yyj1830 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23801,16 +23849,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1827 int - var yyb1827 bool - var yyhl1827 bool = l >= 0 - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + var yyj1832 int + var yyb1832 bool + var yyhl1832 bool = l >= 0 + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -23818,21 +23866,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv1828 := &x.LoadBalancer - yyv1828.CodecDecodeSelf(d) + yyv1833 := &x.LoadBalancer + yyv1833.CodecDecodeSelf(d) } for { - yyj1827++ - if yyhl1827 { - yyb1827 = yyj1827 > l + yyj1832++ + if yyhl1832 { + yyb1832 = yyj1832 > l } else { - yyb1827 = r.CheckBreak() + yyb1832 = r.CheckBreak() } - if yyb1827 { + if yyb1832 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1827-1, "") + z.DecStructFieldNotFound(yyj1832-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -23844,38 +23892,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1829 := z.EncBinary() - _ = yym1829 + yym1834 := z.EncBinary() + _ = yym1834 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1830 := !z.EncBinary() - yy2arr1830 := z.EncBasicHandle().StructToArray - var yyq1830 [1]bool - _, _, _ = yysep1830, yyq1830, yy2arr1830 - const yyr1830 bool = false - yyq1830[0] = len(x.Ingress) != 0 - var yynn1830 int - if yyr1830 || yy2arr1830 { + yysep1835 := !z.EncBinary() + yy2arr1835 := z.EncBasicHandle().StructToArray + var yyq1835 [1]bool + _, _, _ = yysep1835, yyq1835, yy2arr1835 + const yyr1835 bool = false + yyq1835[0] = len(x.Ingress) != 0 + var yynn1835 int + if yyr1835 || yy2arr1835 { r.EncodeArrayStart(1) } else { - yynn1830 = 0 - for _, b := range yyq1830 { + yynn1835 = 0 + for _, b := range yyq1835 { if b { - yynn1830++ + yynn1835++ } } - r.EncodeMapStart(yynn1830) - yynn1830 = 0 + r.EncodeMapStart(yynn1835) + yynn1835 = 0 } - if yyr1830 || yy2arr1830 { + if yyr1835 || yy2arr1835 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1830[0] { + if yyq1835[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym1832 := z.EncBinary() - _ = yym1832 + yym1837 := z.EncBinary() + _ = yym1837 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -23885,15 +23933,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1830[0] { + if yyq1835[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym1833 := z.EncBinary() - _ = yym1833 + yym1838 := z.EncBinary() + _ = yym1838 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -23901,7 +23949,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1830 || yy2arr1830 { + if yyr1835 || yy2arr1835 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -23914,25 +23962,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1834 := z.DecBinary() - _ = yym1834 + yym1839 := z.DecBinary() + _ = yym1839 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1835 := r.ContainerType() - if yyct1835 == codecSelferValueTypeMap1234 { - yyl1835 := r.ReadMapStart() - if yyl1835 == 0 { + yyct1840 := r.ContainerType() + if yyct1840 == codecSelferValueTypeMap1234 { + yyl1840 := r.ReadMapStart() + if yyl1840 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1835, d) + x.codecDecodeSelfFromMap(yyl1840, d) } - } else if yyct1835 == codecSelferValueTypeArray1234 { - yyl1835 := r.ReadArrayStart() - if yyl1835 == 0 { + } else if yyct1840 == codecSelferValueTypeArray1234 { + yyl1840 := r.ReadArrayStart() + if yyl1840 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1835, d) + x.codecDecodeSelfFromArray(yyl1840, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -23944,12 +23992,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1836Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1836Slc - var yyhl1836 bool = l >= 0 - for yyj1836 := 0; ; yyj1836++ { - if yyhl1836 { - if yyj1836 >= l { + var yys1841Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1841Slc + var yyhl1841 bool = l >= 0 + for yyj1841 := 0; ; yyj1841++ { + if yyhl1841 { + if yyj1841 >= l { break } } else { @@ -23958,26 +24006,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1836Slc = r.DecodeBytes(yys1836Slc, true, true) - yys1836 := string(yys1836Slc) + yys1841Slc = r.DecodeBytes(yys1841Slc, true, true) + yys1841 := string(yys1841Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1836 { + switch yys1841 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1837 := &x.Ingress - yym1838 := z.DecBinary() - _ = yym1838 + yyv1842 := &x.Ingress + yym1843 := z.DecBinary() + _ = yym1843 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1837), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1842), d) } } default: - z.DecStructFieldNotFound(-1, yys1836) - } // end switch yys1836 - } // end for yyj1836 + z.DecStructFieldNotFound(-1, yys1841) + } // end switch yys1841 + } // end for yyj1841 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -23985,16 +24033,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1839 int - var yyb1839 bool - var yyhl1839 bool = l >= 0 - yyj1839++ - if yyhl1839 { - yyb1839 = yyj1839 > l + var yyj1844 int + var yyb1844 bool + var yyhl1844 bool = l >= 0 + yyj1844++ + if yyhl1844 { + yyb1844 = yyj1844 > l } else { - yyb1839 = r.CheckBreak() + yyb1844 = r.CheckBreak() } - if yyb1839 { + if yyb1844 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24002,26 +24050,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv1840 := &x.Ingress - yym1841 := z.DecBinary() - _ = yym1841 + yyv1845 := &x.Ingress + yym1846 := z.DecBinary() + _ = yym1846 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1840), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv1845), d) } } for { - yyj1839++ - if yyhl1839 { - yyb1839 = yyj1839 > l + yyj1844++ + if yyhl1844 { + yyb1844 = yyj1844 > l } else { - yyb1839 = r.CheckBreak() + yyb1844 = r.CheckBreak() } - if yyb1839 { + if yyb1844 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1839-1, "") + z.DecStructFieldNotFound(yyj1844-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24033,36 +24081,36 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1842 := z.EncBinary() - _ = yym1842 + yym1847 := z.EncBinary() + _ = yym1847 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1843 := !z.EncBinary() - yy2arr1843 := z.EncBasicHandle().StructToArray - var yyq1843 [2]bool - _, _, _ = yysep1843, yyq1843, yy2arr1843 - const yyr1843 bool = false - yyq1843[0] = x.IP != "" - yyq1843[1] = x.Hostname != "" - var yynn1843 int - if yyr1843 || yy2arr1843 { + yysep1848 := !z.EncBinary() + yy2arr1848 := z.EncBasicHandle().StructToArray + var yyq1848 [2]bool + _, _, _ = yysep1848, yyq1848, yy2arr1848 + const yyr1848 bool = false + yyq1848[0] = x.IP != "" + yyq1848[1] = x.Hostname != "" + var yynn1848 int + if yyr1848 || yy2arr1848 { r.EncodeArrayStart(2) } else { - yynn1843 = 0 - for _, b := range yyq1843 { + yynn1848 = 0 + for _, b := range yyq1848 { if b { - yynn1843++ + yynn1848++ } } - r.EncodeMapStart(yynn1843) - yynn1843 = 0 + r.EncodeMapStart(yynn1848) + yynn1848 = 0 } - if yyr1843 || yy2arr1843 { + if yyr1848 || yy2arr1848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1843[0] { - yym1845 := z.EncBinary() - _ = yym1845 + if yyq1848[0] { + yym1850 := z.EncBinary() + _ = yym1850 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -24071,23 +24119,23 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1843[0] { + if yyq1848[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1846 := z.EncBinary() - _ = yym1846 + yym1851 := z.EncBinary() + _ = yym1851 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } } - if yyr1843 || yy2arr1843 { + if yyr1848 || yy2arr1848 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1843[1] { - yym1848 := z.EncBinary() - _ = yym1848 + if yyq1848[1] { + yym1853 := z.EncBinary() + _ = yym1853 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -24096,19 +24144,19 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1843[1] { + if yyq1848[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1849 := z.EncBinary() - _ = yym1849 + yym1854 := z.EncBinary() + _ = yym1854 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr1843 || yy2arr1843 { + if yyr1848 || yy2arr1848 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24121,25 +24169,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1850 := z.DecBinary() - _ = yym1850 + yym1855 := z.DecBinary() + _ = yym1855 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1851 := r.ContainerType() - if yyct1851 == codecSelferValueTypeMap1234 { - yyl1851 := r.ReadMapStart() - if yyl1851 == 0 { + yyct1856 := r.ContainerType() + if yyct1856 == codecSelferValueTypeMap1234 { + yyl1856 := r.ReadMapStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1851, d) + x.codecDecodeSelfFromMap(yyl1856, d) } - } else if yyct1851 == codecSelferValueTypeArray1234 { - yyl1851 := r.ReadArrayStart() - if yyl1851 == 0 { + } else if yyct1856 == codecSelferValueTypeArray1234 { + yyl1856 := r.ReadArrayStart() + if yyl1856 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1851, d) + x.codecDecodeSelfFromArray(yyl1856, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24151,12 +24199,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1852Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1852Slc - var yyhl1852 bool = l >= 0 - for yyj1852 := 0; ; yyj1852++ { - if yyhl1852 { - if yyj1852 >= 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 { @@ -24165,10 +24213,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1852Slc = r.DecodeBytes(yys1852Slc, true, true) - yys1852 := string(yys1852Slc) + yys1857Slc = r.DecodeBytes(yys1857Slc, true, true) + yys1857 := string(yys1857Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1852 { + switch yys1857 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -24182,9 +24230,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1852) - } // end switch yys1852 - } // end for yyj1852 + z.DecStructFieldNotFound(-1, yys1857) + } // end switch yys1857 + } // end for yyj1857 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24192,16 +24240,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod 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 yyj1860 int + var yyb1860 bool + var yyhl1860 bool = l >= 0 + yyj1860++ + if yyhl1860 { + yyb1860 = yyj1860 > l } else { - yyb1855 = r.CheckBreak() + yyb1860 = r.CheckBreak() } - if yyb1855 { + if yyb1860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24211,13 +24259,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1860++ + if yyhl1860 { + yyb1860 = yyj1860 > l } else { - yyb1855 = r.CheckBreak() + yyb1860 = r.CheckBreak() } - if yyb1855 { + if yyb1860 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24228,17 +24276,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj1855++ - if yyhl1855 { - yyb1855 = yyj1855 > l + yyj1860++ + if yyhl1860 { + yyb1860 = yyj1860 > l } else { - yyb1855 = r.CheckBreak() + yyb1860 = r.CheckBreak() } - if yyb1855 { + if yyb1860 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1855-1, "") + z.DecStructFieldNotFound(yyj1860-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24250,43 +24298,43 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1858 := z.EncBinary() - _ = yym1858 + yym1863 := z.EncBinary() + _ = yym1863 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1859 := !z.EncBinary() - yy2arr1859 := z.EncBasicHandle().StructToArray - var yyq1859 [8]bool - _, _, _ = yysep1859, yyq1859, yy2arr1859 - const yyr1859 bool = false - yyq1859[1] = len(x.Selector) != 0 - yyq1859[2] = x.ClusterIP != "" - yyq1859[3] = x.Type != "" - yyq1859[4] = len(x.ExternalIPs) != 0 - yyq1859[5] = len(x.DeprecatedPublicIPs) != 0 - yyq1859[6] = x.SessionAffinity != "" - yyq1859[7] = x.LoadBalancerIP != "" - var yynn1859 int - if yyr1859 || yy2arr1859 { + yysep1864 := !z.EncBinary() + yy2arr1864 := z.EncBasicHandle().StructToArray + var yyq1864 [8]bool + _, _, _ = yysep1864, yyq1864, yy2arr1864 + const yyr1864 bool = false + yyq1864[1] = len(x.Selector) != 0 + yyq1864[2] = x.ClusterIP != "" + yyq1864[3] = x.Type != "" + yyq1864[4] = len(x.ExternalIPs) != 0 + yyq1864[5] = len(x.DeprecatedPublicIPs) != 0 + yyq1864[6] = x.SessionAffinity != "" + yyq1864[7] = x.LoadBalancerIP != "" + var yynn1864 int + if yyr1864 || yy2arr1864 { r.EncodeArrayStart(8) } else { - yynn1859 = 1 - for _, b := range yyq1859 { + yynn1864 = 1 + for _, b := range yyq1864 { if b { - yynn1859++ + yynn1864++ } } - r.EncodeMapStart(yynn1859) - yynn1859 = 0 + r.EncodeMapStart(yynn1864) + yynn1864 = 0 } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Ports == nil { r.EncodeNil() } else { - yym1861 := z.EncBinary() - _ = yym1861 + yym1866 := z.EncBinary() + _ = yym1866 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) @@ -24299,22 +24347,22 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Ports == nil { r.EncodeNil() } else { - yym1862 := z.EncBinary() - _ = yym1862 + yym1867 := z.EncBinary() + _ = yym1867 if false { } else { h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[1] { + if yyq1864[1] { if x.Selector == nil { r.EncodeNil() } else { - yym1864 := z.EncBinary() - _ = yym1864 + yym1869 := z.EncBinary() + _ = yym1869 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -24324,15 +24372,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1859[1] { + if yyq1864[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym1865 := z.EncBinary() - _ = yym1865 + yym1870 := z.EncBinary() + _ = yym1870 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -24340,11 +24388,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[2] { - yym1867 := z.EncBinary() - _ = yym1867 + if yyq1864[2] { + yym1872 := z.EncBinary() + _ = yym1872 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -24353,41 +24401,41 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1859[2] { + if yyq1864[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1868 := z.EncBinary() - _ = yym1868 + yym1873 := z.EncBinary() + _ = yym1873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[3] { + if yyq1864[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1859[3] { + if yyq1864[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[4] { + if yyq1864[4] { if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1871 := z.EncBinary() - _ = yym1871 + yym1876 := z.EncBinary() + _ = yym1876 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -24397,15 +24445,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1859[4] { + if yyq1864[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ExternalIPs == nil { r.EncodeNil() } else { - yym1872 := z.EncBinary() - _ = yym1872 + yym1877 := z.EncBinary() + _ = yym1877 if false { } else { z.F.EncSliceStringV(x.ExternalIPs, false, e) @@ -24413,14 +24461,14 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[5] { + if yyq1864[5] { if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym1874 := z.EncBinary() - _ = yym1874 + yym1879 := z.EncBinary() + _ = yym1879 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -24430,15 +24478,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq1859[5] { + if yyq1864[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DeprecatedPublicIPs == nil { r.EncodeNil() } else { - yym1875 := z.EncBinary() - _ = yym1875 + yym1880 := z.EncBinary() + _ = yym1880 if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) @@ -24446,26 +24494,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[6] { + if yyq1864[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1859[6] { + if yyq1864[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1859[7] { - yym1878 := z.EncBinary() - _ = yym1878 + if yyq1864[7] { + yym1883 := z.EncBinary() + _ = yym1883 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -24474,19 +24522,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1859[7] { + if yyq1864[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1879 := z.EncBinary() - _ = yym1879 + yym1884 := z.EncBinary() + _ = yym1884 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr1859 || yy2arr1859 { + if yyr1864 || yy2arr1864 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24499,25 +24547,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1880 := z.DecBinary() - _ = yym1880 + yym1885 := z.DecBinary() + _ = yym1885 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1881 := r.ContainerType() - if yyct1881 == codecSelferValueTypeMap1234 { - yyl1881 := r.ReadMapStart() - if yyl1881 == 0 { + yyct1886 := r.ContainerType() + if yyct1886 == codecSelferValueTypeMap1234 { + yyl1886 := r.ReadMapStart() + if yyl1886 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1881, d) + x.codecDecodeSelfFromMap(yyl1886, d) } - } else if yyct1881 == codecSelferValueTypeArray1234 { - yyl1881 := r.ReadArrayStart() - if yyl1881 == 0 { + } else if yyct1886 == codecSelferValueTypeArray1234 { + yyl1886 := r.ReadArrayStart() + if yyl1886 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1881, d) + x.codecDecodeSelfFromArray(yyl1886, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24529,12 +24577,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1882Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1882Slc - var yyhl1882 bool = l >= 0 - for yyj1882 := 0; ; yyj1882++ { - if yyhl1882 { - if yyj1882 >= 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 { @@ -24543,32 +24591,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1882Slc = r.DecodeBytes(yys1882Slc, true, true) - yys1882 := string(yys1882Slc) + yys1887Slc = r.DecodeBytes(yys1887Slc, true, true) + yys1887 := string(yys1887Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1882 { + switch yys1887 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1883 := &x.Ports - yym1884 := z.DecBinary() - _ = yym1884 + yyv1888 := &x.Ports + yym1889 := z.DecBinary() + _ = yym1889 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1883), d) + h.decSliceServicePort((*[]ServicePort)(yyv1888), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1885 := &x.Selector - yym1886 := z.DecBinary() - _ = yym1886 + yyv1890 := &x.Selector + yym1891 := z.DecBinary() + _ = yym1891 if false { } else { - z.F.DecMapStringStringX(yyv1885, false, d) + z.F.DecMapStringStringX(yyv1890, false, d) } } case "clusterIP": @@ -24587,24 +24635,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1889 := &x.ExternalIPs - yym1890 := z.DecBinary() - _ = yym1890 + yyv1894 := &x.ExternalIPs + yym1895 := z.DecBinary() + _ = yym1895 if false { } else { - z.F.DecSliceStringX(yyv1889, false, d) + z.F.DecSliceStringX(yyv1894, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv1891 := &x.DeprecatedPublicIPs - yym1892 := z.DecBinary() - _ = yym1892 + yyv1896 := &x.DeprecatedPublicIPs + yym1897 := z.DecBinary() + _ = yym1897 if false { } else { - z.F.DecSliceStringX(yyv1891, false, d) + z.F.DecSliceStringX(yyv1896, false, d) } } case "sessionAffinity": @@ -24620,9 +24668,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys1882) - } // end switch yys1882 - } // end for yyj1882 + z.DecStructFieldNotFound(-1, yys1887) + } // end switch yys1887 + } // end for yyj1887 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -24630,16 +24678,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1895 int - var yyb1895 bool - var yyhl1895 bool = l >= 0 - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + var yyj1900 int + var yyb1900 bool + var yyhl1900 bool = l >= 0 + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24647,21 +24695,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv1896 := &x.Ports - yym1897 := z.DecBinary() - _ = yym1897 + yyv1901 := &x.Ports + yym1902 := z.DecBinary() + _ = yym1902 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv1896), d) + h.decSliceServicePort((*[]ServicePort)(yyv1901), d) } } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24669,21 +24717,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv1898 := &x.Selector - yym1899 := z.DecBinary() - _ = yym1899 + yyv1903 := &x.Selector + yym1904 := z.DecBinary() + _ = yym1904 if false { } else { - z.F.DecMapStringStringX(yyv1898, false, d) + z.F.DecMapStringStringX(yyv1903, false, d) } } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24693,13 +24741,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24709,13 +24757,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24723,21 +24771,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv1902 := &x.ExternalIPs - yym1903 := z.DecBinary() - _ = yym1903 + yyv1907 := &x.ExternalIPs + yym1908 := z.DecBinary() + _ = yym1908 if false { } else { - z.F.DecSliceStringX(yyv1902, false, d) + z.F.DecSliceStringX(yyv1907, false, d) } } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24745,21 +24793,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv1904 := &x.DeprecatedPublicIPs - yym1905 := z.DecBinary() - _ = yym1905 + yyv1909 := &x.DeprecatedPublicIPs + yym1910 := z.DecBinary() + _ = yym1910 if false { } else { - z.F.DecSliceStringX(yyv1904, false, d) + z.F.DecSliceStringX(yyv1909, false, d) } } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24769,13 +24817,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -24786,17 +24834,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.LoadBalancerIP = string(r.DecodeString()) } for { - yyj1895++ - if yyhl1895 { - yyb1895 = yyj1895 > l + yyj1900++ + if yyhl1900 { + yyb1900 = yyj1900 > l } else { - yyb1895 = r.CheckBreak() + yyb1900 = r.CheckBreak() } - if yyb1895 { + if yyb1900 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1895-1, "") + z.DecStructFieldNotFound(yyj1900-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -24808,38 +24856,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1908 := z.EncBinary() - _ = yym1908 + yym1913 := z.EncBinary() + _ = yym1913 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1909 := !z.EncBinary() - yy2arr1909 := z.EncBasicHandle().StructToArray - var yyq1909 [5]bool - _, _, _ = yysep1909, yyq1909, yy2arr1909 - const yyr1909 bool = false - yyq1909[0] = x.Name != "" - yyq1909[1] = x.Protocol != "" - yyq1909[3] = true - yyq1909[4] = x.NodePort != 0 - var yynn1909 int - if yyr1909 || yy2arr1909 { + yysep1914 := !z.EncBinary() + yy2arr1914 := z.EncBasicHandle().StructToArray + var yyq1914 [5]bool + _, _, _ = yysep1914, yyq1914, yy2arr1914 + const yyr1914 bool = false + yyq1914[0] = x.Name != "" + yyq1914[1] = x.Protocol != "" + yyq1914[3] = true + yyq1914[4] = x.NodePort != 0 + var yynn1914 int + if yyr1914 || yy2arr1914 { r.EncodeArrayStart(5) } else { - yynn1909 = 1 - for _, b := range yyq1909 { + yynn1914 = 1 + for _, b := range yyq1914 { if b { - yynn1909++ + yynn1914++ } } - r.EncodeMapStart(yynn1909) - yynn1909 = 0 + r.EncodeMapStart(yynn1914) + yynn1914 = 0 } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1909[0] { - yym1911 := z.EncBinary() - _ = yym1911 + if yyq1914[0] { + yym1916 := z.EncBinary() + _ = yym1916 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -24848,37 +24896,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1909[0] { + if yyq1914[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1912 := z.EncBinary() - _ = yym1912 + yym1917 := z.EncBinary() + _ = yym1917 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1909[1] { + if yyq1914[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1909[1] { + if yyq1914[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym1915 := z.EncBinary() - _ = yym1915 + yym1920 := z.EncBinary() + _ = yym1920 if false { } else { r.EncodeInt(int64(x.Port)) @@ -24887,51 +24935,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1916 := z.EncBinary() - _ = yym1916 + yym1921 := z.EncBinary() + _ = yym1921 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1909[3] { - yy1918 := &x.TargetPort - yym1919 := z.EncBinary() - _ = yym1919 + if yyq1914[3] { + yy1923 := &x.TargetPort + yym1924 := z.EncBinary() + _ = yym1924 if false { - } else if z.HasExtensions() && z.EncExt(yy1918) { - } else if !yym1919 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1918) + } else if z.HasExtensions() && z.EncExt(yy1923) { + } else if !yym1924 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1923) } else { - z.EncFallback(yy1918) + z.EncFallback(yy1923) } } else { r.EncodeNil() } } else { - if yyq1909[3] { + if yyq1914[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1920 := &x.TargetPort - yym1921 := z.EncBinary() - _ = yym1921 + yy1925 := &x.TargetPort + yym1926 := z.EncBinary() + _ = yym1926 if false { - } else if z.HasExtensions() && z.EncExt(yy1920) { - } else if !yym1921 && z.IsJSONHandle() { - z.EncJSONMarshal(yy1920) + } else if z.HasExtensions() && z.EncExt(yy1925) { + } else if !yym1926 && z.IsJSONHandle() { + z.EncJSONMarshal(yy1925) } else { - z.EncFallback(yy1920) + z.EncFallback(yy1925) } } } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1909[4] { - yym1923 := z.EncBinary() - _ = yym1923 + if yyq1914[4] { + yym1928 := z.EncBinary() + _ = yym1928 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -24940,19 +24988,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq1909[4] { + if yyq1914[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1924 := z.EncBinary() - _ = yym1924 + yym1929 := z.EncBinary() + _ = yym1929 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr1909 || yy2arr1909 { + if yyr1914 || yy2arr1914 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -24965,25 +25013,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1925 := z.DecBinary() - _ = yym1925 + yym1930 := z.DecBinary() + _ = yym1930 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1926 := r.ContainerType() - if yyct1926 == codecSelferValueTypeMap1234 { - yyl1926 := r.ReadMapStart() - if yyl1926 == 0 { + yyct1931 := r.ContainerType() + if yyct1931 == codecSelferValueTypeMap1234 { + yyl1931 := r.ReadMapStart() + if yyl1931 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1926, d) + x.codecDecodeSelfFromMap(yyl1931, d) } - } else if yyct1926 == codecSelferValueTypeArray1234 { - yyl1926 := r.ReadArrayStart() - if yyl1926 == 0 { + } else if yyct1931 == codecSelferValueTypeArray1234 { + yyl1931 := r.ReadArrayStart() + if yyl1931 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1926, d) + x.codecDecodeSelfFromArray(yyl1931, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -24995,12 +25043,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1927Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1927Slc - var yyhl1927 bool = l >= 0 - for yyj1927 := 0; ; yyj1927++ { - if yyhl1927 { - if yyj1927 >= l { + var yys1932Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1932Slc + var yyhl1932 bool = l >= 0 + for yyj1932 := 0; ; yyj1932++ { + if yyhl1932 { + if yyj1932 >= l { break } } else { @@ -25009,10 +25057,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1927Slc = r.DecodeBytes(yys1927Slc, true, true) - yys1927 := string(yys1927Slc) + yys1932Slc = r.DecodeBytes(yys1932Slc, true, true) + yys1932 := string(yys1932Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1927 { + switch yys1932 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -25035,15 +25083,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1931 := &x.TargetPort - yym1932 := z.DecBinary() - _ = yym1932 + yyv1936 := &x.TargetPort + yym1937 := z.DecBinary() + _ = yym1937 if false { - } else if z.HasExtensions() && z.DecExt(yyv1931) { - } else if !yym1932 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1931) + } else if z.HasExtensions() && z.DecExt(yyv1936) { + } else if !yym1937 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1936) } else { - z.DecFallback(yyv1931, false) + z.DecFallback(yyv1936, false) } } case "nodePort": @@ -25053,9 +25101,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys1927) - } // end switch yys1927 - } // end for yyj1927 + z.DecStructFieldNotFound(-1, yys1932) + } // end switch yys1932 + } // end for yyj1932 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25063,16 +25111,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1934 int - var yyb1934 bool - var yyhl1934 bool = l >= 0 - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + var yyj1939 int + var yyb1939 bool + var yyhl1939 bool = l >= 0 + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25082,13 +25130,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25098,13 +25146,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25114,13 +25162,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25128,24 +25176,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg5_intstr.IntOrString{} } else { - yyv1938 := &x.TargetPort - yym1939 := z.DecBinary() - _ = yym1939 + yyv1943 := &x.TargetPort + yym1944 := z.DecBinary() + _ = yym1944 if false { - } else if z.HasExtensions() && z.DecExt(yyv1938) { - } else if !yym1939 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv1938) + } else if z.HasExtensions() && z.DecExt(yyv1943) { + } else if !yym1944 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv1943) } else { - z.DecFallback(yyv1938, false) + z.DecFallback(yyv1943, false) } } - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25156,17 +25204,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj1934++ - if yyhl1934 { - yyb1934 = yyj1934 > l + yyj1939++ + if yyhl1939 { + yyb1939 = yyj1939 > l } else { - yyb1934 = r.CheckBreak() + yyb1939 = r.CheckBreak() } - if yyb1934 { + if yyb1939 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1934-1, "") + z.DecStructFieldNotFound(yyj1939-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25178,39 +25226,39 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1941 := z.EncBinary() - _ = yym1941 + yym1946 := z.EncBinary() + _ = yym1946 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1942 := !z.EncBinary() - yy2arr1942 := z.EncBasicHandle().StructToArray - var yyq1942 [5]bool - _, _, _ = yysep1942, yyq1942, yy2arr1942 - const yyr1942 bool = false - yyq1942[0] = x.Kind != "" - yyq1942[1] = x.APIVersion != "" - yyq1942[2] = true - yyq1942[3] = true - yyq1942[4] = true - var yynn1942 int - if yyr1942 || yy2arr1942 { + yysep1947 := !z.EncBinary() + yy2arr1947 := z.EncBasicHandle().StructToArray + var yyq1947 [5]bool + _, _, _ = yysep1947, yyq1947, yy2arr1947 + const yyr1947 bool = false + yyq1947[0] = x.Kind != "" + yyq1947[1] = x.APIVersion != "" + yyq1947[2] = true + yyq1947[3] = true + yyq1947[4] = true + var yynn1947 int + if yyr1947 || yy2arr1947 { r.EncodeArrayStart(5) } else { - yynn1942 = 0 - for _, b := range yyq1942 { + yynn1947 = 0 + for _, b := range yyq1947 { if b { - yynn1942++ + yynn1947++ } } - r.EncodeMapStart(yynn1942) - yynn1942 = 0 + r.EncodeMapStart(yynn1947) + yynn1947 = 0 } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1942[0] { - yym1944 := z.EncBinary() - _ = yym1944 + if yyq1947[0] { + yym1949 := z.EncBinary() + _ = yym1949 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25219,23 +25267,23 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1942[0] { + if yyq1947[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1945 := z.EncBinary() - _ = yym1945 + yym1950 := z.EncBinary() + _ = yym1950 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1942[1] { - yym1947 := z.EncBinary() - _ = yym1947 + if yyq1947[1] { + yym1952 := z.EncBinary() + _ = yym1952 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25244,70 +25292,70 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1942[1] { + if yyq1947[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1948 := z.EncBinary() - _ = yym1948 + yym1953 := z.EncBinary() + _ = yym1953 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1942[2] { - yy1950 := &x.ObjectMeta - yy1950.CodecEncodeSelf(e) + if yyq1947[2] { + yy1955 := &x.ObjectMeta + yy1955.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1942[2] { + if yyq1947[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1951 := &x.ObjectMeta - yy1951.CodecEncodeSelf(e) + yy1956 := &x.ObjectMeta + yy1956.CodecEncodeSelf(e) } } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1942[3] { - yy1953 := &x.Spec - yy1953.CodecEncodeSelf(e) + if yyq1947[3] { + yy1958 := &x.Spec + yy1958.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1942[3] { + if yyq1947[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1954 := &x.Spec - yy1954.CodecEncodeSelf(e) + yy1959 := &x.Spec + yy1959.CodecEncodeSelf(e) } } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1942[4] { - yy1956 := &x.Status - yy1956.CodecEncodeSelf(e) + if yyq1947[4] { + yy1961 := &x.Status + yy1961.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq1942[4] { + if yyq1947[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1957 := &x.Status - yy1957.CodecEncodeSelf(e) + yy1962 := &x.Status + yy1962.CodecEncodeSelf(e) } } - if yyr1942 || yy2arr1942 { + if yyr1947 || yy2arr1947 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25320,25 +25368,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1958 := z.DecBinary() - _ = yym1958 + yym1963 := z.DecBinary() + _ = yym1963 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1959 := r.ContainerType() - if yyct1959 == codecSelferValueTypeMap1234 { - yyl1959 := r.ReadMapStart() - if yyl1959 == 0 { + yyct1964 := r.ContainerType() + if yyct1964 == codecSelferValueTypeMap1234 { + yyl1964 := r.ReadMapStart() + if yyl1964 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1959, d) + x.codecDecodeSelfFromMap(yyl1964, d) } - } else if yyct1959 == codecSelferValueTypeArray1234 { - yyl1959 := r.ReadArrayStart() - if yyl1959 == 0 { + } else if yyct1964 == codecSelferValueTypeArray1234 { + yyl1964 := r.ReadArrayStart() + if yyl1964 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1959, d) + x.codecDecodeSelfFromArray(yyl1964, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25350,12 +25398,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1960Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1960Slc - var yyhl1960 bool = l >= 0 - for yyj1960 := 0; ; yyj1960++ { - if yyhl1960 { - if yyj1960 >= l { + var yys1965Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1965Slc + var yyhl1965 bool = l >= 0 + for yyj1965 := 0; ; yyj1965++ { + if yyhl1965 { + if yyj1965 >= l { break } } else { @@ -25364,10 +25412,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1960Slc = r.DecodeBytes(yys1960Slc, true, true) - yys1960 := string(yys1960Slc) + yys1965Slc = r.DecodeBytes(yys1965Slc, true, true) + yys1965 := string(yys1965Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1960 { + switch yys1965 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -25384,27 +25432,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1963 := &x.ObjectMeta - yyv1963.CodecDecodeSelf(d) + yyv1968 := &x.ObjectMeta + yyv1968.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv1964 := &x.Spec - yyv1964.CodecDecodeSelf(d) + yyv1969 := &x.Spec + yyv1969.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv1965 := &x.Status - yyv1965.CodecDecodeSelf(d) + yyv1970 := &x.Status + yyv1970.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys1960) - } // end switch yys1960 - } // end for yyj1960 + z.DecStructFieldNotFound(-1, yys1965) + } // end switch yys1965 + } // end for yyj1965 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25412,16 +25460,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1966 int - var yyb1966 bool - var yyhl1966 bool = l >= 0 - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + var yyj1971 int + var yyb1971 bool + var yyhl1971 bool = l >= 0 + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25431,13 +25479,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25447,13 +25495,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25461,16 +25509,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv1969 := &x.ObjectMeta - yyv1969.CodecDecodeSelf(d) + yyv1974 := &x.ObjectMeta + yyv1974.CodecDecodeSelf(d) } - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25478,16 +25526,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv1970 := &x.Spec - yyv1970.CodecDecodeSelf(d) + yyv1975 := &x.Spec + yyv1975.CodecDecodeSelf(d) } - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25495,21 +25543,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv1971 := &x.Status - yyv1971.CodecDecodeSelf(d) + yyv1976 := &x.Status + yyv1976.CodecDecodeSelf(d) } for { - yyj1966++ - if yyhl1966 { - yyb1966 = yyj1966 > l + yyj1971++ + if yyhl1971 { + yyb1971 = yyj1971 > l } else { - yyb1966 = r.CheckBreak() + yyb1971 = r.CheckBreak() } - if yyb1966 { + if yyb1971 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1966-1, "") + z.DecStructFieldNotFound(yyj1971-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25521,37 +25569,37 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym1972 := z.EncBinary() - _ = yym1972 + yym1977 := z.EncBinary() + _ = yym1977 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep1973 := !z.EncBinary() - yy2arr1973 := z.EncBasicHandle().StructToArray - var yyq1973 [4]bool - _, _, _ = yysep1973, yyq1973, yy2arr1973 - const yyr1973 bool = false - yyq1973[0] = x.Kind != "" - yyq1973[1] = x.APIVersion != "" - yyq1973[2] = true - var yynn1973 int - if yyr1973 || yy2arr1973 { + yysep1978 := !z.EncBinary() + yy2arr1978 := z.EncBasicHandle().StructToArray + var yyq1978 [4]bool + _, _, _ = yysep1978, yyq1978, yy2arr1978 + const yyr1978 bool = false + yyq1978[0] = x.Kind != "" + yyq1978[1] = x.APIVersion != "" + yyq1978[2] = true + var yynn1978 int + if yyr1978 || yy2arr1978 { r.EncodeArrayStart(4) } else { - yynn1973 = 1 - for _, b := range yyq1973 { + yynn1978 = 1 + for _, b := range yyq1978 { if b { - yynn1973++ + yynn1978++ } } - r.EncodeMapStart(yynn1973) - yynn1973 = 0 + r.EncodeMapStart(yynn1978) + yynn1978 = 0 } - if yyr1973 || yy2arr1973 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1973[0] { - yym1975 := z.EncBinary() - _ = yym1975 + if yyq1978[0] { + yym1980 := z.EncBinary() + _ = yym1980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25560,23 +25608,23 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1973[0] { + if yyq1978[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1976 := z.EncBinary() - _ = yym1976 + yym1981 := z.EncBinary() + _ = yym1981 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr1973 || yy2arr1973 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1973[1] { - yym1978 := z.EncBinary() - _ = yym1978 + if yyq1978[1] { + yym1983 := z.EncBinary() + _ = yym1983 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25585,54 +25633,54 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq1973[1] { + if yyq1978[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym1979 := z.EncBinary() - _ = yym1979 + yym1984 := z.EncBinary() + _ = yym1984 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr1973 || yy2arr1973 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq1973[2] { - yy1981 := &x.ListMeta - yym1982 := z.EncBinary() - _ = yym1982 + if yyq1978[2] { + yy1986 := &x.ListMeta + yym1987 := z.EncBinary() + _ = yym1987 if false { - } else if z.HasExtensions() && z.EncExt(yy1981) { + } else if z.HasExtensions() && z.EncExt(yy1986) { } else { - z.EncFallback(yy1981) + z.EncFallback(yy1986) } } else { r.EncodeNil() } } else { - if yyq1973[2] { + if yyq1978[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy1983 := &x.ListMeta - yym1984 := z.EncBinary() - _ = yym1984 + yy1988 := &x.ListMeta + yym1989 := z.EncBinary() + _ = yym1989 if false { - } else if z.HasExtensions() && z.EncExt(yy1983) { + } else if z.HasExtensions() && z.EncExt(yy1988) { } else { - z.EncFallback(yy1983) + z.EncFallback(yy1988) } } } - if yyr1973 || yy2arr1973 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym1986 := z.EncBinary() - _ = yym1986 + yym1991 := z.EncBinary() + _ = yym1991 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -25645,15 +25693,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym1987 := z.EncBinary() - _ = yym1987 + yym1992 := z.EncBinary() + _ = yym1992 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr1973 || yy2arr1973 { + if yyr1978 || yy2arr1978 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -25666,25 +25714,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym1988 := z.DecBinary() - _ = yym1988 + yym1993 := z.DecBinary() + _ = yym1993 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct1989 := r.ContainerType() - if yyct1989 == codecSelferValueTypeMap1234 { - yyl1989 := r.ReadMapStart() - if yyl1989 == 0 { + yyct1994 := r.ContainerType() + if yyct1994 == codecSelferValueTypeMap1234 { + yyl1994 := r.ReadMapStart() + if yyl1994 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl1989, d) + x.codecDecodeSelfFromMap(yyl1994, d) } - } else if yyct1989 == codecSelferValueTypeArray1234 { - yyl1989 := r.ReadArrayStart() - if yyl1989 == 0 { + } else if yyct1994 == codecSelferValueTypeArray1234 { + yyl1994 := r.ReadArrayStart() + if yyl1994 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl1989, d) + x.codecDecodeSelfFromArray(yyl1994, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -25696,12 +25744,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys1990Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys1990Slc - var yyhl1990 bool = l >= 0 - for yyj1990 := 0; ; yyj1990++ { - if yyhl1990 { - if yyj1990 >= l { + var yys1995Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys1995Slc + var yyhl1995 bool = l >= 0 + for yyj1995 := 0; ; yyj1995++ { + if yyhl1995 { + if yyj1995 >= l { break } } else { @@ -25710,10 +25758,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys1990Slc = r.DecodeBytes(yys1990Slc, true, true) - yys1990 := string(yys1990Slc) + yys1995Slc = r.DecodeBytes(yys1995Slc, true, true) + yys1995 := string(yys1995Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys1990 { + switch yys1995 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -25730,31 +25778,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv1993 := &x.ListMeta - yym1994 := z.DecBinary() - _ = yym1994 + yyv1998 := &x.ListMeta + yym1999 := z.DecBinary() + _ = yym1999 if false { - } else if z.HasExtensions() && z.DecExt(yyv1993) { + } else if z.HasExtensions() && z.DecExt(yyv1998) { } else { - z.DecFallback(yyv1993, false) + z.DecFallback(yyv1998, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv1995 := &x.Items - yym1996 := z.DecBinary() - _ = yym1996 + yyv2000 := &x.Items + yym2001 := z.DecBinary() + _ = yym2001 if false { } else { - h.decSliceService((*[]Service)(yyv1995), d) + h.decSliceService((*[]Service)(yyv2000), d) } } default: - z.DecStructFieldNotFound(-1, yys1990) - } // end switch yys1990 - } // end for yyj1990 + z.DecStructFieldNotFound(-1, yys1995) + } // end switch yys1995 + } // end for yyj1995 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -25762,16 +25810,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj1997 int - var yyb1997 bool - var yyhl1997 bool = l >= 0 - yyj1997++ - if yyhl1997 { - yyb1997 = yyj1997 > l + var yyj2002 int + var yyb2002 bool + var yyhl2002 bool = l >= 0 + yyj2002++ + if yyhl2002 { + yyb2002 = yyj2002 > l } else { - yyb1997 = r.CheckBreak() + yyb2002 = r.CheckBreak() } - if yyb1997 { + if yyb2002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25781,13 +25829,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj1997++ - if yyhl1997 { - yyb1997 = yyj1997 > l + yyj2002++ + if yyhl2002 { + yyb2002 = yyj2002 > l } else { - yyb1997 = r.CheckBreak() + yyb2002 = r.CheckBreak() } - if yyb1997 { + if yyb2002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25797,13 +25845,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj1997++ - if yyhl1997 { - yyb1997 = yyj1997 > l + yyj2002++ + if yyhl2002 { + yyb2002 = yyj2002 > l } else { - yyb1997 = r.CheckBreak() + yyb2002 = r.CheckBreak() } - if yyb1997 { + if yyb2002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25811,22 +25859,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2000 := &x.ListMeta - yym2001 := z.DecBinary() - _ = yym2001 + yyv2005 := &x.ListMeta + yym2006 := z.DecBinary() + _ = yym2006 if false { - } else if z.HasExtensions() && z.DecExt(yyv2000) { + } else if z.HasExtensions() && z.DecExt(yyv2005) { } else { - z.DecFallback(yyv2000, false) + z.DecFallback(yyv2005, false) } } - yyj1997++ - if yyhl1997 { - yyb1997 = yyj1997 > l + yyj2002++ + if yyhl2002 { + yyb2002 = yyj2002 > l } else { - yyb1997 = r.CheckBreak() + yyb2002 = r.CheckBreak() } - if yyb1997 { + if yyb2002 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -25834,26 +25882,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2002 := &x.Items - yym2003 := z.DecBinary() - _ = yym2003 + yyv2007 := &x.Items + yym2008 := z.DecBinary() + _ = yym2008 if false { } else { - h.decSliceService((*[]Service)(yyv2002), d) + h.decSliceService((*[]Service)(yyv2007), d) } } for { - yyj1997++ - if yyhl1997 { - yyb1997 = yyj1997 > l + yyj2002++ + if yyhl2002 { + yyb2002 = yyj2002 > l } else { - yyb1997 = r.CheckBreak() + yyb2002 = r.CheckBreak() } - if yyb1997 { + if yyb2002 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj1997-1, "") + z.DecStructFieldNotFound(yyj2002-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -25865,39 +25913,39 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2004 := z.EncBinary() - _ = yym2004 + yym2009 := z.EncBinary() + _ = yym2009 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2005 := !z.EncBinary() - yy2arr2005 := z.EncBasicHandle().StructToArray - var yyq2005 [5]bool - _, _, _ = yysep2005, yyq2005, yy2arr2005 - const yyr2005 bool = false - yyq2005[0] = x.Kind != "" - yyq2005[1] = x.APIVersion != "" - yyq2005[2] = true - yyq2005[3] = len(x.Secrets) != 0 - yyq2005[4] = len(x.ImagePullSecrets) != 0 - var yynn2005 int - if yyr2005 || yy2arr2005 { + yysep2010 := !z.EncBinary() + yy2arr2010 := z.EncBasicHandle().StructToArray + var yyq2010 [5]bool + _, _, _ = yysep2010, yyq2010, yy2arr2010 + const yyr2010 bool = false + yyq2010[0] = x.Kind != "" + yyq2010[1] = x.APIVersion != "" + yyq2010[2] = true + yyq2010[3] = len(x.Secrets) != 0 + yyq2010[4] = len(x.ImagePullSecrets) != 0 + var yynn2010 int + if yyr2010 || yy2arr2010 { r.EncodeArrayStart(5) } else { - yynn2005 = 0 - for _, b := range yyq2005 { + yynn2010 = 0 + for _, b := range yyq2010 { if b { - yynn2005++ + yynn2010++ } } - r.EncodeMapStart(yynn2005) - yynn2005 = 0 + r.EncodeMapStart(yynn2010) + yynn2010 = 0 } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2005[0] { - yym2007 := z.EncBinary() - _ = yym2007 + if yyq2010[0] { + yym2012 := z.EncBinary() + _ = yym2012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -25906,23 +25954,23 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2005[0] { + if yyq2010[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2008 := z.EncBinary() - _ = yym2008 + yym2013 := z.EncBinary() + _ = yym2013 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2005[1] { - yym2010 := z.EncBinary() - _ = yym2010 + if yyq2010[1] { + yym2015 := z.EncBinary() + _ = yym2015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -25931,43 +25979,43 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2005[1] { + if yyq2010[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2011 := z.EncBinary() - _ = yym2011 + yym2016 := z.EncBinary() + _ = yym2016 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2005[2] { - yy2013 := &x.ObjectMeta - yy2013.CodecEncodeSelf(e) + if yyq2010[2] { + yy2018 := &x.ObjectMeta + yy2018.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2005[2] { + if yyq2010[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2014 := &x.ObjectMeta - yy2014.CodecEncodeSelf(e) + yy2019 := &x.ObjectMeta + yy2019.CodecEncodeSelf(e) } } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2005[3] { + if yyq2010[3] { if x.Secrets == nil { r.EncodeNil() } else { - yym2016 := z.EncBinary() - _ = yym2016 + yym2021 := z.EncBinary() + _ = yym2021 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -25977,15 +26025,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2005[3] { + if yyq2010[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("secrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Secrets == nil { r.EncodeNil() } else { - yym2017 := z.EncBinary() - _ = yym2017 + yym2022 := z.EncBinary() + _ = yym2022 if false { } else { h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) @@ -25993,14 +26041,14 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2005[4] { + if yyq2010[4] { if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2019 := z.EncBinary() - _ = yym2019 + yym2024 := z.EncBinary() + _ = yym2024 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26010,15 +26058,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2005[4] { + if yyq2010[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2020 := z.EncBinary() - _ = yym2020 + yym2025 := z.EncBinary() + _ = yym2025 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -26026,7 +26074,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2005 || yy2arr2005 { + if yyr2010 || yy2arr2010 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26039,25 +26087,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2021 := z.DecBinary() - _ = yym2021 + yym2026 := z.DecBinary() + _ = yym2026 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2022 := r.ContainerType() - if yyct2022 == codecSelferValueTypeMap1234 { - yyl2022 := r.ReadMapStart() - if yyl2022 == 0 { + yyct2027 := r.ContainerType() + if yyct2027 == codecSelferValueTypeMap1234 { + yyl2027 := r.ReadMapStart() + if yyl2027 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2022, d) + x.codecDecodeSelfFromMap(yyl2027, d) } - } else if yyct2022 == codecSelferValueTypeArray1234 { - yyl2022 := r.ReadArrayStart() - if yyl2022 == 0 { + } else if yyct2027 == codecSelferValueTypeArray1234 { + yyl2027 := r.ReadArrayStart() + if yyl2027 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2022, d) + x.codecDecodeSelfFromArray(yyl2027, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26069,12 +26117,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2023Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2023Slc - var yyhl2023 bool = l >= 0 - for yyj2023 := 0; ; yyj2023++ { - if yyhl2023 { - if yyj2023 >= l { + var yys2028Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2028Slc + var yyhl2028 bool = l >= 0 + for yyj2028 := 0; ; yyj2028++ { + if yyhl2028 { + if yyj2028 >= l { break } } else { @@ -26083,10 +26131,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2023Slc = r.DecodeBytes(yys2023Slc, true, true) - yys2023 := string(yys2023Slc) + yys2028Slc = r.DecodeBytes(yys2028Slc, true, true) + yys2028 := string(yys2028Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2023 { + switch yys2028 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26103,37 +26151,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2026 := &x.ObjectMeta - yyv2026.CodecDecodeSelf(d) + yyv2031 := &x.ObjectMeta + yyv2031.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2027 := &x.Secrets - yym2028 := z.DecBinary() - _ = yym2028 + yyv2032 := &x.Secrets + yym2033 := z.DecBinary() + _ = yym2033 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2027), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2032), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2029 := &x.ImagePullSecrets - yym2030 := z.DecBinary() - _ = yym2030 + yyv2034 := &x.ImagePullSecrets + yym2035 := z.DecBinary() + _ = yym2035 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2029), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2034), d) } } default: - z.DecStructFieldNotFound(-1, yys2023) - } // end switch yys2023 - } // end for yyj2023 + z.DecStructFieldNotFound(-1, yys2028) + } // end switch yys2028 + } // end for yyj2028 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26141,16 +26189,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2031 int - var yyb2031 bool - var yyhl2031 bool = l >= 0 - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + var yyj2036 int + var yyb2036 bool + var yyhl2036 bool = l >= 0 + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26160,13 +26208,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26176,13 +26224,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26190,16 +26238,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2034 := &x.ObjectMeta - yyv2034.CodecDecodeSelf(d) + yyv2039 := &x.ObjectMeta + yyv2039.CodecDecodeSelf(d) } - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26207,21 +26255,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2035 := &x.Secrets - yym2036 := z.DecBinary() - _ = yym2036 + yyv2040 := &x.Secrets + yym2041 := z.DecBinary() + _ = yym2041 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2035), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2040), d) } } - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26229,26 +26277,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2037 := &x.ImagePullSecrets - yym2038 := z.DecBinary() - _ = yym2038 + yyv2042 := &x.ImagePullSecrets + yym2043 := z.DecBinary() + _ = yym2043 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2037), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2042), d) } } for { - yyj2031++ - if yyhl2031 { - yyb2031 = yyj2031 > l + yyj2036++ + if yyhl2036 { + yyb2036 = yyj2036 > l } else { - yyb2031 = r.CheckBreak() + yyb2036 = r.CheckBreak() } - if yyb2031 { + if yyb2036 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2031-1, "") + z.DecStructFieldNotFound(yyj2036-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26260,37 +26308,37 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2039 := z.EncBinary() - _ = yym2039 + yym2044 := z.EncBinary() + _ = yym2044 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - 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 { + yysep2045 := !z.EncBinary() + yy2arr2045 := z.EncBasicHandle().StructToArray + var yyq2045 [4]bool + _, _, _ = yysep2045, yyq2045, yy2arr2045 + const yyr2045 bool = false + yyq2045[0] = x.Kind != "" + yyq2045[1] = x.APIVersion != "" + yyq2045[2] = true + var yynn2045 int + if yyr2045 || yy2arr2045 { r.EncodeArrayStart(4) } else { - yynn2040 = 1 - for _, b := range yyq2040 { + yynn2045 = 1 + for _, b := range yyq2045 { if b { - yynn2040++ + yynn2045++ } } - r.EncodeMapStart(yynn2040) - yynn2040 = 0 + r.EncodeMapStart(yynn2045) + yynn2045 = 0 } - if yyr2040 || yy2arr2040 { + if yyr2045 || yy2arr2045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2040[0] { - yym2042 := z.EncBinary() - _ = yym2042 + if yyq2045[0] { + yym2047 := z.EncBinary() + _ = yym2047 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26299,23 +26347,23 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2040[0] { + if yyq2045[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2043 := z.EncBinary() - _ = yym2043 + yym2048 := z.EncBinary() + _ = yym2048 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2040 || yy2arr2040 { + if yyr2045 || yy2arr2045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2040[1] { - yym2045 := z.EncBinary() - _ = yym2045 + if yyq2045[1] { + yym2050 := z.EncBinary() + _ = yym2050 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26324,54 +26372,54 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2040[1] { + if yyq2045[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2046 := z.EncBinary() - _ = yym2046 + yym2051 := z.EncBinary() + _ = yym2051 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2040 || yy2arr2040 { + if yyr2045 || yy2arr2045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2040[2] { - yy2048 := &x.ListMeta - yym2049 := z.EncBinary() - _ = yym2049 + if yyq2045[2] { + yy2053 := &x.ListMeta + yym2054 := z.EncBinary() + _ = yym2054 if false { - } else if z.HasExtensions() && z.EncExt(yy2048) { + } else if z.HasExtensions() && z.EncExt(yy2053) { } else { - z.EncFallback(yy2048) + z.EncFallback(yy2053) } } else { r.EncodeNil() } } else { - if yyq2040[2] { + if yyq2045[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2050 := &x.ListMeta - yym2051 := z.EncBinary() - _ = yym2051 + yy2055 := &x.ListMeta + yym2056 := z.EncBinary() + _ = yym2056 if false { - } else if z.HasExtensions() && z.EncExt(yy2050) { + } else if z.HasExtensions() && z.EncExt(yy2055) { } else { - z.EncFallback(yy2050) + z.EncFallback(yy2055) } } } - if yyr2040 || yy2arr2040 { + if yyr2045 || yy2arr2045 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2053 := z.EncBinary() - _ = yym2053 + yym2058 := z.EncBinary() + _ = yym2058 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -26384,15 +26432,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2054 := z.EncBinary() - _ = yym2054 + yym2059 := z.EncBinary() + _ = yym2059 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2040 || yy2arr2040 { + if yyr2045 || yy2arr2045 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26405,25 +26453,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2055 := z.DecBinary() - _ = yym2055 + yym2060 := z.DecBinary() + _ = yym2060 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2056 := r.ContainerType() - if yyct2056 == codecSelferValueTypeMap1234 { - yyl2056 := r.ReadMapStart() - if yyl2056 == 0 { + yyct2061 := r.ContainerType() + if yyct2061 == codecSelferValueTypeMap1234 { + yyl2061 := r.ReadMapStart() + if yyl2061 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2056, d) + x.codecDecodeSelfFromMap(yyl2061, d) } - } else if yyct2056 == codecSelferValueTypeArray1234 { - yyl2056 := r.ReadArrayStart() - if yyl2056 == 0 { + } else if yyct2061 == codecSelferValueTypeArray1234 { + yyl2061 := r.ReadArrayStart() + if yyl2061 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2056, d) + x.codecDecodeSelfFromArray(yyl2061, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26435,12 +26483,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2057Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2057Slc - var yyhl2057 bool = l >= 0 - for yyj2057 := 0; ; yyj2057++ { - if yyhl2057 { - if yyj2057 >= l { + var yys2062Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2062Slc + var yyhl2062 bool = l >= 0 + for yyj2062 := 0; ; yyj2062++ { + if yyhl2062 { + if yyj2062 >= l { break } } else { @@ -26449,10 +26497,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2057Slc = r.DecodeBytes(yys2057Slc, true, true) - yys2057 := string(yys2057Slc) + yys2062Slc = r.DecodeBytes(yys2062Slc, true, true) + yys2062 := string(yys2062Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2057 { + switch yys2062 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26469,31 +26517,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2060 := &x.ListMeta - yym2061 := z.DecBinary() - _ = yym2061 + yyv2065 := &x.ListMeta + yym2066 := z.DecBinary() + _ = yym2066 if false { - } else if z.HasExtensions() && z.DecExt(yyv2060) { + } else if z.HasExtensions() && z.DecExt(yyv2065) { } else { - z.DecFallback(yyv2060, false) + z.DecFallback(yyv2065, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2062 := &x.Items - yym2063 := z.DecBinary() - _ = yym2063 + yyv2067 := &x.Items + yym2068 := z.DecBinary() + _ = yym2068 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2062), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2067), d) } } default: - z.DecStructFieldNotFound(-1, yys2057) - } // end switch yys2057 - } // end for yyj2057 + z.DecStructFieldNotFound(-1, yys2062) + } // end switch yys2062 + } // end for yyj2062 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26501,16 +26549,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2064 int - var yyb2064 bool - var yyhl2064 bool = l >= 0 - yyj2064++ - if yyhl2064 { - yyb2064 = yyj2064 > l + var yyj2069 int + var yyb2069 bool + var yyhl2069 bool = l >= 0 + yyj2069++ + if yyhl2069 { + yyb2069 = yyj2069 > l } else { - yyb2064 = r.CheckBreak() + yyb2069 = r.CheckBreak() } - if yyb2064 { + if yyb2069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26520,13 +26568,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2064++ - if yyhl2064 { - yyb2064 = yyj2064 > l + yyj2069++ + if yyhl2069 { + yyb2069 = yyj2069 > l } else { - yyb2064 = r.CheckBreak() + yyb2069 = r.CheckBreak() } - if yyb2064 { + if yyb2069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26536,13 +26584,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2064++ - if yyhl2064 { - yyb2064 = yyj2064 > l + yyj2069++ + if yyhl2069 { + yyb2069 = yyj2069 > l } else { - yyb2064 = r.CheckBreak() + yyb2069 = r.CheckBreak() } - if yyb2064 { + if yyb2069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26550,22 +26598,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2067 := &x.ListMeta - yym2068 := z.DecBinary() - _ = yym2068 + yyv2072 := &x.ListMeta + yym2073 := z.DecBinary() + _ = yym2073 if false { - } else if z.HasExtensions() && z.DecExt(yyv2067) { + } else if z.HasExtensions() && z.DecExt(yyv2072) { } else { - z.DecFallback(yyv2067, false) + z.DecFallback(yyv2072, false) } } - yyj2064++ - if yyhl2064 { - yyb2064 = yyj2064 > l + yyj2069++ + if yyhl2069 { + yyb2069 = yyj2069 > l } else { - yyb2064 = r.CheckBreak() + yyb2069 = r.CheckBreak() } - if yyb2064 { + if yyb2069 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26573,26 +26621,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2069 := &x.Items - yym2070 := z.DecBinary() - _ = yym2070 + yyv2074 := &x.Items + yym2075 := z.DecBinary() + _ = yym2075 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2069), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2074), d) } } for { - yyj2064++ - if yyhl2064 { - yyb2064 = yyj2064 > l + yyj2069++ + if yyhl2069 { + yyb2069 = yyj2069 > l } else { - yyb2064 = r.CheckBreak() + yyb2069 = r.CheckBreak() } - if yyb2064 { + if yyb2069 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2064-1, "") + z.DecStructFieldNotFound(yyj2069-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26604,37 +26652,37 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2071 := z.EncBinary() - _ = yym2071 + yym2076 := z.EncBinary() + _ = yym2076 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2072 := !z.EncBinary() - yy2arr2072 := z.EncBasicHandle().StructToArray - var yyq2072 [4]bool - _, _, _ = yysep2072, yyq2072, yy2arr2072 - const yyr2072 bool = false - yyq2072[0] = x.Kind != "" - yyq2072[1] = x.APIVersion != "" - yyq2072[2] = true - var yynn2072 int - if yyr2072 || yy2arr2072 { + yysep2077 := !z.EncBinary() + yy2arr2077 := z.EncBasicHandle().StructToArray + var yyq2077 [4]bool + _, _, _ = yysep2077, yyq2077, yy2arr2077 + const yyr2077 bool = false + yyq2077[0] = x.Kind != "" + yyq2077[1] = x.APIVersion != "" + yyq2077[2] = true + var yynn2077 int + if yyr2077 || yy2arr2077 { r.EncodeArrayStart(4) } else { - yynn2072 = 1 - for _, b := range yyq2072 { + yynn2077 = 1 + for _, b := range yyq2077 { if b { - yynn2072++ + yynn2077++ } } - r.EncodeMapStart(yynn2072) - yynn2072 = 0 + r.EncodeMapStart(yynn2077) + yynn2077 = 0 } - if yyr2072 || yy2arr2072 { + if yyr2077 || yy2arr2077 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2072[0] { - yym2074 := z.EncBinary() - _ = yym2074 + if yyq2077[0] { + yym2079 := z.EncBinary() + _ = yym2079 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -26643,23 +26691,23 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2072[0] { + if yyq2077[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2075 := z.EncBinary() - _ = yym2075 + yym2080 := z.EncBinary() + _ = yym2080 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2072 || yy2arr2072 { + if yyr2077 || yy2arr2077 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2072[1] { - yym2077 := z.EncBinary() - _ = yym2077 + if yyq2077[1] { + yym2082 := z.EncBinary() + _ = yym2082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -26668,42 +26716,42 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2072[1] { + if yyq2077[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2078 := z.EncBinary() - _ = yym2078 + yym2083 := z.EncBinary() + _ = yym2083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2072 || yy2arr2072 { + if yyr2077 || yy2arr2077 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2072[2] { - yy2080 := &x.ObjectMeta - yy2080.CodecEncodeSelf(e) + if yyq2077[2] { + yy2085 := &x.ObjectMeta + yy2085.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2072[2] { + if yyq2077[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2081 := &x.ObjectMeta - yy2081.CodecEncodeSelf(e) + yy2086 := &x.ObjectMeta + yy2086.CodecEncodeSelf(e) } } - if yyr2072 || yy2arr2072 { + if yyr2077 || yy2arr2077 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2083 := z.EncBinary() - _ = yym2083 + yym2088 := z.EncBinary() + _ = yym2088 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -26716,15 +26764,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2084 := z.EncBinary() - _ = yym2084 + yym2089 := z.EncBinary() + _ = yym2089 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2072 || yy2arr2072 { + if yyr2077 || yy2arr2077 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -26737,25 +26785,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2085 := z.DecBinary() - _ = yym2085 + yym2090 := z.DecBinary() + _ = yym2090 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2086 := r.ContainerType() - if yyct2086 == codecSelferValueTypeMap1234 { - yyl2086 := r.ReadMapStart() - if yyl2086 == 0 { + yyct2091 := r.ContainerType() + if yyct2091 == codecSelferValueTypeMap1234 { + yyl2091 := r.ReadMapStart() + if yyl2091 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2086, d) + x.codecDecodeSelfFromMap(yyl2091, d) } - } else if yyct2086 == codecSelferValueTypeArray1234 { - yyl2086 := r.ReadArrayStart() - if yyl2086 == 0 { + } else if yyct2091 == codecSelferValueTypeArray1234 { + yyl2091 := r.ReadArrayStart() + if yyl2091 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2086, d) + x.codecDecodeSelfFromArray(yyl2091, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -26767,12 +26815,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2087Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2087Slc - var yyhl2087 bool = l >= 0 - for yyj2087 := 0; ; yyj2087++ { - if yyhl2087 { - if yyj2087 >= l { + var yys2092Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2092Slc + var yyhl2092 bool = l >= 0 + for yyj2092 := 0; ; yyj2092++ { + if yyhl2092 { + if yyj2092 >= l { break } } else { @@ -26781,10 +26829,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2087Slc = r.DecodeBytes(yys2087Slc, true, true) - yys2087 := string(yys2087Slc) + yys2092Slc = r.DecodeBytes(yys2092Slc, true, true) + yys2092 := string(yys2092Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2087 { + switch yys2092 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -26801,25 +26849,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2090 := &x.ObjectMeta - yyv2090.CodecDecodeSelf(d) + yyv2095 := &x.ObjectMeta + yyv2095.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2091 := &x.Subsets - yym2092 := z.DecBinary() - _ = yym2092 + yyv2096 := &x.Subsets + yym2097 := z.DecBinary() + _ = yym2097 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2091), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2096), d) } } default: - z.DecStructFieldNotFound(-1, yys2087) - } // end switch yys2087 - } // end for yyj2087 + z.DecStructFieldNotFound(-1, yys2092) + } // end switch yys2092 + } // end for yyj2092 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -26827,16 +26875,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2093 int - var yyb2093 bool - var yyhl2093 bool = l >= 0 - yyj2093++ - if yyhl2093 { - yyb2093 = yyj2093 > l + var yyj2098 int + var yyb2098 bool + var yyhl2098 bool = l >= 0 + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2093 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2093 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26846,13 +26894,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2093++ - if yyhl2093 { - yyb2093 = yyj2093 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2093 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2093 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26862,13 +26910,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2093++ - if yyhl2093 { - yyb2093 = yyj2093 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2093 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2093 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26876,16 +26924,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2096 := &x.ObjectMeta - yyv2096.CodecDecodeSelf(d) + yyv2101 := &x.ObjectMeta + yyv2101.CodecDecodeSelf(d) } - yyj2093++ - if yyhl2093 { - yyb2093 = yyj2093 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2093 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2093 { + if yyb2098 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -26893,26 +26941,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2097 := &x.Subsets - yym2098 := z.DecBinary() - _ = yym2098 + yyv2102 := &x.Subsets + yym2103 := z.DecBinary() + _ = yym2103 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2097), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2102), d) } } for { - yyj2093++ - if yyhl2093 { - yyb2093 = yyj2093 > l + yyj2098++ + if yyhl2098 { + yyb2098 = yyj2098 > l } else { - yyb2093 = r.CheckBreak() + yyb2098 = r.CheckBreak() } - if yyb2093 { + if yyb2098 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2093-1, "") + z.DecStructFieldNotFound(yyj2098-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -26924,40 +26972,40 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2099 := z.EncBinary() - _ = yym2099 + yym2104 := z.EncBinary() + _ = yym2104 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2100 := !z.EncBinary() - yy2arr2100 := z.EncBasicHandle().StructToArray - var yyq2100 [3]bool - _, _, _ = yysep2100, yyq2100, yy2arr2100 - const yyr2100 bool = false - yyq2100[0] = len(x.Addresses) != 0 - yyq2100[1] = len(x.NotReadyAddresses) != 0 - yyq2100[2] = len(x.Ports) != 0 - var yynn2100 int - if yyr2100 || yy2arr2100 { + yysep2105 := !z.EncBinary() + yy2arr2105 := z.EncBasicHandle().StructToArray + var yyq2105 [3]bool + _, _, _ = yysep2105, yyq2105, yy2arr2105 + const yyr2105 bool = false + yyq2105[0] = len(x.Addresses) != 0 + yyq2105[1] = len(x.NotReadyAddresses) != 0 + yyq2105[2] = len(x.Ports) != 0 + var yynn2105 int + if yyr2105 || yy2arr2105 { r.EncodeArrayStart(3) } else { - yynn2100 = 0 - for _, b := range yyq2100 { + yynn2105 = 0 + for _, b := range yyq2105 { if b { - yynn2100++ + yynn2105++ } } - r.EncodeMapStart(yynn2100) - yynn2100 = 0 + r.EncodeMapStart(yynn2105) + yynn2105 = 0 } - if yyr2100 || yy2arr2100 { + if yyr2105 || yy2arr2105 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2100[0] { + if yyq2105[0] { if x.Addresses == nil { r.EncodeNil() } else { - yym2102 := z.EncBinary() - _ = yym2102 + yym2107 := z.EncBinary() + _ = yym2107 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -26967,15 +27015,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2100[0] { + if yyq2105[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2103 := z.EncBinary() - _ = yym2103 + yym2108 := z.EncBinary() + _ = yym2108 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) @@ -26983,14 +27031,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2100 || yy2arr2100 { + if yyr2105 || yy2arr2105 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2100[1] { + if yyq2105[1] { if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2105 := z.EncBinary() - _ = yym2105 + yym2110 := z.EncBinary() + _ = yym2110 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27000,15 +27048,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2100[1] { + if yyq2105[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NotReadyAddresses == nil { r.EncodeNil() } else { - yym2106 := z.EncBinary() - _ = yym2106 + yym2111 := z.EncBinary() + _ = yym2111 if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) @@ -27016,14 +27064,14 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2100 || yy2arr2100 { + if yyr2105 || yy2arr2105 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2100[2] { + if yyq2105[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2108 := z.EncBinary() - _ = yym2108 + yym2113 := z.EncBinary() + _ = yym2113 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27033,15 +27081,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2100[2] { + if yyq2105[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2109 := z.EncBinary() - _ = yym2109 + yym2114 := z.EncBinary() + _ = yym2114 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -27049,7 +27097,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2100 || yy2arr2100 { + if yyr2105 || yy2arr2105 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27062,25 +27110,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2110 := z.DecBinary() - _ = yym2110 + yym2115 := z.DecBinary() + _ = yym2115 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2111 := r.ContainerType() - if yyct2111 == codecSelferValueTypeMap1234 { - yyl2111 := r.ReadMapStart() - if yyl2111 == 0 { + yyct2116 := r.ContainerType() + if yyct2116 == codecSelferValueTypeMap1234 { + yyl2116 := r.ReadMapStart() + if yyl2116 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2111, d) + x.codecDecodeSelfFromMap(yyl2116, d) } - } else if yyct2111 == codecSelferValueTypeArray1234 { - yyl2111 := r.ReadArrayStart() - if yyl2111 == 0 { + } else if yyct2116 == codecSelferValueTypeArray1234 { + yyl2116 := r.ReadArrayStart() + if yyl2116 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2111, d) + x.codecDecodeSelfFromArray(yyl2116, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27092,12 +27140,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2112Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2112Slc - var yyhl2112 bool = l >= 0 - for yyj2112 := 0; ; yyj2112++ { - if yyhl2112 { - if yyj2112 >= l { + var yys2117Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2117Slc + var yyhl2117 bool = l >= 0 + for yyj2117 := 0; ; yyj2117++ { + if yyhl2117 { + if yyj2117 >= l { break } } else { @@ -27106,50 +27154,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2112Slc = r.DecodeBytes(yys2112Slc, true, true) - yys2112 := string(yys2112Slc) + yys2117Slc = r.DecodeBytes(yys2117Slc, true, true) + yys2117 := string(yys2117Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2112 { + switch yys2117 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2113 := &x.Addresses - yym2114 := z.DecBinary() - _ = yym2114 + yyv2118 := &x.Addresses + yym2119 := z.DecBinary() + _ = yym2119 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2113), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2118), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2115 := &x.NotReadyAddresses - yym2116 := z.DecBinary() - _ = yym2116 + yyv2120 := &x.NotReadyAddresses + yym2121 := z.DecBinary() + _ = yym2121 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2115), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2120), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2117 := &x.Ports - yym2118 := z.DecBinary() - _ = yym2118 + yyv2122 := &x.Ports + yym2123 := z.DecBinary() + _ = yym2123 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2117), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2122), d) } } default: - z.DecStructFieldNotFound(-1, yys2112) - } // end switch yys2112 - } // end for yyj2112 + z.DecStructFieldNotFound(-1, yys2117) + } // end switch yys2117 + } // end for yyj2117 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27157,16 +27205,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2119 int - var yyb2119 bool - var yyhl2119 bool = l >= 0 - yyj2119++ - if yyhl2119 { - yyb2119 = yyj2119 > l + var yyj2124 int + var yyb2124 bool + var yyhl2124 bool = l >= 0 + yyj2124++ + if yyhl2124 { + yyb2124 = yyj2124 > l } else { - yyb2119 = r.CheckBreak() + yyb2124 = r.CheckBreak() } - if yyb2119 { + if yyb2124 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27174,21 +27222,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2120 := &x.Addresses - yym2121 := z.DecBinary() - _ = yym2121 + yyv2125 := &x.Addresses + yym2126 := z.DecBinary() + _ = yym2126 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2120), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2125), d) } } - yyj2119++ - if yyhl2119 { - yyb2119 = yyj2119 > l + yyj2124++ + if yyhl2124 { + yyb2124 = yyj2124 > l } else { - yyb2119 = r.CheckBreak() + yyb2124 = r.CheckBreak() } - if yyb2119 { + if yyb2124 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27196,21 +27244,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2122 := &x.NotReadyAddresses - yym2123 := z.DecBinary() - _ = yym2123 + yyv2127 := &x.NotReadyAddresses + yym2128 := z.DecBinary() + _ = yym2128 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2122), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2127), d) } } - yyj2119++ - if yyhl2119 { - yyb2119 = yyj2119 > l + yyj2124++ + if yyhl2124 { + yyb2124 = yyj2124 > l } else { - yyb2119 = r.CheckBreak() + yyb2124 = r.CheckBreak() } - if yyb2119 { + if yyb2124 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27218,26 +27266,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2124 := &x.Ports - yym2125 := z.DecBinary() - _ = yym2125 + yyv2129 := &x.Ports + yym2130 := z.DecBinary() + _ = yym2130 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2124), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2129), d) } } for { - yyj2119++ - if yyhl2119 { - yyb2119 = yyj2119 > l + yyj2124++ + if yyhl2124 { + yyb2124 = yyj2124 > l } else { - yyb2119 = r.CheckBreak() + yyb2124 = r.CheckBreak() } - if yyb2119 { + if yyb2124 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2119-1, "") + z.DecStructFieldNotFound(yyj2124-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27249,34 +27297,34 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2126 := z.EncBinary() - _ = yym2126 + yym2131 := z.EncBinary() + _ = yym2131 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2127 := !z.EncBinary() - yy2arr2127 := z.EncBasicHandle().StructToArray - var yyq2127 [2]bool - _, _, _ = yysep2127, yyq2127, yy2arr2127 - const yyr2127 bool = false - yyq2127[1] = x.TargetRef != nil - var yynn2127 int - if yyr2127 || yy2arr2127 { + yysep2132 := !z.EncBinary() + yy2arr2132 := z.EncBasicHandle().StructToArray + var yyq2132 [2]bool + _, _, _ = yysep2132, yyq2132, yy2arr2132 + const yyr2132 bool = false + yyq2132[1] = x.TargetRef != nil + var yynn2132 int + if yyr2132 || yy2arr2132 { r.EncodeArrayStart(2) } else { - yynn2127 = 1 - for _, b := range yyq2127 { + yynn2132 = 1 + for _, b := range yyq2132 { if b { - yynn2127++ + yynn2132++ } } - r.EncodeMapStart(yynn2127) - yynn2127 = 0 + r.EncodeMapStart(yynn2132) + yynn2132 = 0 } - if yyr2127 || yy2arr2127 { + if yyr2132 || yy2arr2132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2129 := z.EncBinary() - _ = yym2129 + yym2134 := z.EncBinary() + _ = yym2134 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -27285,16 +27333,16 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2130 := z.EncBinary() - _ = yym2130 + yym2135 := z.EncBinary() + _ = yym2135 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2127 || yy2arr2127 { + if yyr2132 || yy2arr2132 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2127[1] { + if yyq2132[1] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -27304,7 +27352,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2127[1] { + if yyq2132[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -27315,7 +27363,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2127 || yy2arr2127 { + if yyr2132 || yy2arr2132 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27328,25 +27376,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2132 := z.DecBinary() - _ = yym2132 + yym2137 := z.DecBinary() + _ = yym2137 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2133 := r.ContainerType() - if yyct2133 == codecSelferValueTypeMap1234 { - yyl2133 := r.ReadMapStart() - if yyl2133 == 0 { + yyct2138 := r.ContainerType() + if yyct2138 == codecSelferValueTypeMap1234 { + yyl2138 := r.ReadMapStart() + if yyl2138 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2133, d) + x.codecDecodeSelfFromMap(yyl2138, d) } - } else if yyct2133 == codecSelferValueTypeArray1234 { - yyl2133 := r.ReadArrayStart() - if yyl2133 == 0 { + } else if yyct2138 == codecSelferValueTypeArray1234 { + yyl2138 := r.ReadArrayStart() + if yyl2138 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2133, d) + x.codecDecodeSelfFromArray(yyl2138, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27358,12 +27406,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2134Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2134Slc - var yyhl2134 bool = l >= 0 - for yyj2134 := 0; ; yyj2134++ { - if yyhl2134 { - if yyj2134 >= l { + var yys2139Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2139Slc + var yyhl2139 bool = l >= 0 + for yyj2139 := 0; ; yyj2139++ { + if yyhl2139 { + if yyj2139 >= l { break } } else { @@ -27372,10 +27420,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2134Slc = r.DecodeBytes(yys2134Slc, true, true) - yys2134 := string(yys2134Slc) + yys2139Slc = r.DecodeBytes(yys2139Slc, true, true) + yys2139 := string(yys2139Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2134 { + switch yys2139 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -27394,9 +27442,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2134) - } // end switch yys2134 - } // end for yyj2134 + z.DecStructFieldNotFound(-1, yys2139) + } // end switch yys2139 + } // end for yyj2139 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27404,16 +27452,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2137 int - var yyb2137 bool - var yyhl2137 bool = l >= 0 - yyj2137++ - if yyhl2137 { - yyb2137 = yyj2137 > l + var yyj2142 int + var yyb2142 bool + var yyhl2142 bool = l >= 0 + yyj2142++ + if yyhl2142 { + yyb2142 = yyj2142 > l } else { - yyb2137 = r.CheckBreak() + yyb2142 = r.CheckBreak() } - if yyb2137 { + if yyb2142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27423,13 +27471,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2137++ - if yyhl2137 { - yyb2137 = yyj2137 > l + yyj2142++ + if yyhl2142 { + yyb2142 = yyj2142 > l } else { - yyb2137 = r.CheckBreak() + yyb2142 = r.CheckBreak() } - if yyb2137 { + if yyb2142 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27445,17 +27493,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2137++ - if yyhl2137 { - yyb2137 = yyj2137 > l + yyj2142++ + if yyhl2142 { + yyb2142 = yyj2142 > l } else { - yyb2137 = r.CheckBreak() + yyb2142 = r.CheckBreak() } - if yyb2137 { + if yyb2142 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2137-1, "") + z.DecStructFieldNotFound(yyj2142-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27467,36 +27515,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2140 := z.EncBinary() - _ = yym2140 + yym2145 := z.EncBinary() + _ = yym2145 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2141 := !z.EncBinary() - yy2arr2141 := z.EncBasicHandle().StructToArray - var yyq2141 [3]bool - _, _, _ = yysep2141, yyq2141, yy2arr2141 - const yyr2141 bool = false - yyq2141[0] = x.Name != "" - yyq2141[2] = x.Protocol != "" - var yynn2141 int - if yyr2141 || yy2arr2141 { + yysep2146 := !z.EncBinary() + yy2arr2146 := z.EncBasicHandle().StructToArray + var yyq2146 [3]bool + _, _, _ = yysep2146, yyq2146, yy2arr2146 + const yyr2146 bool = false + yyq2146[0] = x.Name != "" + yyq2146[2] = x.Protocol != "" + var yynn2146 int + if yyr2146 || yy2arr2146 { r.EncodeArrayStart(3) } else { - yynn2141 = 1 - for _, b := range yyq2141 { + yynn2146 = 1 + for _, b := range yyq2146 { if b { - yynn2141++ + yynn2146++ } } - r.EncodeMapStart(yynn2141) - yynn2141 = 0 + r.EncodeMapStart(yynn2146) + yynn2146 = 0 } - if yyr2141 || yy2arr2141 { + if yyr2146 || yy2arr2146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2141[0] { - yym2143 := z.EncBinary() - _ = yym2143 + if yyq2146[0] { + yym2148 := z.EncBinary() + _ = yym2148 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -27505,22 +27553,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2141[0] { + if yyq2146[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2144 := z.EncBinary() - _ = yym2144 + yym2149 := z.EncBinary() + _ = yym2149 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2141 || yy2arr2141 { + if yyr2146 || yy2arr2146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2146 := z.EncBinary() - _ = yym2146 + yym2151 := z.EncBinary() + _ = yym2151 if false { } else { r.EncodeInt(int64(x.Port)) @@ -27529,29 +27577,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2147 := z.EncBinary() - _ = yym2147 + yym2152 := z.EncBinary() + _ = yym2152 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2141 || yy2arr2141 { + if yyr2146 || yy2arr2146 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2141[2] { + if yyq2146[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2141[2] { + if yyq2146[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2141 || yy2arr2141 { + if yyr2146 || yy2arr2146 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27564,25 +27612,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2149 := z.DecBinary() - _ = yym2149 + yym2154 := z.DecBinary() + _ = yym2154 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2150 := r.ContainerType() - if yyct2150 == codecSelferValueTypeMap1234 { - yyl2150 := r.ReadMapStart() - if yyl2150 == 0 { + yyct2155 := r.ContainerType() + if yyct2155 == codecSelferValueTypeMap1234 { + yyl2155 := r.ReadMapStart() + if yyl2155 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2150, d) + x.codecDecodeSelfFromMap(yyl2155, d) } - } else if yyct2150 == codecSelferValueTypeArray1234 { - yyl2150 := r.ReadArrayStart() - if yyl2150 == 0 { + } else if yyct2155 == codecSelferValueTypeArray1234 { + yyl2155 := r.ReadArrayStart() + if yyl2155 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2150, d) + x.codecDecodeSelfFromArray(yyl2155, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27594,12 +27642,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2151Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2151Slc - var yyhl2151 bool = l >= 0 - for yyj2151 := 0; ; yyj2151++ { - if yyhl2151 { - if yyj2151 >= l { + var yys2156Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2156Slc + var yyhl2156 bool = l >= 0 + for yyj2156 := 0; ; yyj2156++ { + if yyhl2156 { + if yyj2156 >= l { break } } else { @@ -27608,10 +27656,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2151Slc = r.DecodeBytes(yys2151Slc, true, true) - yys2151 := string(yys2151Slc) + yys2156Slc = r.DecodeBytes(yys2156Slc, true, true) + yys2156 := string(yys2156Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2151 { + switch yys2156 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -27631,9 +27679,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2151) - } // end switch yys2151 - } // end for yyj2151 + z.DecStructFieldNotFound(-1, yys2156) + } // end switch yys2156 + } // end for yyj2156 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27641,16 +27689,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2155 int - var yyb2155 bool - var yyhl2155 bool = l >= 0 - yyj2155++ - if yyhl2155 { - yyb2155 = yyj2155 > l + var yyj2160 int + var yyb2160 bool + var yyhl2160 bool = l >= 0 + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2155 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2155 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27660,13 +27708,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2155++ - if yyhl2155 { - yyb2155 = yyj2155 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2155 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2155 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27676,13 +27724,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2155++ - if yyhl2155 { - yyb2155 = yyj2155 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2155 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2155 { + if yyb2160 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27693,17 +27741,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2155++ - if yyhl2155 { - yyb2155 = yyj2155 > l + yyj2160++ + if yyhl2160 { + yyb2160 = yyj2160 > l } else { - yyb2155 = r.CheckBreak() + yyb2160 = r.CheckBreak() } - if yyb2155 { + if yyb2160 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2155-1, "") + z.DecStructFieldNotFound(yyj2160-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -27715,37 +27763,37 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2159 := z.EncBinary() - _ = yym2159 + yym2164 := z.EncBinary() + _ = yym2164 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2160 := !z.EncBinary() - yy2arr2160 := z.EncBasicHandle().StructToArray - var yyq2160 [4]bool - _, _, _ = yysep2160, yyq2160, yy2arr2160 - const yyr2160 bool = false - yyq2160[0] = x.Kind != "" - yyq2160[1] = x.APIVersion != "" - yyq2160[2] = true - var yynn2160 int - if yyr2160 || yy2arr2160 { + yysep2165 := !z.EncBinary() + yy2arr2165 := z.EncBasicHandle().StructToArray + var yyq2165 [4]bool + _, _, _ = yysep2165, yyq2165, yy2arr2165 + const yyr2165 bool = false + yyq2165[0] = x.Kind != "" + yyq2165[1] = x.APIVersion != "" + yyq2165[2] = true + var yynn2165 int + if yyr2165 || yy2arr2165 { r.EncodeArrayStart(4) } else { - yynn2160 = 1 - for _, b := range yyq2160 { + yynn2165 = 1 + for _, b := range yyq2165 { if b { - yynn2160++ + yynn2165++ } } - r.EncodeMapStart(yynn2160) - yynn2160 = 0 + r.EncodeMapStart(yynn2165) + yynn2165 = 0 } - if yyr2160 || yy2arr2160 { + if yyr2165 || yy2arr2165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2160[0] { - yym2162 := z.EncBinary() - _ = yym2162 + if yyq2165[0] { + yym2167 := z.EncBinary() + _ = yym2167 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -27754,23 +27802,23 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2160[0] { + if yyq2165[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2163 := z.EncBinary() - _ = yym2163 + yym2168 := z.EncBinary() + _ = yym2168 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2160 || yy2arr2160 { + if yyr2165 || yy2arr2165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2160[1] { - yym2165 := z.EncBinary() - _ = yym2165 + if yyq2165[1] { + yym2170 := z.EncBinary() + _ = yym2170 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -27779,54 +27827,54 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2160[1] { + if yyq2165[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2166 := z.EncBinary() - _ = yym2166 + yym2171 := z.EncBinary() + _ = yym2171 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2160 || yy2arr2160 { + if yyr2165 || yy2arr2165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2160[2] { - yy2168 := &x.ListMeta - yym2169 := z.EncBinary() - _ = yym2169 + if yyq2165[2] { + yy2173 := &x.ListMeta + yym2174 := z.EncBinary() + _ = yym2174 if false { - } else if z.HasExtensions() && z.EncExt(yy2168) { + } else if z.HasExtensions() && z.EncExt(yy2173) { } else { - z.EncFallback(yy2168) + z.EncFallback(yy2173) } } else { r.EncodeNil() } } else { - if yyq2160[2] { + if yyq2165[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2170 := &x.ListMeta - yym2171 := z.EncBinary() - _ = yym2171 + yy2175 := &x.ListMeta + yym2176 := z.EncBinary() + _ = yym2176 if false { - } else if z.HasExtensions() && z.EncExt(yy2170) { + } else if z.HasExtensions() && z.EncExt(yy2175) { } else { - z.EncFallback(yy2170) + z.EncFallback(yy2175) } } } - if yyr2160 || yy2arr2160 { + if yyr2165 || yy2arr2165 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2173 := z.EncBinary() - _ = yym2173 + yym2178 := z.EncBinary() + _ = yym2178 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -27839,15 +27887,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2174 := z.EncBinary() - _ = yym2174 + yym2179 := z.EncBinary() + _ = yym2179 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2160 || yy2arr2160 { + if yyr2165 || yy2arr2165 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -27860,25 +27908,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2175 := z.DecBinary() - _ = yym2175 + yym2180 := z.DecBinary() + _ = yym2180 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2176 := r.ContainerType() - if yyct2176 == codecSelferValueTypeMap1234 { - yyl2176 := r.ReadMapStart() - if yyl2176 == 0 { + yyct2181 := r.ContainerType() + if yyct2181 == codecSelferValueTypeMap1234 { + yyl2181 := r.ReadMapStart() + if yyl2181 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2176, d) + x.codecDecodeSelfFromMap(yyl2181, d) } - } else if yyct2176 == codecSelferValueTypeArray1234 { - yyl2176 := r.ReadArrayStart() - if yyl2176 == 0 { + } else if yyct2181 == codecSelferValueTypeArray1234 { + yyl2181 := r.ReadArrayStart() + if yyl2181 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2176, d) + x.codecDecodeSelfFromArray(yyl2181, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -27890,12 +27938,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2177Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2177Slc - var yyhl2177 bool = l >= 0 - for yyj2177 := 0; ; yyj2177++ { - if yyhl2177 { - if yyj2177 >= l { + var yys2182Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2182Slc + var yyhl2182 bool = l >= 0 + for yyj2182 := 0; ; yyj2182++ { + if yyhl2182 { + if yyj2182 >= l { break } } else { @@ -27904,10 +27952,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2177Slc = r.DecodeBytes(yys2177Slc, true, true) - yys2177 := string(yys2177Slc) + yys2182Slc = r.DecodeBytes(yys2182Slc, true, true) + yys2182 := string(yys2182Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2177 { + switch yys2182 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -27924,31 +27972,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2180 := &x.ListMeta - yym2181 := z.DecBinary() - _ = yym2181 + yyv2185 := &x.ListMeta + yym2186 := z.DecBinary() + _ = yym2186 if false { - } else if z.HasExtensions() && z.DecExt(yyv2180) { + } else if z.HasExtensions() && z.DecExt(yyv2185) { } else { - z.DecFallback(yyv2180, false) + z.DecFallback(yyv2185, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2182 := &x.Items - yym2183 := z.DecBinary() - _ = yym2183 + yyv2187 := &x.Items + yym2188 := z.DecBinary() + _ = yym2188 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2182), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2187), d) } } default: - z.DecStructFieldNotFound(-1, yys2177) - } // end switch yys2177 - } // end for yyj2177 + z.DecStructFieldNotFound(-1, yys2182) + } // end switch yys2182 + } // end for yyj2182 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -27956,16 +28004,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2184 int - var yyb2184 bool - var yyhl2184 bool = l >= 0 - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + var yyj2189 int + var yyb2189 bool + var yyhl2189 bool = l >= 0 + yyj2189++ + if yyhl2189 { + yyb2189 = yyj2189 > l } else { - yyb2184 = r.CheckBreak() + yyb2189 = r.CheckBreak() } - if yyb2184 { + if yyb2189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27975,13 +28023,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2189++ + if yyhl2189 { + yyb2189 = yyj2189 > l } else { - yyb2184 = r.CheckBreak() + yyb2189 = r.CheckBreak() } - if yyb2184 { + if yyb2189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -27991,13 +28039,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2189++ + if yyhl2189 { + yyb2189 = yyj2189 > l } else { - yyb2184 = r.CheckBreak() + yyb2189 = r.CheckBreak() } - if yyb2184 { + if yyb2189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28005,22 +28053,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2187 := &x.ListMeta - yym2188 := z.DecBinary() - _ = yym2188 + yyv2192 := &x.ListMeta + yym2193 := z.DecBinary() + _ = yym2193 if false { - } else if z.HasExtensions() && z.DecExt(yyv2187) { + } else if z.HasExtensions() && z.DecExt(yyv2192) { } else { - z.DecFallback(yyv2187, false) + z.DecFallback(yyv2192, false) } } - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2189++ + if yyhl2189 { + yyb2189 = yyj2189 > l } else { - yyb2184 = r.CheckBreak() + yyb2189 = r.CheckBreak() } - if yyb2184 { + if yyb2189 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28028,26 +28076,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2189 := &x.Items - yym2190 := z.DecBinary() - _ = yym2190 + yyv2194 := &x.Items + yym2195 := z.DecBinary() + _ = yym2195 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2189), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2194), d) } } for { - yyj2184++ - if yyhl2184 { - yyb2184 = yyj2184 > l + yyj2189++ + if yyhl2189 { + yyb2189 = yyj2189 > l } else { - yyb2184 = r.CheckBreak() + yyb2189 = r.CheckBreak() } - if yyb2184 { + if yyb2189 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2184-1, "") + z.DecStructFieldNotFound(yyj2189-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28059,38 +28107,38 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2191 := z.EncBinary() - _ = yym2191 + yym2196 := z.EncBinary() + _ = yym2196 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2192 := !z.EncBinary() - yy2arr2192 := z.EncBasicHandle().StructToArray - var yyq2192 [4]bool - _, _, _ = yysep2192, yyq2192, yy2arr2192 - const yyr2192 bool = false - yyq2192[0] = x.PodCIDR != "" - yyq2192[1] = x.ExternalID != "" - yyq2192[2] = x.ProviderID != "" - yyq2192[3] = x.Unschedulable != false - var yynn2192 int - if yyr2192 || yy2arr2192 { + yysep2197 := !z.EncBinary() + yy2arr2197 := z.EncBasicHandle().StructToArray + var yyq2197 [4]bool + _, _, _ = yysep2197, yyq2197, yy2arr2197 + const yyr2197 bool = false + yyq2197[0] = x.PodCIDR != "" + yyq2197[1] = x.ExternalID != "" + yyq2197[2] = x.ProviderID != "" + yyq2197[3] = x.Unschedulable != false + var yynn2197 int + if yyr2197 || yy2arr2197 { r.EncodeArrayStart(4) } else { - yynn2192 = 0 - for _, b := range yyq2192 { + yynn2197 = 0 + for _, b := range yyq2197 { if b { - yynn2192++ + yynn2197++ } } - r.EncodeMapStart(yynn2192) - yynn2192 = 0 + r.EncodeMapStart(yynn2197) + yynn2197 = 0 } - if yyr2192 || yy2arr2192 { + if yyr2197 || yy2arr2197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2192[0] { - yym2194 := z.EncBinary() - _ = yym2194 + if yyq2197[0] { + yym2199 := z.EncBinary() + _ = yym2199 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) @@ -28099,23 +28147,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2192[0] { + if yyq2197[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2195 := z.EncBinary() - _ = yym2195 + yym2200 := z.EncBinary() + _ = yym2200 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } } - if yyr2192 || yy2arr2192 { + if yyr2197 || yy2arr2197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2192[1] { - yym2197 := z.EncBinary() - _ = yym2197 + if yyq2197[1] { + yym2202 := z.EncBinary() + _ = yym2202 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) @@ -28124,23 +28172,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2192[1] { + if yyq2197[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2198 := z.EncBinary() - _ = yym2198 + yym2203 := z.EncBinary() + _ = yym2203 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2192 || yy2arr2192 { + if yyr2197 || yy2arr2197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2192[2] { - yym2200 := z.EncBinary() - _ = yym2200 + if yyq2197[2] { + yym2205 := z.EncBinary() + _ = yym2205 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -28149,23 +28197,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2192[2] { + if yyq2197[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2201 := z.EncBinary() - _ = yym2201 + yym2206 := z.EncBinary() + _ = yym2206 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2192 || yy2arr2192 { + if yyr2197 || yy2arr2197 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2192[3] { - yym2203 := z.EncBinary() - _ = yym2203 + if yyq2197[3] { + yym2208 := z.EncBinary() + _ = yym2208 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -28174,19 +28222,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2192[3] { + if yyq2197[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2204 := z.EncBinary() - _ = yym2204 + yym2209 := z.EncBinary() + _ = yym2209 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2192 || yy2arr2192 { + if yyr2197 || yy2arr2197 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28199,25 +28247,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2205 := z.DecBinary() - _ = yym2205 + yym2210 := z.DecBinary() + _ = yym2210 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2206 := r.ContainerType() - if yyct2206 == codecSelferValueTypeMap1234 { - yyl2206 := r.ReadMapStart() - if yyl2206 == 0 { + yyct2211 := r.ContainerType() + if yyct2211 == codecSelferValueTypeMap1234 { + yyl2211 := r.ReadMapStart() + if yyl2211 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2206, d) + x.codecDecodeSelfFromMap(yyl2211, d) } - } else if yyct2206 == codecSelferValueTypeArray1234 { - yyl2206 := r.ReadArrayStart() - if yyl2206 == 0 { + } else if yyct2211 == codecSelferValueTypeArray1234 { + yyl2211 := r.ReadArrayStart() + if yyl2211 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2206, d) + x.codecDecodeSelfFromArray(yyl2211, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28229,12 +28277,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2207Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2207Slc - var yyhl2207 bool = l >= 0 - for yyj2207 := 0; ; yyj2207++ { - if yyhl2207 { - if yyj2207 >= l { + var yys2212Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2212Slc + var yyhl2212 bool = l >= 0 + for yyj2212 := 0; ; yyj2212++ { + if yyhl2212 { + if yyj2212 >= l { break } } else { @@ -28243,10 +28291,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2207Slc = r.DecodeBytes(yys2207Slc, true, true) - yys2207 := string(yys2207Slc) + yys2212Slc = r.DecodeBytes(yys2212Slc, true, true) + yys2212 := string(yys2212Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2207 { + switch yys2212 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -28272,9 +28320,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2207) - } // end switch yys2207 - } // end for yyj2207 + z.DecStructFieldNotFound(-1, yys2212) + } // end switch yys2212 + } // end for yyj2212 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28282,16 +28330,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2212 int - var yyb2212 bool - var yyhl2212 bool = l >= 0 - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + var yyj2217 int + var yyb2217 bool + var yyhl2217 bool = l >= 0 + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2212 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2212 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28301,13 +28349,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2212 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2212 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28317,13 +28365,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2212 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2212 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28333,13 +28381,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2212 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2212 { + if yyb2217 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28350,17 +28398,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2212++ - if yyhl2212 { - yyb2212 = yyj2212 > l + yyj2217++ + if yyhl2217 { + yyb2217 = yyj2217 > l } else { - yyb2212 = r.CheckBreak() + yyb2217 = r.CheckBreak() } - if yyb2212 { + if yyb2217 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2212-1, "") + z.DecStructFieldNotFound(yyj2217-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28372,33 +28420,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2217 := z.EncBinary() - _ = yym2217 + yym2222 := z.EncBinary() + _ = yym2222 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2218 := !z.EncBinary() - yy2arr2218 := z.EncBasicHandle().StructToArray - var yyq2218 [1]bool - _, _, _ = yysep2218, yyq2218, yy2arr2218 - const yyr2218 bool = false - var yynn2218 int - if yyr2218 || yy2arr2218 { + yysep2223 := !z.EncBinary() + yy2arr2223 := z.EncBasicHandle().StructToArray + var yyq2223 [1]bool + _, _, _ = yysep2223, yyq2223, yy2arr2223 + const yyr2223 bool = false + var yynn2223 int + if yyr2223 || yy2arr2223 { r.EncodeArrayStart(1) } else { - yynn2218 = 1 - for _, b := range yyq2218 { + yynn2223 = 1 + for _, b := range yyq2223 { if b { - yynn2218++ + yynn2223++ } } - r.EncodeMapStart(yynn2218) - yynn2218 = 0 + r.EncodeMapStart(yynn2223) + yynn2223 = 0 } - if yyr2218 || yy2arr2218 { + if yyr2223 || yy2arr2223 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2220 := z.EncBinary() - _ = yym2220 + yym2225 := z.EncBinary() + _ = yym2225 if false { } else { r.EncodeInt(int64(x.Port)) @@ -28407,14 +28455,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2221 := z.EncBinary() - _ = yym2221 + yym2226 := z.EncBinary() + _ = yym2226 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2218 || yy2arr2218 { + if yyr2223 || yy2arr2223 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28427,25 +28475,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2222 := z.DecBinary() - _ = yym2222 + yym2227 := z.DecBinary() + _ = yym2227 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2223 := r.ContainerType() - if yyct2223 == codecSelferValueTypeMap1234 { - yyl2223 := r.ReadMapStart() - if yyl2223 == 0 { + yyct2228 := r.ContainerType() + if yyct2228 == codecSelferValueTypeMap1234 { + yyl2228 := r.ReadMapStart() + if yyl2228 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2223, d) + x.codecDecodeSelfFromMap(yyl2228, d) } - } else if yyct2223 == codecSelferValueTypeArray1234 { - yyl2223 := r.ReadArrayStart() - if yyl2223 == 0 { + } else if yyct2228 == codecSelferValueTypeArray1234 { + yyl2228 := r.ReadArrayStart() + if yyl2228 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2223, d) + x.codecDecodeSelfFromArray(yyl2228, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28457,12 +28505,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2224Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2224Slc - var yyhl2224 bool = l >= 0 - for yyj2224 := 0; ; yyj2224++ { - if yyhl2224 { - if yyj2224 >= l { + var yys2229Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2229Slc + var yyhl2229 bool = l >= 0 + for yyj2229 := 0; ; yyj2229++ { + if yyhl2229 { + if yyj2229 >= l { break } } else { @@ -28471,10 +28519,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2224Slc = r.DecodeBytes(yys2224Slc, true, true) - yys2224 := string(yys2224Slc) + yys2229Slc = r.DecodeBytes(yys2229Slc, true, true) + yys2229 := string(yys2229Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2224 { + switch yys2229 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -28482,9 +28530,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2224) - } // end switch yys2224 - } // end for yyj2224 + z.DecStructFieldNotFound(-1, yys2229) + } // end switch yys2229 + } // end for yyj2229 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28492,16 +28540,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2226 int - var yyb2226 bool - var yyhl2226 bool = l >= 0 - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + var yyj2231 int + var yyb2231 bool + var yyhl2231 bool = l >= 0 + yyj2231++ + if yyhl2231 { + yyb2231 = yyj2231 > l } else { - yyb2226 = r.CheckBreak() + yyb2231 = r.CheckBreak() } - if yyb2226 { + if yyb2231 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28512,17 +28560,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2226++ - if yyhl2226 { - yyb2226 = yyj2226 > l + yyj2231++ + if yyhl2231 { + yyb2231 = yyj2231 > l } else { - yyb2226 = r.CheckBreak() + yyb2231 = r.CheckBreak() } - if yyb2226 { + if yyb2231 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2226-1, "") + z.DecStructFieldNotFound(yyj2231-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28534,48 +28582,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2228 := z.EncBinary() - _ = yym2228 + yym2233 := z.EncBinary() + _ = yym2233 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2229 := !z.EncBinary() - yy2arr2229 := z.EncBasicHandle().StructToArray - var yyq2229 [1]bool - _, _, _ = yysep2229, yyq2229, yy2arr2229 - const yyr2229 bool = false - yyq2229[0] = true - var yynn2229 int - if yyr2229 || yy2arr2229 { + yysep2234 := !z.EncBinary() + yy2arr2234 := z.EncBasicHandle().StructToArray + var yyq2234 [1]bool + _, _, _ = yysep2234, yyq2234, yy2arr2234 + const yyr2234 bool = false + yyq2234[0] = true + var yynn2234 int + if yyr2234 || yy2arr2234 { r.EncodeArrayStart(1) } else { - yynn2229 = 0 - for _, b := range yyq2229 { + yynn2234 = 0 + for _, b := range yyq2234 { if b { - yynn2229++ + yynn2234++ } } - r.EncodeMapStart(yynn2229) - yynn2229 = 0 + r.EncodeMapStart(yynn2234) + yynn2234 = 0 } - if yyr2229 || yy2arr2229 { + if yyr2234 || yy2arr2234 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2229[0] { - yy2231 := &x.KubeletEndpoint - yy2231.CodecEncodeSelf(e) + if yyq2234[0] { + yy2236 := &x.KubeletEndpoint + yy2236.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2229[0] { + if yyq2234[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2232 := &x.KubeletEndpoint - yy2232.CodecEncodeSelf(e) + yy2237 := &x.KubeletEndpoint + yy2237.CodecEncodeSelf(e) } } - if yyr2229 || yy2arr2229 { + if yyr2234 || yy2arr2234 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28588,25 +28636,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2233 := z.DecBinary() - _ = yym2233 + yym2238 := z.DecBinary() + _ = yym2238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2234 := r.ContainerType() - if yyct2234 == codecSelferValueTypeMap1234 { - yyl2234 := r.ReadMapStart() - if yyl2234 == 0 { + yyct2239 := r.ContainerType() + if yyct2239 == codecSelferValueTypeMap1234 { + yyl2239 := r.ReadMapStart() + if yyl2239 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2234, d) + x.codecDecodeSelfFromMap(yyl2239, d) } - } else if yyct2234 == codecSelferValueTypeArray1234 { - yyl2234 := r.ReadArrayStart() - if yyl2234 == 0 { + } else if yyct2239 == codecSelferValueTypeArray1234 { + yyl2239 := r.ReadArrayStart() + if yyl2239 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2234, d) + x.codecDecodeSelfFromArray(yyl2239, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28618,12 +28666,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2235Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2235Slc - var yyhl2235 bool = l >= 0 - for yyj2235 := 0; ; yyj2235++ { - if yyhl2235 { - if yyj2235 >= l { + var yys2240Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2240Slc + var yyhl2240 bool = l >= 0 + for yyj2240 := 0; ; yyj2240++ { + if yyhl2240 { + if yyj2240 >= l { break } } else { @@ -28632,21 +28680,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2235Slc = r.DecodeBytes(yys2235Slc, true, true) - yys2235 := string(yys2235Slc) + yys2240Slc = r.DecodeBytes(yys2240Slc, true, true) + yys2240 := string(yys2240Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2235 { + switch yys2240 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2236 := &x.KubeletEndpoint - yyv2236.CodecDecodeSelf(d) + yyv2241 := &x.KubeletEndpoint + yyv2241.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2235) - } // end switch yys2235 - } // end for yyj2235 + z.DecStructFieldNotFound(-1, yys2240) + } // end switch yys2240 + } // end for yyj2240 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28654,16 +28702,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2237 int - var yyb2237 bool - var yyhl2237 bool = l >= 0 - yyj2237++ - if yyhl2237 { - yyb2237 = yyj2237 > l + var yyj2242 int + var yyb2242 bool + var yyhl2242 bool = l >= 0 + yyj2242++ + if yyhl2242 { + yyb2242 = yyj2242 > l } else { - yyb2237 = r.CheckBreak() + yyb2242 = r.CheckBreak() } - if yyb2237 { + if yyb2242 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28671,21 +28719,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2238 := &x.KubeletEndpoint - yyv2238.CodecDecodeSelf(d) + yyv2243 := &x.KubeletEndpoint + yyv2243.CodecDecodeSelf(d) } for { - yyj2237++ - if yyhl2237 { - yyb2237 = yyj2237 > l + yyj2242++ + if yyhl2242 { + yyb2242 = yyj2242 > l } else { - yyb2237 = r.CheckBreak() + yyb2242 = r.CheckBreak() } - if yyb2237 { + if yyb2242 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2237-1, "") + z.DecStructFieldNotFound(yyj2242-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28697,33 +28745,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2239 := z.EncBinary() - _ = yym2239 + yym2244 := z.EncBinary() + _ = yym2244 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2240 := !z.EncBinary() - yy2arr2240 := z.EncBasicHandle().StructToArray - var yyq2240 [8]bool - _, _, _ = yysep2240, yyq2240, yy2arr2240 - const yyr2240 bool = false - var yynn2240 int - if yyr2240 || yy2arr2240 { + yysep2245 := !z.EncBinary() + yy2arr2245 := z.EncBasicHandle().StructToArray + var yyq2245 [8]bool + _, _, _ = yysep2245, yyq2245, yy2arr2245 + const yyr2245 bool = false + var yynn2245 int + if yyr2245 || yy2arr2245 { r.EncodeArrayStart(8) } else { - yynn2240 = 8 - for _, b := range yyq2240 { + yynn2245 = 8 + for _, b := range yyq2245 { if b { - yynn2240++ + yynn2245++ } } - r.EncodeMapStart(yynn2240) - yynn2240 = 0 + r.EncodeMapStart(yynn2245) + yynn2245 = 0 } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2242 := z.EncBinary() - _ = yym2242 + yym2247 := z.EncBinary() + _ = yym2247 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -28732,17 +28780,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2243 := z.EncBinary() - _ = yym2243 + yym2248 := z.EncBinary() + _ = yym2248 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2245 := z.EncBinary() - _ = yym2245 + yym2250 := z.EncBinary() + _ = yym2250 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -28751,17 +28799,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2246 := z.EncBinary() - _ = yym2246 + yym2251 := z.EncBinary() + _ = yym2251 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2248 := z.EncBinary() - _ = yym2248 + yym2253 := z.EncBinary() + _ = yym2253 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -28770,17 +28818,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2249 := z.EncBinary() - _ = yym2249 + yym2254 := z.EncBinary() + _ = yym2254 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2251 := z.EncBinary() - _ = yym2251 + yym2256 := z.EncBinary() + _ = yym2256 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -28789,17 +28837,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2252 := z.EncBinary() - _ = yym2252 + yym2257 := z.EncBinary() + _ = yym2257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2254 := z.EncBinary() - _ = yym2254 + yym2259 := z.EncBinary() + _ = yym2259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OsImage)) @@ -28808,17 +28856,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2255 := z.EncBinary() - _ = yym2255 + yym2260 := z.EncBinary() + _ = yym2260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OsImage)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2257 := z.EncBinary() - _ = yym2257 + yym2262 := z.EncBinary() + _ = yym2262 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -28827,17 +28875,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2258 := z.EncBinary() - _ = yym2258 + yym2263 := z.EncBinary() + _ = yym2263 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2260 := z.EncBinary() - _ = yym2260 + yym2265 := z.EncBinary() + _ = yym2265 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -28846,17 +28894,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2261 := z.EncBinary() - _ = yym2261 + yym2266 := z.EncBinary() + _ = yym2266 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2263 := z.EncBinary() - _ = yym2263 + yym2268 := z.EncBinary() + _ = yym2268 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -28865,14 +28913,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2264 := z.EncBinary() - _ = yym2264 + yym2269 := z.EncBinary() + _ = yym2269 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr2240 || yy2arr2240 { + if yyr2245 || yy2arr2245 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28885,25 +28933,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2265 := z.DecBinary() - _ = yym2265 + yym2270 := z.DecBinary() + _ = yym2270 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2266 := r.ContainerType() - if yyct2266 == codecSelferValueTypeMap1234 { - yyl2266 := r.ReadMapStart() - if yyl2266 == 0 { + yyct2271 := r.ContainerType() + if yyct2271 == codecSelferValueTypeMap1234 { + yyl2271 := r.ReadMapStart() + if yyl2271 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2266, d) + x.codecDecodeSelfFromMap(yyl2271, d) } - } else if yyct2266 == codecSelferValueTypeArray1234 { - yyl2266 := r.ReadArrayStart() - if yyl2266 == 0 { + } else if yyct2271 == codecSelferValueTypeArray1234 { + yyl2271 := r.ReadArrayStart() + if yyl2271 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2266, d) + x.codecDecodeSelfFromArray(yyl2271, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28915,12 +28963,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2267Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2267Slc - var yyhl2267 bool = l >= 0 - for yyj2267 := 0; ; yyj2267++ { - if yyhl2267 { - if yyj2267 >= l { + var yys2272Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2272Slc + var yyhl2272 bool = l >= 0 + for yyj2272 := 0; ; yyj2272++ { + if yyhl2272 { + if yyj2272 >= l { break } } else { @@ -28929,10 +28977,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2267Slc = r.DecodeBytes(yys2267Slc, true, true) - yys2267 := string(yys2267Slc) + yys2272Slc = r.DecodeBytes(yys2272Slc, true, true) + yys2272 := string(yys2272Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2267 { + switch yys2272 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -28982,9 +29030,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2267) - } // end switch yys2267 - } // end for yyj2267 + z.DecStructFieldNotFound(-1, yys2272) + } // end switch yys2272 + } // end for yyj2272 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28992,16 +29040,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2276 int - var yyb2276 bool - var yyhl2276 bool = l >= 0 - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + var yyj2281 int + var yyb2281 bool + var yyhl2281 bool = l >= 0 + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29011,13 +29059,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29027,13 +29075,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29043,13 +29091,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29059,13 +29107,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29075,13 +29123,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OsImage = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29091,13 +29139,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29107,13 +29155,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29124,17 +29172,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.KubeProxyVersion = string(r.DecodeString()) } for { - yyj2276++ - if yyhl2276 { - yyb2276 = yyj2276 > l + yyj2281++ + if yyhl2281 { + yyb2281 = yyj2281 > l } else { - yyb2276 = r.CheckBreak() + yyb2281 = r.CheckBreak() } - if yyb2276 { + if yyb2281 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2276-1, "") + z.DecStructFieldNotFound(yyj2281-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29146,38 +29194,38 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2285 := z.EncBinary() - _ = yym2285 + yym2290 := z.EncBinary() + _ = yym2290 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2286 := !z.EncBinary() - yy2arr2286 := z.EncBasicHandle().StructToArray - var yyq2286 [6]bool - _, _, _ = yysep2286, yyq2286, yy2arr2286 - const yyr2286 bool = false - yyq2286[0] = len(x.Capacity) != 0 - yyq2286[1] = x.Phase != "" - yyq2286[2] = len(x.Conditions) != 0 - yyq2286[3] = len(x.Addresses) != 0 - yyq2286[4] = true - yyq2286[5] = true - var yynn2286 int - if yyr2286 || yy2arr2286 { + yysep2291 := !z.EncBinary() + yy2arr2291 := z.EncBasicHandle().StructToArray + var yyq2291 [6]bool + _, _, _ = yysep2291, yyq2291, yy2arr2291 + const yyr2291 bool = false + yyq2291[0] = len(x.Capacity) != 0 + yyq2291[1] = x.Phase != "" + yyq2291[2] = len(x.Conditions) != 0 + yyq2291[3] = len(x.Addresses) != 0 + yyq2291[4] = true + yyq2291[5] = true + var yynn2291 int + if yyr2291 || yy2arr2291 { r.EncodeArrayStart(6) } else { - yynn2286 = 0 - for _, b := range yyq2286 { + yynn2291 = 0 + for _, b := range yyq2291 { if b { - yynn2286++ + yynn2291++ } } - r.EncodeMapStart(yynn2286) - yynn2286 = 0 + r.EncodeMapStart(yynn2291) + yynn2291 = 0 } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[0] { + if yyq2291[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -29187,7 +29235,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2286[0] { + if yyq2291[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -29198,29 +29246,29 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[1] { + if yyq2291[1] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2286[1] { + if yyq2291[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[2] { + if yyq2291[2] { if x.Conditions == nil { r.EncodeNil() } else { - yym2290 := z.EncBinary() - _ = yym2290 + yym2295 := z.EncBinary() + _ = yym2295 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29230,15 +29278,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2286[2] { + if yyq2291[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2291 := z.EncBinary() - _ = yym2291 + yym2296 := z.EncBinary() + _ = yym2296 if false { } else { h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) @@ -29246,14 +29294,14 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[3] { + if yyq2291[3] { if x.Addresses == nil { r.EncodeNil() } else { - yym2293 := z.EncBinary() - _ = yym2293 + yym2298 := z.EncBinary() + _ = yym2298 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29263,15 +29311,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2286[3] { + if yyq2291[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Addresses == nil { r.EncodeNil() } else { - yym2294 := z.EncBinary() - _ = yym2294 + yym2299 := z.EncBinary() + _ = yym2299 if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) @@ -29279,41 +29327,41 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[4] { - yy2296 := &x.DaemonEndpoints - yy2296.CodecEncodeSelf(e) + if yyq2291[4] { + yy2301 := &x.DaemonEndpoints + yy2301.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2286[4] { + if yyq2291[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2297 := &x.DaemonEndpoints - yy2297.CodecEncodeSelf(e) + yy2302 := &x.DaemonEndpoints + yy2302.CodecEncodeSelf(e) } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2286[5] { - yy2299 := &x.NodeInfo - yy2299.CodecEncodeSelf(e) + if yyq2291[5] { + yy2304 := &x.NodeInfo + yy2304.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2286[5] { + if yyq2291[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2300 := &x.NodeInfo - yy2300.CodecEncodeSelf(e) + yy2305 := &x.NodeInfo + yy2305.CodecEncodeSelf(e) } } - if yyr2286 || yy2arr2286 { + if yyr2291 || yy2arr2291 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29326,25 +29374,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2301 := z.DecBinary() - _ = yym2301 + yym2306 := z.DecBinary() + _ = yym2306 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2302 := r.ContainerType() - if yyct2302 == codecSelferValueTypeMap1234 { - yyl2302 := r.ReadMapStart() - if yyl2302 == 0 { + yyct2307 := r.ContainerType() + if yyct2307 == codecSelferValueTypeMap1234 { + yyl2307 := r.ReadMapStart() + if yyl2307 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2302, d) + x.codecDecodeSelfFromMap(yyl2307, d) } - } else if yyct2302 == codecSelferValueTypeArray1234 { - yyl2302 := r.ReadArrayStart() - if yyl2302 == 0 { + } else if yyct2307 == codecSelferValueTypeArray1234 { + yyl2307 := r.ReadArrayStart() + if yyl2307 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2302, d) + x.codecDecodeSelfFromArray(yyl2307, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29356,12 +29404,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2303Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2303Slc - var yyhl2303 bool = l >= 0 - for yyj2303 := 0; ; yyj2303++ { - if yyhl2303 { - if yyj2303 >= l { + var yys2308Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2308Slc + var yyhl2308 bool = l >= 0 + for yyj2308 := 0; ; yyj2308++ { + if yyhl2308 { + if yyj2308 >= l { break } } else { @@ -29370,16 +29418,16 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2303Slc = r.DecodeBytes(yys2303Slc, true, true) - yys2303 := string(yys2303Slc) + yys2308Slc = r.DecodeBytes(yys2308Slc, true, true) + yys2308 := string(yys2308Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2303 { + switch yys2308 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2304 := &x.Capacity - yyv2304.CodecDecodeSelf(d) + yyv2309 := &x.Capacity + yyv2309.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -29391,44 +29439,44 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2306 := &x.Conditions - yym2307 := z.DecBinary() - _ = yym2307 + yyv2311 := &x.Conditions + yym2312 := z.DecBinary() + _ = yym2312 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2306), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2311), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2308 := &x.Addresses - yym2309 := z.DecBinary() - _ = yym2309 + yyv2313 := &x.Addresses + yym2314 := z.DecBinary() + _ = yym2314 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2308), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2313), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2310 := &x.DaemonEndpoints - yyv2310.CodecDecodeSelf(d) + yyv2315 := &x.DaemonEndpoints + yyv2315.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2311 := &x.NodeInfo - yyv2311.CodecDecodeSelf(d) + yyv2316 := &x.NodeInfo + yyv2316.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2303) - } // end switch yys2303 - } // end for yyj2303 + z.DecStructFieldNotFound(-1, yys2308) + } // end switch yys2308 + } // end for yyj2308 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29436,16 +29484,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2312 int - var yyb2312 bool - var yyhl2312 bool = l >= 0 - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + var yyj2317 int + var yyb2317 bool + var yyhl2317 bool = l >= 0 + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29453,16 +29501,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv2313 := &x.Capacity - yyv2313.CodecDecodeSelf(d) + yyv2318 := &x.Capacity + yyv2318.CodecDecodeSelf(d) } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29472,13 +29520,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29486,21 +29534,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2315 := &x.Conditions - yym2316 := z.DecBinary() - _ = yym2316 + yyv2320 := &x.Conditions + yym2321 := z.DecBinary() + _ = yym2321 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv2315), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv2320), d) } } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29508,21 +29556,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2317 := &x.Addresses - yym2318 := z.DecBinary() - _ = yym2318 + yyv2322 := &x.Addresses + yym2323 := z.DecBinary() + _ = yym2323 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv2317), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv2322), d) } } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29530,16 +29578,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv2319 := &x.DaemonEndpoints - yyv2319.CodecDecodeSelf(d) + yyv2324 := &x.DaemonEndpoints + yyv2324.CodecDecodeSelf(d) } - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29547,21 +29595,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv2320 := &x.NodeInfo - yyv2320.CodecDecodeSelf(d) + yyv2325 := &x.NodeInfo + yyv2325.CodecDecodeSelf(d) } for { - yyj2312++ - if yyhl2312 { - yyb2312 = yyj2312 > l + yyj2317++ + if yyhl2317 { + yyb2317 = yyj2317 > l } else { - yyb2312 = r.CheckBreak() + yyb2317 = r.CheckBreak() } - if yyb2312 { + if yyb2317 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2312-1, "") + z.DecStructFieldNotFound(yyj2317-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29570,8 +29618,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2321 := z.EncBinary() - _ = yym2321 + yym2326 := z.EncBinary() + _ = yym2326 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29583,8 +29631,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2322 := z.DecBinary() - _ = yym2322 + yym2327 := z.DecBinary() + _ = yym2327 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29596,8 +29644,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2323 := z.EncBinary() - _ = yym2323 + yym2328 := z.EncBinary() + _ = yym2328 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29609,8 +29657,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2324 := z.DecBinary() - _ = yym2324 + yym2329 := z.DecBinary() + _ = yym2329 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29625,34 +29673,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2325 := z.EncBinary() - _ = yym2325 + yym2330 := z.EncBinary() + _ = yym2330 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2326 := !z.EncBinary() - yy2arr2326 := z.EncBasicHandle().StructToArray - var yyq2326 [6]bool - _, _, _ = yysep2326, yyq2326, yy2arr2326 - const yyr2326 bool = false - yyq2326[2] = true - yyq2326[3] = true - yyq2326[4] = x.Reason != "" - yyq2326[5] = x.Message != "" - var yynn2326 int - if yyr2326 || yy2arr2326 { + yysep2331 := !z.EncBinary() + yy2arr2331 := z.EncBasicHandle().StructToArray + var yyq2331 [6]bool + _, _, _ = yysep2331, yyq2331, yy2arr2331 + const yyr2331 bool = false + yyq2331[2] = true + yyq2331[3] = true + yyq2331[4] = x.Reason != "" + yyq2331[5] = x.Message != "" + var yynn2331 int + if yyr2331 || yy2arr2331 { r.EncodeArrayStart(6) } else { - yynn2326 = 2 - for _, b := range yyq2326 { + yynn2331 = 2 + for _, b := range yyq2331 { if b { - yynn2326++ + yynn2331++ } } - r.EncodeMapStart(yynn2326) - yynn2326 = 0 + r.EncodeMapStart(yynn2331) + yynn2331 = 0 } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -29661,7 +29709,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -29670,85 +29718,85 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2326[2] { - yy2330 := &x.LastHeartbeatTime - yym2331 := z.EncBinary() - _ = yym2331 + if yyq2331[2] { + yy2335 := &x.LastHeartbeatTime + yym2336 := z.EncBinary() + _ = yym2336 if false { - } else if z.HasExtensions() && z.EncExt(yy2330) { - } else if yym2331 { - z.EncBinaryMarshal(yy2330) - } else if !yym2331 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2330) + } else if z.HasExtensions() && z.EncExt(yy2335) { + } else if yym2336 { + z.EncBinaryMarshal(yy2335) + } else if !yym2336 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2335) } else { - z.EncFallback(yy2330) + z.EncFallback(yy2335) } } else { r.EncodeNil() } } else { - if yyq2326[2] { + if yyq2331[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2332 := &x.LastHeartbeatTime - yym2333 := z.EncBinary() - _ = yym2333 + yy2337 := &x.LastHeartbeatTime + yym2338 := z.EncBinary() + _ = yym2338 if false { - } else if z.HasExtensions() && z.EncExt(yy2332) { - } else if yym2333 { - z.EncBinaryMarshal(yy2332) - } else if !yym2333 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2332) + } else if z.HasExtensions() && z.EncExt(yy2337) { + } else if yym2338 { + z.EncBinaryMarshal(yy2337) + } else if !yym2338 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2337) } else { - z.EncFallback(yy2332) + z.EncFallback(yy2337) } } } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2326[3] { - yy2335 := &x.LastTransitionTime - yym2336 := z.EncBinary() - _ = yym2336 + if yyq2331[3] { + yy2340 := &x.LastTransitionTime + yym2341 := z.EncBinary() + _ = yym2341 if false { - } else if z.HasExtensions() && z.EncExt(yy2335) { - } else if yym2336 { - z.EncBinaryMarshal(yy2335) - } else if !yym2336 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2335) + } else if z.HasExtensions() && z.EncExt(yy2340) { + } else if yym2341 { + z.EncBinaryMarshal(yy2340) + } else if !yym2341 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2340) } else { - z.EncFallback(yy2335) + z.EncFallback(yy2340) } } else { r.EncodeNil() } } else { - if yyq2326[3] { + if yyq2331[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2337 := &x.LastTransitionTime - yym2338 := z.EncBinary() - _ = yym2338 + yy2342 := &x.LastTransitionTime + yym2343 := z.EncBinary() + _ = yym2343 if false { - } else if z.HasExtensions() && z.EncExt(yy2337) { - } else if yym2338 { - z.EncBinaryMarshal(yy2337) - } else if !yym2338 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2337) + } else if z.HasExtensions() && z.EncExt(yy2342) { + } else if yym2343 { + z.EncBinaryMarshal(yy2342) + } else if !yym2343 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2342) } else { - z.EncFallback(yy2337) + z.EncFallback(yy2342) } } } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2326[4] { - yym2340 := z.EncBinary() - _ = yym2340 + if yyq2331[4] { + yym2345 := z.EncBinary() + _ = yym2345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -29757,23 +29805,23 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2326[4] { + if yyq2331[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2341 := z.EncBinary() - _ = yym2341 + yym2346 := z.EncBinary() + _ = yym2346 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2326[5] { - yym2343 := z.EncBinary() - _ = yym2343 + if yyq2331[5] { + yym2348 := z.EncBinary() + _ = yym2348 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -29782,19 +29830,19 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2326[5] { + if yyq2331[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2344 := z.EncBinary() - _ = yym2344 + yym2349 := z.EncBinary() + _ = yym2349 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2326 || yy2arr2326 { + if yyr2331 || yy2arr2331 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29807,25 +29855,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2345 := z.DecBinary() - _ = yym2345 + yym2350 := z.DecBinary() + _ = yym2350 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2346 := r.ContainerType() - if yyct2346 == codecSelferValueTypeMap1234 { - yyl2346 := r.ReadMapStart() - if yyl2346 == 0 { + yyct2351 := r.ContainerType() + if yyct2351 == codecSelferValueTypeMap1234 { + yyl2351 := r.ReadMapStart() + if yyl2351 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2346, d) + x.codecDecodeSelfFromMap(yyl2351, d) } - } else if yyct2346 == codecSelferValueTypeArray1234 { - yyl2346 := r.ReadArrayStart() - if yyl2346 == 0 { + } else if yyct2351 == codecSelferValueTypeArray1234 { + yyl2351 := r.ReadArrayStart() + if yyl2351 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2346, d) + x.codecDecodeSelfFromArray(yyl2351, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29837,12 +29885,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2347Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2347Slc - var yyhl2347 bool = l >= 0 - for yyj2347 := 0; ; yyj2347++ { - if yyhl2347 { - if yyj2347 >= l { + var yys2352Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2352Slc + var yyhl2352 bool = l >= 0 + for yyj2352 := 0; ; yyj2352++ { + if yyhl2352 { + if yyj2352 >= l { break } } else { @@ -29851,10 +29899,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2347Slc = r.DecodeBytes(yys2347Slc, true, true) - yys2347 := string(yys2347Slc) + yys2352Slc = r.DecodeBytes(yys2352Slc, true, true) + yys2352 := string(yys2352Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2347 { + switch yys2352 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -29871,34 +29919,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2350 := &x.LastHeartbeatTime - yym2351 := z.DecBinary() - _ = yym2351 + yyv2355 := &x.LastHeartbeatTime + yym2356 := z.DecBinary() + _ = yym2356 if false { - } else if z.HasExtensions() && z.DecExt(yyv2350) { - } else if yym2351 { - z.DecBinaryUnmarshal(yyv2350) - } else if !yym2351 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2350) + } else if z.HasExtensions() && z.DecExt(yyv2355) { + } else if yym2356 { + z.DecBinaryUnmarshal(yyv2355) + } else if !yym2356 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2355) } else { - z.DecFallback(yyv2350, false) + z.DecFallback(yyv2355, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2352 := &x.LastTransitionTime - yym2353 := z.DecBinary() - _ = yym2353 + yyv2357 := &x.LastTransitionTime + yym2358 := z.DecBinary() + _ = yym2358 if false { - } else if z.HasExtensions() && z.DecExt(yyv2352) { - } else if yym2353 { - z.DecBinaryUnmarshal(yyv2352) - } else if !yym2353 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2352) + } else if z.HasExtensions() && z.DecExt(yyv2357) { + } else if yym2358 { + z.DecBinaryUnmarshal(yyv2357) + } else if !yym2358 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2357) } else { - z.DecFallback(yyv2352, false) + z.DecFallback(yyv2357, false) } } case "reason": @@ -29914,9 +29962,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2347) - } // end switch yys2347 - } // end for yyj2347 + z.DecStructFieldNotFound(-1, yys2352) + } // end switch yys2352 + } // end for yyj2352 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29924,16 +29972,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2356 int - var yyb2356 bool - var yyhl2356 bool = l >= 0 - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + var yyj2361 int + var yyb2361 bool + var yyhl2361 bool = l >= 0 + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29943,13 +29991,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29959,13 +30007,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29973,26 +30021,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_unversioned.Time{} } else { - yyv2359 := &x.LastHeartbeatTime - yym2360 := z.DecBinary() - _ = yym2360 + yyv2364 := &x.LastHeartbeatTime + yym2365 := z.DecBinary() + _ = yym2365 if false { - } else if z.HasExtensions() && z.DecExt(yyv2359) { - } else if yym2360 { - z.DecBinaryUnmarshal(yyv2359) - } else if !yym2360 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2359) + } else if z.HasExtensions() && z.DecExt(yyv2364) { + } else if yym2365 { + z.DecBinaryUnmarshal(yyv2364) + } else if !yym2365 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2364) } else { - z.DecFallback(yyv2359, false) + z.DecFallback(yyv2364, false) } } - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30000,26 +30048,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_unversioned.Time{} } else { - yyv2361 := &x.LastTransitionTime - yym2362 := z.DecBinary() - _ = yym2362 + yyv2366 := &x.LastTransitionTime + yym2367 := z.DecBinary() + _ = yym2367 if false { - } else if z.HasExtensions() && z.DecExt(yyv2361) { - } else if yym2362 { - z.DecBinaryUnmarshal(yyv2361) - } else if !yym2362 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2361) + } else if z.HasExtensions() && z.DecExt(yyv2366) { + } else if yym2367 { + z.DecBinaryUnmarshal(yyv2366) + } else if !yym2367 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2366) } else { - z.DecFallback(yyv2361, false) + z.DecFallback(yyv2366, false) } } - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30029,13 +30077,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30046,17 +30094,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj2356++ - if yyhl2356 { - yyb2356 = yyj2356 > l + yyj2361++ + if yyhl2361 { + yyb2361 = yyj2361 > l } else { - yyb2356 = r.CheckBreak() + yyb2361 = r.CheckBreak() } - if yyb2356 { + if yyb2361 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2356-1, "") + z.DecStructFieldNotFound(yyj2361-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30065,8 +30113,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2365 := z.EncBinary() - _ = yym2365 + yym2370 := z.EncBinary() + _ = yym2370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30078,8 +30126,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2366 := z.DecBinary() - _ = yym2366 + yym2371 := z.DecBinary() + _ = yym2371 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30094,30 +30142,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2367 := z.EncBinary() - _ = yym2367 + yym2372 := z.EncBinary() + _ = yym2372 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2368 := !z.EncBinary() - yy2arr2368 := z.EncBasicHandle().StructToArray - var yyq2368 [2]bool - _, _, _ = yysep2368, yyq2368, yy2arr2368 - const yyr2368 bool = false - var yynn2368 int - if yyr2368 || yy2arr2368 { + yysep2373 := !z.EncBinary() + yy2arr2373 := z.EncBasicHandle().StructToArray + var yyq2373 [2]bool + _, _, _ = yysep2373, yyq2373, yy2arr2373 + const yyr2373 bool = false + var yynn2373 int + if yyr2373 || yy2arr2373 { r.EncodeArrayStart(2) } else { - yynn2368 = 2 - for _, b := range yyq2368 { + yynn2373 = 2 + for _, b := range yyq2373 { if b { - yynn2368++ + yynn2373++ } } - r.EncodeMapStart(yynn2368) - yynn2368 = 0 + r.EncodeMapStart(yynn2373) + yynn2373 = 0 } - if yyr2368 || yy2arr2368 { + if yyr2373 || yy2arr2373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -30126,10 +30174,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2368 || yy2arr2368 { + if yyr2373 || yy2arr2373 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2371 := z.EncBinary() - _ = yym2371 + yym2376 := z.EncBinary() + _ = yym2376 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -30138,14 +30186,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2372 := z.EncBinary() - _ = yym2372 + yym2377 := z.EncBinary() + _ = yym2377 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr2368 || yy2arr2368 { + if yyr2373 || yy2arr2373 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30158,25 +30206,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2373 := z.DecBinary() - _ = yym2373 + yym2378 := z.DecBinary() + _ = yym2378 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2374 := r.ContainerType() - if yyct2374 == codecSelferValueTypeMap1234 { - yyl2374 := r.ReadMapStart() - if yyl2374 == 0 { + yyct2379 := r.ContainerType() + if yyct2379 == codecSelferValueTypeMap1234 { + yyl2379 := r.ReadMapStart() + if yyl2379 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2374, d) + x.codecDecodeSelfFromMap(yyl2379, d) } - } else if yyct2374 == codecSelferValueTypeArray1234 { - yyl2374 := r.ReadArrayStart() - if yyl2374 == 0 { + } else if yyct2379 == codecSelferValueTypeArray1234 { + yyl2379 := r.ReadArrayStart() + if yyl2379 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2374, d) + x.codecDecodeSelfFromArray(yyl2379, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30188,12 +30236,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2375Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2375Slc - var yyhl2375 bool = l >= 0 - for yyj2375 := 0; ; yyj2375++ { - if yyhl2375 { - if yyj2375 >= l { + var yys2380Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2380Slc + var yyhl2380 bool = l >= 0 + for yyj2380 := 0; ; yyj2380++ { + if yyhl2380 { + if yyj2380 >= l { break } } else { @@ -30202,10 +30250,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2375Slc = r.DecodeBytes(yys2375Slc, true, true) - yys2375 := string(yys2375Slc) + yys2380Slc = r.DecodeBytes(yys2380Slc, true, true) + yys2380 := string(yys2380Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2375 { + switch yys2380 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -30219,9 +30267,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2375) - } // end switch yys2375 - } // end for yyj2375 + z.DecStructFieldNotFound(-1, yys2380) + } // end switch yys2380 + } // end for yyj2380 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30229,16 +30277,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2378 int - var yyb2378 bool - var yyhl2378 bool = l >= 0 - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + var yyj2383 int + var yyb2383 bool + var yyhl2383 bool = l >= 0 + yyj2383++ + if yyhl2383 { + yyb2383 = yyj2383 > l } else { - yyb2378 = r.CheckBreak() + yyb2383 = r.CheckBreak() } - if yyb2378 { + if yyb2383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30248,13 +30296,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2383++ + if yyhl2383 { + yyb2383 = yyj2383 > l } else { - yyb2378 = r.CheckBreak() + yyb2383 = r.CheckBreak() } - if yyb2378 { + if yyb2383 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30265,17 +30313,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj2378++ - if yyhl2378 { - yyb2378 = yyj2378 > l + yyj2383++ + if yyhl2383 { + yyb2383 = yyj2383 > l } else { - yyb2378 = r.CheckBreak() + yyb2383 = r.CheckBreak() } - if yyb2378 { + if yyb2383 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2378-1, "") + z.DecStructFieldNotFound(yyj2383-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30284,8 +30332,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2381 := z.EncBinary() - _ = yym2381 + yym2386 := z.EncBinary() + _ = yym2386 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30297,8 +30345,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2382 := z.DecBinary() - _ = yym2382 + yym2387 := z.DecBinary() + _ = yym2387 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30313,8 +30361,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2383 := z.EncBinary() - _ = yym2383 + yym2388 := z.EncBinary() + _ = yym2388 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -30327,8 +30375,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2384 := z.DecBinary() - _ = yym2384 + yym2389 := z.DecBinary() + _ = yym2389 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -30343,39 +30391,39 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2385 := z.EncBinary() - _ = yym2385 + yym2390 := z.EncBinary() + _ = yym2390 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2386 := !z.EncBinary() - yy2arr2386 := z.EncBasicHandle().StructToArray - var yyq2386 [5]bool - _, _, _ = yysep2386, yyq2386, yy2arr2386 - const yyr2386 bool = false - yyq2386[0] = x.Kind != "" - yyq2386[1] = x.APIVersion != "" - yyq2386[2] = true - yyq2386[3] = true - yyq2386[4] = true - var yynn2386 int - if yyr2386 || yy2arr2386 { + yysep2391 := !z.EncBinary() + yy2arr2391 := z.EncBasicHandle().StructToArray + var yyq2391 [5]bool + _, _, _ = yysep2391, yyq2391, yy2arr2391 + const yyr2391 bool = false + yyq2391[0] = x.Kind != "" + yyq2391[1] = x.APIVersion != "" + yyq2391[2] = true + yyq2391[3] = true + yyq2391[4] = true + var yynn2391 int + if yyr2391 || yy2arr2391 { r.EncodeArrayStart(5) } else { - yynn2386 = 0 - for _, b := range yyq2386 { + yynn2391 = 0 + for _, b := range yyq2391 { if b { - yynn2386++ + yynn2391++ } } - r.EncodeMapStart(yynn2386) - yynn2386 = 0 + r.EncodeMapStart(yynn2391) + yynn2391 = 0 } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2386[0] { - yym2388 := z.EncBinary() - _ = yym2388 + if yyq2391[0] { + yym2393 := z.EncBinary() + _ = yym2393 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30384,23 +30432,23 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2386[0] { + if yyq2391[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2389 := z.EncBinary() - _ = yym2389 + yym2394 := z.EncBinary() + _ = yym2394 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2386[1] { - yym2391 := z.EncBinary() - _ = yym2391 + if yyq2391[1] { + yym2396 := z.EncBinary() + _ = yym2396 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30409,70 +30457,70 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2386[1] { + if yyq2391[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2392 := z.EncBinary() - _ = yym2392 + yym2397 := z.EncBinary() + _ = yym2397 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2386[2] { - yy2394 := &x.ObjectMeta - yy2394.CodecEncodeSelf(e) + if yyq2391[2] { + yy2399 := &x.ObjectMeta + yy2399.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2386[2] { + if yyq2391[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2395 := &x.ObjectMeta - yy2395.CodecEncodeSelf(e) + yy2400 := &x.ObjectMeta + yy2400.CodecEncodeSelf(e) } } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2386[3] { - yy2397 := &x.Spec - yy2397.CodecEncodeSelf(e) + if yyq2391[3] { + yy2402 := &x.Spec + yy2402.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2386[3] { + if yyq2391[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2398 := &x.Spec - yy2398.CodecEncodeSelf(e) + yy2403 := &x.Spec + yy2403.CodecEncodeSelf(e) } } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2386[4] { - yy2400 := &x.Status - yy2400.CodecEncodeSelf(e) + if yyq2391[4] { + yy2405 := &x.Status + yy2405.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2386[4] { + if yyq2391[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2401 := &x.Status - yy2401.CodecEncodeSelf(e) + yy2406 := &x.Status + yy2406.CodecEncodeSelf(e) } } - if yyr2386 || yy2arr2386 { + if yyr2391 || yy2arr2391 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30485,25 +30533,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2402 := z.DecBinary() - _ = yym2402 + yym2407 := z.DecBinary() + _ = yym2407 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2403 := r.ContainerType() - if yyct2403 == codecSelferValueTypeMap1234 { - yyl2403 := r.ReadMapStart() - if yyl2403 == 0 { + yyct2408 := r.ContainerType() + if yyct2408 == codecSelferValueTypeMap1234 { + yyl2408 := r.ReadMapStart() + if yyl2408 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2403, d) + x.codecDecodeSelfFromMap(yyl2408, d) } - } else if yyct2403 == codecSelferValueTypeArray1234 { - yyl2403 := r.ReadArrayStart() - if yyl2403 == 0 { + } else if yyct2408 == codecSelferValueTypeArray1234 { + yyl2408 := r.ReadArrayStart() + if yyl2408 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2403, d) + x.codecDecodeSelfFromArray(yyl2408, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30515,12 +30563,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2404Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2404Slc - var yyhl2404 bool = l >= 0 - for yyj2404 := 0; ; yyj2404++ { - if yyhl2404 { - if yyj2404 >= l { + var yys2409Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2409Slc + var yyhl2409 bool = l >= 0 + for yyj2409 := 0; ; yyj2409++ { + if yyhl2409 { + if yyj2409 >= l { break } } else { @@ -30529,10 +30577,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2404Slc = r.DecodeBytes(yys2404Slc, true, true) - yys2404 := string(yys2404Slc) + yys2409Slc = r.DecodeBytes(yys2409Slc, true, true) + yys2409 := string(yys2409Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2404 { + switch yys2409 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30549,27 +30597,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2407 := &x.ObjectMeta - yyv2407.CodecDecodeSelf(d) + yyv2412 := &x.ObjectMeta + yyv2412.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2408 := &x.Spec - yyv2408.CodecDecodeSelf(d) + yyv2413 := &x.Spec + yyv2413.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2409 := &x.Status - yyv2409.CodecDecodeSelf(d) + yyv2414 := &x.Status + yyv2414.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2404) - } // end switch yys2404 - } // end for yyj2404 + z.DecStructFieldNotFound(-1, yys2409) + } // end switch yys2409 + } // end for yyj2409 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30577,16 +30625,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2410 int - var yyb2410 bool - var yyhl2410 bool = l >= 0 - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + var yyj2415 int + var yyb2415 bool + var yyhl2415 bool = l >= 0 + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30596,13 +30644,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30612,13 +30660,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30626,16 +30674,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2413 := &x.ObjectMeta - yyv2413.CodecDecodeSelf(d) + yyv2418 := &x.ObjectMeta + yyv2418.CodecDecodeSelf(d) } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30643,16 +30691,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv2414 := &x.Spec - yyv2414.CodecDecodeSelf(d) + yyv2419 := &x.Spec + yyv2419.CodecDecodeSelf(d) } - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30660,21 +30708,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv2415 := &x.Status - yyv2415.CodecDecodeSelf(d) + yyv2420 := &x.Status + yyv2420.CodecDecodeSelf(d) } for { - yyj2410++ - if yyhl2410 { - yyb2410 = yyj2410 > l + yyj2415++ + if yyhl2415 { + yyb2415 = yyj2415 > l } else { - yyb2410 = r.CheckBreak() + yyb2415 = r.CheckBreak() } - if yyb2410 { + if yyb2415 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2410-1, "") + z.DecStructFieldNotFound(yyj2415-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30686,37 +30734,37 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2416 := z.EncBinary() - _ = yym2416 + yym2421 := z.EncBinary() + _ = yym2421 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2417 := !z.EncBinary() - yy2arr2417 := z.EncBasicHandle().StructToArray - var yyq2417 [4]bool - _, _, _ = yysep2417, yyq2417, yy2arr2417 - const yyr2417 bool = false - yyq2417[0] = x.Kind != "" - yyq2417[1] = x.APIVersion != "" - yyq2417[2] = true - var yynn2417 int - if yyr2417 || yy2arr2417 { + yysep2422 := !z.EncBinary() + yy2arr2422 := z.EncBasicHandle().StructToArray + var yyq2422 [4]bool + _, _, _ = yysep2422, yyq2422, yy2arr2422 + const yyr2422 bool = false + yyq2422[0] = x.Kind != "" + yyq2422[1] = x.APIVersion != "" + yyq2422[2] = true + var yynn2422 int + if yyr2422 || yy2arr2422 { r.EncodeArrayStart(4) } else { - yynn2417 = 1 - for _, b := range yyq2417 { + yynn2422 = 1 + for _, b := range yyq2422 { if b { - yynn2417++ + yynn2422++ } } - r.EncodeMapStart(yynn2417) - yynn2417 = 0 + r.EncodeMapStart(yynn2422) + yynn2422 = 0 } - if yyr2417 || yy2arr2417 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2417[0] { - yym2419 := z.EncBinary() - _ = yym2419 + if yyq2422[0] { + yym2424 := z.EncBinary() + _ = yym2424 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -30725,23 +30773,23 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2417[0] { + if yyq2422[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2420 := z.EncBinary() - _ = yym2420 + yym2425 := z.EncBinary() + _ = yym2425 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2417 || yy2arr2417 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2417[1] { - yym2422 := z.EncBinary() - _ = yym2422 + if yyq2422[1] { + yym2427 := z.EncBinary() + _ = yym2427 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -30750,54 +30798,54 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2417[1] { + if yyq2422[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2423 := z.EncBinary() - _ = yym2423 + yym2428 := z.EncBinary() + _ = yym2428 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2417 || yy2arr2417 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2417[2] { - yy2425 := &x.ListMeta - yym2426 := z.EncBinary() - _ = yym2426 + if yyq2422[2] { + yy2430 := &x.ListMeta + yym2431 := z.EncBinary() + _ = yym2431 if false { - } else if z.HasExtensions() && z.EncExt(yy2425) { + } else if z.HasExtensions() && z.EncExt(yy2430) { } else { - z.EncFallback(yy2425) + z.EncFallback(yy2430) } } else { r.EncodeNil() } } else { - if yyq2417[2] { + if yyq2422[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2427 := &x.ListMeta - yym2428 := z.EncBinary() - _ = yym2428 + yy2432 := &x.ListMeta + yym2433 := z.EncBinary() + _ = yym2433 if false { - } else if z.HasExtensions() && z.EncExt(yy2427) { + } else if z.HasExtensions() && z.EncExt(yy2432) { } else { - z.EncFallback(yy2427) + z.EncFallback(yy2432) } } } - if yyr2417 || yy2arr2417 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2430 := z.EncBinary() - _ = yym2430 + yym2435 := z.EncBinary() + _ = yym2435 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -30810,15 +30858,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2431 := z.EncBinary() - _ = yym2431 + yym2436 := z.EncBinary() + _ = yym2436 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr2417 || yy2arr2417 { + if yyr2422 || yy2arr2422 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30831,25 +30879,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2432 := z.DecBinary() - _ = yym2432 + yym2437 := z.DecBinary() + _ = yym2437 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2433 := r.ContainerType() - if yyct2433 == codecSelferValueTypeMap1234 { - yyl2433 := r.ReadMapStart() - if yyl2433 == 0 { + yyct2438 := r.ContainerType() + if yyct2438 == codecSelferValueTypeMap1234 { + yyl2438 := r.ReadMapStart() + if yyl2438 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2433, d) + x.codecDecodeSelfFromMap(yyl2438, d) } - } else if yyct2433 == codecSelferValueTypeArray1234 { - yyl2433 := r.ReadArrayStart() - if yyl2433 == 0 { + } else if yyct2438 == codecSelferValueTypeArray1234 { + yyl2438 := r.ReadArrayStart() + if yyl2438 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2433, d) + x.codecDecodeSelfFromArray(yyl2438, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30861,12 +30909,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2434Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2434Slc - var yyhl2434 bool = l >= 0 - for yyj2434 := 0; ; yyj2434++ { - if yyhl2434 { - if yyj2434 >= l { + var yys2439Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2439Slc + var yyhl2439 bool = l >= 0 + for yyj2439 := 0; ; yyj2439++ { + if yyhl2439 { + if yyj2439 >= l { break } } else { @@ -30875,10 +30923,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2434Slc = r.DecodeBytes(yys2434Slc, true, true) - yys2434 := string(yys2434Slc) + yys2439Slc = r.DecodeBytes(yys2439Slc, true, true) + yys2439 := string(yys2439Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2434 { + switch yys2439 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30895,31 +30943,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2437 := &x.ListMeta - yym2438 := z.DecBinary() - _ = yym2438 + yyv2442 := &x.ListMeta + yym2443 := z.DecBinary() + _ = yym2443 if false { - } else if z.HasExtensions() && z.DecExt(yyv2437) { + } else if z.HasExtensions() && z.DecExt(yyv2442) { } else { - z.DecFallback(yyv2437, false) + z.DecFallback(yyv2442, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2439 := &x.Items - yym2440 := z.DecBinary() - _ = yym2440 + yyv2444 := &x.Items + yym2445 := z.DecBinary() + _ = yym2445 if false { } else { - h.decSliceNode((*[]Node)(yyv2439), d) + h.decSliceNode((*[]Node)(yyv2444), d) } } default: - z.DecStructFieldNotFound(-1, yys2434) - } // end switch yys2434 - } // end for yyj2434 + z.DecStructFieldNotFound(-1, yys2439) + } // end switch yys2439 + } // end for yyj2439 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30927,16 +30975,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2441 int - var yyb2441 bool - var yyhl2441 bool = l >= 0 - yyj2441++ - if yyhl2441 { - yyb2441 = yyj2441 > l + var yyj2446 int + var yyb2446 bool + var yyhl2446 bool = l >= 0 + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2441 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2441 { + if yyb2446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30946,13 +30994,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2441++ - if yyhl2441 { - yyb2441 = yyj2441 > l + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2441 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2441 { + if yyb2446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30962,13 +31010,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2441++ - if yyhl2441 { - yyb2441 = yyj2441 > l + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2441 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2441 { + if yyb2446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30976,22 +31024,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2444 := &x.ListMeta - yym2445 := z.DecBinary() - _ = yym2445 + yyv2449 := &x.ListMeta + yym2450 := z.DecBinary() + _ = yym2450 if false { - } else if z.HasExtensions() && z.DecExt(yyv2444) { + } else if z.HasExtensions() && z.DecExt(yyv2449) { } else { - z.DecFallback(yyv2444, false) + z.DecFallback(yyv2449, false) } } - yyj2441++ - if yyhl2441 { - yyb2441 = yyj2441 > l + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2441 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2441 { + if yyb2446 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30999,26 +31047,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2446 := &x.Items - yym2447 := z.DecBinary() - _ = yym2447 + yyv2451 := &x.Items + yym2452 := z.DecBinary() + _ = yym2452 if false { } else { - h.decSliceNode((*[]Node)(yyv2446), d) + h.decSliceNode((*[]Node)(yyv2451), d) } } for { - yyj2441++ - if yyhl2441 { - yyb2441 = yyj2441 > l + yyj2446++ + if yyhl2446 { + yyb2446 = yyj2446 > l } else { - yyb2441 = r.CheckBreak() + yyb2446 = r.CheckBreak() } - if yyb2441 { + if yyb2446 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2441-1, "") + z.DecStructFieldNotFound(yyj2446-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31027,8 +31075,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2448 := z.EncBinary() - _ = yym2448 + yym2453 := z.EncBinary() + _ = yym2453 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31040,8 +31088,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2449 := z.DecBinary() - _ = yym2449 + yym2454 := z.DecBinary() + _ = yym2454 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31056,38 +31104,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2450 := z.EncBinary() - _ = yym2450 + yym2455 := z.EncBinary() + _ = yym2455 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2451 := !z.EncBinary() - yy2arr2451 := z.EncBasicHandle().StructToArray - var yyq2451 [1]bool - _, _, _ = yysep2451, yyq2451, yy2arr2451 - const yyr2451 bool = false - yyq2451[0] = len(x.Finalizers) != 0 - var yynn2451 int - if yyr2451 || yy2arr2451 { + yysep2456 := !z.EncBinary() + yy2arr2456 := z.EncBasicHandle().StructToArray + var yyq2456 [1]bool + _, _, _ = yysep2456, yyq2456, yy2arr2456 + const yyr2456 bool = false + yyq2456[0] = len(x.Finalizers) != 0 + var yynn2456 int + if yyr2456 || yy2arr2456 { r.EncodeArrayStart(1) } else { - yynn2451 = 0 - for _, b := range yyq2451 { + yynn2456 = 0 + for _, b := range yyq2456 { if b { - yynn2451++ + yynn2456++ } } - r.EncodeMapStart(yynn2451) - yynn2451 = 0 + r.EncodeMapStart(yynn2456) + yynn2456 = 0 } - if yyr2451 || yy2arr2451 { + if yyr2456 || yy2arr2456 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2451[0] { + if yyq2456[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym2453 := z.EncBinary() - _ = yym2453 + yym2458 := z.EncBinary() + _ = yym2458 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -31097,15 +31145,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2451[0] { + if yyq2456[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym2454 := z.EncBinary() - _ = yym2454 + yym2459 := z.EncBinary() + _ = yym2459 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -31113,7 +31161,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2451 || yy2arr2451 { + if yyr2456 || yy2arr2456 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31126,25 +31174,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2455 := z.DecBinary() - _ = yym2455 + yym2460 := z.DecBinary() + _ = yym2460 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2456 := r.ContainerType() - if yyct2456 == codecSelferValueTypeMap1234 { - yyl2456 := r.ReadMapStart() - if yyl2456 == 0 { + yyct2461 := r.ContainerType() + if yyct2461 == codecSelferValueTypeMap1234 { + yyl2461 := r.ReadMapStart() + if yyl2461 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2456, d) + x.codecDecodeSelfFromMap(yyl2461, d) } - } else if yyct2456 == codecSelferValueTypeArray1234 { - yyl2456 := r.ReadArrayStart() - if yyl2456 == 0 { + } else if yyct2461 == codecSelferValueTypeArray1234 { + yyl2461 := r.ReadArrayStart() + if yyl2461 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2456, d) + x.codecDecodeSelfFromArray(yyl2461, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31156,12 +31204,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2457Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2457Slc - var yyhl2457 bool = l >= 0 - for yyj2457 := 0; ; yyj2457++ { - if yyhl2457 { - if yyj2457 >= l { + var yys2462Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2462Slc + var yyhl2462 bool = l >= 0 + for yyj2462 := 0; ; yyj2462++ { + if yyhl2462 { + if yyj2462 >= l { break } } else { @@ -31170,26 +31218,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2457Slc = r.DecodeBytes(yys2457Slc, true, true) - yys2457 := string(yys2457Slc) + yys2462Slc = r.DecodeBytes(yys2462Slc, true, true) + yys2462 := string(yys2462Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2457 { + switch yys2462 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2458 := &x.Finalizers - yym2459 := z.DecBinary() - _ = yym2459 + yyv2463 := &x.Finalizers + yym2464 := z.DecBinary() + _ = yym2464 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2458), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2463), d) } } default: - z.DecStructFieldNotFound(-1, yys2457) - } // end switch yys2457 - } // end for yyj2457 + z.DecStructFieldNotFound(-1, yys2462) + } // end switch yys2462 + } // end for yyj2462 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31197,16 +31245,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2460 int - var yyb2460 bool - var yyhl2460 bool = l >= 0 - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + var yyj2465 int + var yyb2465 bool + var yyhl2465 bool = l >= 0 + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2460 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2460 { + if yyb2465 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31214,26 +31262,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv2461 := &x.Finalizers - yym2462 := z.DecBinary() - _ = yym2462 + yyv2466 := &x.Finalizers + yym2467 := z.DecBinary() + _ = yym2467 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv2461), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv2466), d) } } for { - yyj2460++ - if yyhl2460 { - yyb2460 = yyj2460 > l + yyj2465++ + if yyhl2465 { + yyb2465 = yyj2465 > l } else { - yyb2460 = r.CheckBreak() + yyb2465 = r.CheckBreak() } - if yyb2460 { + if yyb2465 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2460-1, "") + z.DecStructFieldNotFound(yyj2465-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31245,46 +31293,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2463 := z.EncBinary() - _ = yym2463 + yym2468 := z.EncBinary() + _ = yym2468 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2464 := !z.EncBinary() - yy2arr2464 := z.EncBasicHandle().StructToArray - var yyq2464 [1]bool - _, _, _ = yysep2464, yyq2464, yy2arr2464 - const yyr2464 bool = false - yyq2464[0] = x.Phase != "" - var yynn2464 int - if yyr2464 || yy2arr2464 { + yysep2469 := !z.EncBinary() + yy2arr2469 := z.EncBasicHandle().StructToArray + var yyq2469 [1]bool + _, _, _ = yysep2469, yyq2469, yy2arr2469 + const yyr2469 bool = false + yyq2469[0] = x.Phase != "" + var yynn2469 int + if yyr2469 || yy2arr2469 { r.EncodeArrayStart(1) } else { - yynn2464 = 0 - for _, b := range yyq2464 { + yynn2469 = 0 + for _, b := range yyq2469 { if b { - yynn2464++ + yynn2469++ } } - r.EncodeMapStart(yynn2464) - yynn2464 = 0 + r.EncodeMapStart(yynn2469) + yynn2469 = 0 } - if yyr2464 || yy2arr2464 { + if yyr2469 || yy2arr2469 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2464[0] { + if yyq2469[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2464[0] { + if yyq2469[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2464 || yy2arr2464 { + if yyr2469 || yy2arr2469 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31297,25 +31345,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2466 := z.DecBinary() - _ = yym2466 + yym2471 := z.DecBinary() + _ = yym2471 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2467 := r.ContainerType() - if yyct2467 == codecSelferValueTypeMap1234 { - yyl2467 := r.ReadMapStart() - if yyl2467 == 0 { + yyct2472 := r.ContainerType() + if yyct2472 == codecSelferValueTypeMap1234 { + yyl2472 := r.ReadMapStart() + if yyl2472 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2467, d) + x.codecDecodeSelfFromMap(yyl2472, d) } - } else if yyct2467 == codecSelferValueTypeArray1234 { - yyl2467 := r.ReadArrayStart() - if yyl2467 == 0 { + } else if yyct2472 == codecSelferValueTypeArray1234 { + yyl2472 := r.ReadArrayStart() + if yyl2472 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2467, d) + x.codecDecodeSelfFromArray(yyl2472, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31327,12 +31375,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2468Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2468Slc - var yyhl2468 bool = l >= 0 - for yyj2468 := 0; ; yyj2468++ { - if yyhl2468 { - if yyj2468 >= l { + var yys2473Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2473Slc + var yyhl2473 bool = l >= 0 + for yyj2473 := 0; ; yyj2473++ { + if yyhl2473 { + if yyj2473 >= l { break } } else { @@ -31341,10 +31389,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2468Slc = r.DecodeBytes(yys2468Slc, true, true) - yys2468 := string(yys2468Slc) + yys2473Slc = r.DecodeBytes(yys2473Slc, true, true) + yys2473 := string(yys2473Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2468 { + switch yys2473 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -31352,9 +31400,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2468) - } // end switch yys2468 - } // end for yyj2468 + z.DecStructFieldNotFound(-1, yys2473) + } // end switch yys2473 + } // end for yyj2473 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31362,16 +31410,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2470 int - var yyb2470 bool - var yyhl2470 bool = l >= 0 - yyj2470++ - if yyhl2470 { - yyb2470 = yyj2470 > l + var yyj2475 int + var yyb2475 bool + var yyhl2475 bool = l >= 0 + yyj2475++ + if yyhl2475 { + yyb2475 = yyj2475 > l } else { - yyb2470 = r.CheckBreak() + yyb2475 = r.CheckBreak() } - if yyb2470 { + if yyb2475 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31382,17 +31430,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj2470++ - if yyhl2470 { - yyb2470 = yyj2470 > l + yyj2475++ + if yyhl2475 { + yyb2475 = yyj2475 > l } else { - yyb2470 = r.CheckBreak() + yyb2475 = r.CheckBreak() } - if yyb2470 { + if yyb2475 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2470-1, "") + z.DecStructFieldNotFound(yyj2475-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31401,8 +31449,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2472 := z.EncBinary() - _ = yym2472 + yym2477 := z.EncBinary() + _ = yym2477 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -31414,8 +31462,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2473 := z.DecBinary() - _ = yym2473 + yym2478 := z.DecBinary() + _ = yym2478 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -31430,39 +31478,39 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2474 := z.EncBinary() - _ = yym2474 + yym2479 := z.EncBinary() + _ = yym2479 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2475 := !z.EncBinary() - yy2arr2475 := z.EncBasicHandle().StructToArray - var yyq2475 [5]bool - _, _, _ = yysep2475, yyq2475, yy2arr2475 - const yyr2475 bool = false - yyq2475[0] = x.Kind != "" - yyq2475[1] = x.APIVersion != "" - yyq2475[2] = true - yyq2475[3] = true - yyq2475[4] = true - var yynn2475 int - if yyr2475 || yy2arr2475 { + yysep2480 := !z.EncBinary() + yy2arr2480 := z.EncBasicHandle().StructToArray + var yyq2480 [5]bool + _, _, _ = yysep2480, yyq2480, yy2arr2480 + const yyr2480 bool = false + yyq2480[0] = x.Kind != "" + yyq2480[1] = x.APIVersion != "" + yyq2480[2] = true + yyq2480[3] = true + yyq2480[4] = true + var yynn2480 int + if yyr2480 || yy2arr2480 { r.EncodeArrayStart(5) } else { - yynn2475 = 0 - for _, b := range yyq2475 { + yynn2480 = 0 + for _, b := range yyq2480 { if b { - yynn2475++ + yynn2480++ } } - r.EncodeMapStart(yynn2475) - yynn2475 = 0 + r.EncodeMapStart(yynn2480) + yynn2480 = 0 } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2475[0] { - yym2477 := z.EncBinary() - _ = yym2477 + if yyq2480[0] { + yym2482 := z.EncBinary() + _ = yym2482 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31471,23 +31519,23 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2475[0] { + if yyq2480[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2478 := z.EncBinary() - _ = yym2478 + yym2483 := z.EncBinary() + _ = yym2483 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2475[1] { - yym2480 := z.EncBinary() - _ = yym2480 + if yyq2480[1] { + yym2485 := z.EncBinary() + _ = yym2485 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31496,70 +31544,70 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2475[1] { + if yyq2480[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2481 := z.EncBinary() - _ = yym2481 + yym2486 := z.EncBinary() + _ = yym2486 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2475[2] { - yy2483 := &x.ObjectMeta - yy2483.CodecEncodeSelf(e) + if yyq2480[2] { + yy2488 := &x.ObjectMeta + yy2488.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2475[2] { + if yyq2480[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2484 := &x.ObjectMeta - yy2484.CodecEncodeSelf(e) + yy2489 := &x.ObjectMeta + yy2489.CodecEncodeSelf(e) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2475[3] { - yy2486 := &x.Spec - yy2486.CodecEncodeSelf(e) + if yyq2480[3] { + yy2491 := &x.Spec + yy2491.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2475[3] { + if yyq2480[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2487 := &x.Spec - yy2487.CodecEncodeSelf(e) + yy2492 := &x.Spec + yy2492.CodecEncodeSelf(e) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2475[4] { - yy2489 := &x.Status - yy2489.CodecEncodeSelf(e) + if yyq2480[4] { + yy2494 := &x.Status + yy2494.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2475[4] { + if yyq2480[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2490 := &x.Status - yy2490.CodecEncodeSelf(e) + yy2495 := &x.Status + yy2495.CodecEncodeSelf(e) } } - if yyr2475 || yy2arr2475 { + if yyr2480 || yy2arr2480 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31572,25 +31620,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2491 := z.DecBinary() - _ = yym2491 + yym2496 := z.DecBinary() + _ = yym2496 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2492 := r.ContainerType() - if yyct2492 == codecSelferValueTypeMap1234 { - yyl2492 := r.ReadMapStart() - if yyl2492 == 0 { + yyct2497 := r.ContainerType() + if yyct2497 == codecSelferValueTypeMap1234 { + yyl2497 := r.ReadMapStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2492, d) + x.codecDecodeSelfFromMap(yyl2497, d) } - } else if yyct2492 == codecSelferValueTypeArray1234 { - yyl2492 := r.ReadArrayStart() - if yyl2492 == 0 { + } else if yyct2497 == codecSelferValueTypeArray1234 { + yyl2497 := r.ReadArrayStart() + if yyl2497 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2492, d) + x.codecDecodeSelfFromArray(yyl2497, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31602,12 +31650,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2493Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2493Slc - var yyhl2493 bool = l >= 0 - for yyj2493 := 0; ; yyj2493++ { - if yyhl2493 { - if yyj2493 >= l { + var yys2498Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2498Slc + var yyhl2498 bool = l >= 0 + for yyj2498 := 0; ; yyj2498++ { + if yyhl2498 { + if yyj2498 >= l { break } } else { @@ -31616,10 +31664,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2493Slc = r.DecodeBytes(yys2493Slc, true, true) - yys2493 := string(yys2493Slc) + yys2498Slc = r.DecodeBytes(yys2498Slc, true, true) + yys2498 := string(yys2498Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2493 { + switch yys2498 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31636,27 +31684,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2496 := &x.ObjectMeta - yyv2496.CodecDecodeSelf(d) + yyv2501 := &x.ObjectMeta + yyv2501.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2497 := &x.Spec - yyv2497.CodecDecodeSelf(d) + yyv2502 := &x.Spec + yyv2502.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2498 := &x.Status - yyv2498.CodecDecodeSelf(d) + yyv2503 := &x.Status + yyv2503.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2493) - } // end switch yys2493 - } // end for yyj2493 + z.DecStructFieldNotFound(-1, yys2498) + } // end switch yys2498 + } // end for yyj2498 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31664,16 +31712,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2499 int - var yyb2499 bool - var yyhl2499 bool = l >= 0 - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + var yyj2504 int + var yyb2504 bool + var yyhl2504 bool = l >= 0 + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31683,13 +31731,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31699,13 +31747,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31713,16 +31761,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2502 := &x.ObjectMeta - yyv2502.CodecDecodeSelf(d) + yyv2507 := &x.ObjectMeta + yyv2507.CodecDecodeSelf(d) } - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31730,16 +31778,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv2503 := &x.Spec - yyv2503.CodecDecodeSelf(d) + yyv2508 := &x.Spec + yyv2508.CodecDecodeSelf(d) } - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31747,21 +31795,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv2504 := &x.Status - yyv2504.CodecDecodeSelf(d) + yyv2509 := &x.Status + yyv2509.CodecDecodeSelf(d) } for { - yyj2499++ - if yyhl2499 { - yyb2499 = yyj2499 > l + yyj2504++ + if yyhl2504 { + yyb2504 = yyj2504 > l } else { - yyb2499 = r.CheckBreak() + yyb2504 = r.CheckBreak() } - if yyb2499 { + if yyb2504 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2499-1, "") + z.DecStructFieldNotFound(yyj2504-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31773,37 +31821,37 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2505 := z.EncBinary() - _ = yym2505 + yym2510 := z.EncBinary() + _ = yym2510 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2506 := !z.EncBinary() - yy2arr2506 := z.EncBasicHandle().StructToArray - var yyq2506 [4]bool - _, _, _ = yysep2506, yyq2506, yy2arr2506 - const yyr2506 bool = false - yyq2506[0] = x.Kind != "" - yyq2506[1] = x.APIVersion != "" - yyq2506[2] = true - var yynn2506 int - if yyr2506 || yy2arr2506 { + yysep2511 := !z.EncBinary() + yy2arr2511 := z.EncBasicHandle().StructToArray + var yyq2511 [4]bool + _, _, _ = yysep2511, yyq2511, yy2arr2511 + const yyr2511 bool = false + yyq2511[0] = x.Kind != "" + yyq2511[1] = x.APIVersion != "" + yyq2511[2] = true + var yynn2511 int + if yyr2511 || yy2arr2511 { r.EncodeArrayStart(4) } else { - yynn2506 = 1 - for _, b := range yyq2506 { + yynn2511 = 1 + for _, b := range yyq2511 { if b { - yynn2506++ + yynn2511++ } } - r.EncodeMapStart(yynn2506) - yynn2506 = 0 + r.EncodeMapStart(yynn2511) + yynn2511 = 0 } - if yyr2506 || yy2arr2506 { + if yyr2511 || yy2arr2511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2506[0] { - yym2508 := z.EncBinary() - _ = yym2508 + if yyq2511[0] { + yym2513 := z.EncBinary() + _ = yym2513 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -31812,23 +31860,23 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2506[0] { + if yyq2511[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2509 := z.EncBinary() - _ = yym2509 + yym2514 := z.EncBinary() + _ = yym2514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2506 || yy2arr2506 { + if yyr2511 || yy2arr2511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2506[1] { - yym2511 := z.EncBinary() - _ = yym2511 + if yyq2511[1] { + yym2516 := z.EncBinary() + _ = yym2516 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -31837,54 +31885,54 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2506[1] { + if yyq2511[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2512 := z.EncBinary() - _ = yym2512 + yym2517 := z.EncBinary() + _ = yym2517 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2506 || yy2arr2506 { + if yyr2511 || yy2arr2511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2506[2] { - yy2514 := &x.ListMeta - yym2515 := z.EncBinary() - _ = yym2515 + if yyq2511[2] { + yy2519 := &x.ListMeta + yym2520 := z.EncBinary() + _ = yym2520 if false { - } else if z.HasExtensions() && z.EncExt(yy2514) { + } else if z.HasExtensions() && z.EncExt(yy2519) { } else { - z.EncFallback(yy2514) + z.EncFallback(yy2519) } } else { r.EncodeNil() } } else { - if yyq2506[2] { + if yyq2511[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2516 := &x.ListMeta - yym2517 := z.EncBinary() - _ = yym2517 + yy2521 := &x.ListMeta + yym2522 := z.EncBinary() + _ = yym2522 if false { - } else if z.HasExtensions() && z.EncExt(yy2516) { + } else if z.HasExtensions() && z.EncExt(yy2521) { } else { - z.EncFallback(yy2516) + z.EncFallback(yy2521) } } } - if yyr2506 || yy2arr2506 { + if yyr2511 || yy2arr2511 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2519 := z.EncBinary() - _ = yym2519 + yym2524 := z.EncBinary() + _ = yym2524 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -31897,15 +31945,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2520 := z.EncBinary() - _ = yym2520 + yym2525 := z.EncBinary() + _ = yym2525 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr2506 || yy2arr2506 { + if yyr2511 || yy2arr2511 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31918,25 +31966,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2521 := z.DecBinary() - _ = yym2521 + yym2526 := z.DecBinary() + _ = yym2526 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2522 := r.ContainerType() - if yyct2522 == codecSelferValueTypeMap1234 { - yyl2522 := r.ReadMapStart() - if yyl2522 == 0 { + yyct2527 := r.ContainerType() + if yyct2527 == codecSelferValueTypeMap1234 { + yyl2527 := r.ReadMapStart() + if yyl2527 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2522, d) + x.codecDecodeSelfFromMap(yyl2527, d) } - } else if yyct2522 == codecSelferValueTypeArray1234 { - yyl2522 := r.ReadArrayStart() - if yyl2522 == 0 { + } else if yyct2527 == codecSelferValueTypeArray1234 { + yyl2527 := r.ReadArrayStart() + if yyl2527 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2522, d) + x.codecDecodeSelfFromArray(yyl2527, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31948,12 +31996,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2523Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2523Slc - var yyhl2523 bool = l >= 0 - for yyj2523 := 0; ; yyj2523++ { - if yyhl2523 { - if yyj2523 >= l { + var yys2528Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2528Slc + var yyhl2528 bool = l >= 0 + for yyj2528 := 0; ; yyj2528++ { + if yyhl2528 { + if yyj2528 >= l { break } } else { @@ -31962,10 +32010,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2523Slc = r.DecodeBytes(yys2523Slc, true, true) - yys2523 := string(yys2523Slc) + yys2528Slc = r.DecodeBytes(yys2528Slc, true, true) + yys2528 := string(yys2528Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2523 { + switch yys2528 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31982,31 +32030,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2526 := &x.ListMeta - yym2527 := z.DecBinary() - _ = yym2527 + yyv2531 := &x.ListMeta + yym2532 := z.DecBinary() + _ = yym2532 if false { - } else if z.HasExtensions() && z.DecExt(yyv2526) { + } else if z.HasExtensions() && z.DecExt(yyv2531) { } else { - z.DecFallback(yyv2526, false) + z.DecFallback(yyv2531, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2528 := &x.Items - yym2529 := z.DecBinary() - _ = yym2529 + yyv2533 := &x.Items + yym2534 := z.DecBinary() + _ = yym2534 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2528), d) + h.decSliceNamespace((*[]Namespace)(yyv2533), d) } } default: - z.DecStructFieldNotFound(-1, yys2523) - } // end switch yys2523 - } // end for yyj2523 + z.DecStructFieldNotFound(-1, yys2528) + } // end switch yys2528 + } // end for yyj2528 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32014,16 +32062,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2530 int - var yyb2530 bool - var yyhl2530 bool = l >= 0 - yyj2530++ - if yyhl2530 { - yyb2530 = yyj2530 > l + var yyj2535 int + var yyb2535 bool + var yyhl2535 bool = l >= 0 + yyj2535++ + if yyhl2535 { + yyb2535 = yyj2535 > l } else { - yyb2530 = r.CheckBreak() + yyb2535 = r.CheckBreak() } - if yyb2530 { + if yyb2535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32033,13 +32081,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2530++ - if yyhl2530 { - yyb2530 = yyj2530 > l + yyj2535++ + if yyhl2535 { + yyb2535 = yyj2535 > l } else { - yyb2530 = r.CheckBreak() + yyb2535 = r.CheckBreak() } - if yyb2530 { + if yyb2535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32049,13 +32097,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2530++ - if yyhl2530 { - yyb2530 = yyj2530 > l + yyj2535++ + if yyhl2535 { + yyb2535 = yyj2535 > l } else { - yyb2530 = r.CheckBreak() + yyb2535 = r.CheckBreak() } - if yyb2530 { + if yyb2535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32063,22 +32111,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2533 := &x.ListMeta - yym2534 := z.DecBinary() - _ = yym2534 + yyv2538 := &x.ListMeta + yym2539 := z.DecBinary() + _ = yym2539 if false { - } else if z.HasExtensions() && z.DecExt(yyv2533) { + } else if z.HasExtensions() && z.DecExt(yyv2538) { } else { - z.DecFallback(yyv2533, false) + z.DecFallback(yyv2538, false) } } - yyj2530++ - if yyhl2530 { - yyb2530 = yyj2530 > l + yyj2535++ + if yyhl2535 { + yyb2535 = yyj2535 > l } else { - yyb2530 = r.CheckBreak() + yyb2535 = r.CheckBreak() } - if yyb2530 { + if yyb2535 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32086,26 +32134,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2535 := &x.Items - yym2536 := z.DecBinary() - _ = yym2536 + yyv2540 := &x.Items + yym2541 := z.DecBinary() + _ = yym2541 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv2535), d) + h.decSliceNamespace((*[]Namespace)(yyv2540), d) } } for { - yyj2530++ - if yyhl2530 { - yyb2530 = yyj2530 > l + yyj2535++ + if yyhl2535 { + yyb2535 = yyj2535 > l } else { - yyb2530 = r.CheckBreak() + yyb2535 = r.CheckBreak() } - if yyb2530 { + if yyb2535 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2530-1, "") + z.DecStructFieldNotFound(yyj2535-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32117,37 +32165,37 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2537 := z.EncBinary() - _ = yym2537 + yym2542 := z.EncBinary() + _ = yym2542 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2538 := !z.EncBinary() - yy2arr2538 := z.EncBasicHandle().StructToArray - var yyq2538 [4]bool - _, _, _ = yysep2538, yyq2538, yy2arr2538 - const yyr2538 bool = false - yyq2538[0] = x.Kind != "" - yyq2538[1] = x.APIVersion != "" - yyq2538[2] = true - var yynn2538 int - if yyr2538 || yy2arr2538 { + yysep2543 := !z.EncBinary() + yy2arr2543 := z.EncBasicHandle().StructToArray + var yyq2543 [4]bool + _, _, _ = yysep2543, yyq2543, yy2arr2543 + const yyr2543 bool = false + yyq2543[0] = x.Kind != "" + yyq2543[1] = x.APIVersion != "" + yyq2543[2] = true + var yynn2543 int + if yyr2543 || yy2arr2543 { r.EncodeArrayStart(4) } else { - yynn2538 = 1 - for _, b := range yyq2538 { + yynn2543 = 1 + for _, b := range yyq2543 { if b { - yynn2538++ + yynn2543++ } } - r.EncodeMapStart(yynn2538) - yynn2538 = 0 + r.EncodeMapStart(yynn2543) + yynn2543 = 0 } - if yyr2538 || yy2arr2538 { + if yyr2543 || yy2arr2543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[0] { - yym2540 := z.EncBinary() - _ = yym2540 + if yyq2543[0] { + yym2545 := z.EncBinary() + _ = yym2545 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32156,23 +32204,23 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2538[0] { + if yyq2543[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2541 := z.EncBinary() - _ = yym2541 + yym2546 := z.EncBinary() + _ = yym2546 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2538 || yy2arr2538 { + if yyr2543 || yy2arr2543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[1] { - yym2543 := z.EncBinary() - _ = yym2543 + if yyq2543[1] { + yym2548 := z.EncBinary() + _ = yym2548 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32181,47 +32229,47 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2538[1] { + if yyq2543[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2544 := z.EncBinary() - _ = yym2544 + yym2549 := z.EncBinary() + _ = yym2549 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2538 || yy2arr2538 { + if yyr2543 || yy2arr2543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2538[2] { - yy2546 := &x.ObjectMeta - yy2546.CodecEncodeSelf(e) + if yyq2543[2] { + yy2551 := &x.ObjectMeta + yy2551.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2538[2] { + if yyq2543[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2547 := &x.ObjectMeta - yy2547.CodecEncodeSelf(e) + yy2552 := &x.ObjectMeta + yy2552.CodecEncodeSelf(e) } } - if yyr2538 || yy2arr2538 { + if yyr2543 || yy2arr2543 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2549 := &x.Target - yy2549.CodecEncodeSelf(e) + yy2554 := &x.Target + yy2554.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2550 := &x.Target - yy2550.CodecEncodeSelf(e) + yy2555 := &x.Target + yy2555.CodecEncodeSelf(e) } - if yyr2538 || yy2arr2538 { + if yyr2543 || yy2arr2543 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32234,25 +32282,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2551 := z.DecBinary() - _ = yym2551 + yym2556 := z.DecBinary() + _ = yym2556 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2552 := r.ContainerType() - if yyct2552 == codecSelferValueTypeMap1234 { - yyl2552 := r.ReadMapStart() - if yyl2552 == 0 { + yyct2557 := r.ContainerType() + if yyct2557 == codecSelferValueTypeMap1234 { + yyl2557 := r.ReadMapStart() + if yyl2557 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2552, d) + x.codecDecodeSelfFromMap(yyl2557, d) } - } else if yyct2552 == codecSelferValueTypeArray1234 { - yyl2552 := r.ReadArrayStart() - if yyl2552 == 0 { + } else if yyct2557 == codecSelferValueTypeArray1234 { + yyl2557 := r.ReadArrayStart() + if yyl2557 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2552, d) + x.codecDecodeSelfFromArray(yyl2557, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32264,12 +32312,12 @@ func (x *Binding) 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 yys2558Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2558Slc + var yyhl2558 bool = l >= 0 + for yyj2558 := 0; ; yyj2558++ { + if yyhl2558 { + if yyj2558 >= l { break } } else { @@ -32278,10 +32326,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2553Slc = r.DecodeBytes(yys2553Slc, true, true) - yys2553 := string(yys2553Slc) + yys2558Slc = r.DecodeBytes(yys2558Slc, true, true) + yys2558 := string(yys2558Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2553 { + switch yys2558 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32298,20 +32346,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2556 := &x.ObjectMeta - yyv2556.CodecDecodeSelf(d) + yyv2561 := &x.ObjectMeta + yyv2561.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2557 := &x.Target - yyv2557.CodecDecodeSelf(d) + yyv2562 := &x.Target + yyv2562.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2553) - } // end switch yys2553 - } // end for yyj2553 + z.DecStructFieldNotFound(-1, yys2558) + } // end switch yys2558 + } // end for yyj2558 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32319,16 +32367,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2558 int - var yyb2558 bool - var yyhl2558 bool = l >= 0 - yyj2558++ - if yyhl2558 { - yyb2558 = yyj2558 > l + var yyj2563 int + var yyb2563 bool + var yyhl2563 bool = l >= 0 + yyj2563++ + if yyhl2563 { + yyb2563 = yyj2563 > l } else { - yyb2558 = r.CheckBreak() + yyb2563 = r.CheckBreak() } - if yyb2558 { + if yyb2563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32338,13 +32386,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2558++ - if yyhl2558 { - yyb2558 = yyj2558 > l + yyj2563++ + if yyhl2563 { + yyb2563 = yyj2563 > l } else { - yyb2558 = r.CheckBreak() + yyb2563 = r.CheckBreak() } - if yyb2558 { + if yyb2563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32354,13 +32402,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2558++ - if yyhl2558 { - yyb2558 = yyj2558 > l + yyj2563++ + if yyhl2563 { + yyb2563 = yyj2563 > l } else { - yyb2558 = r.CheckBreak() + yyb2563 = r.CheckBreak() } - if yyb2558 { + if yyb2563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32368,16 +32416,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2561 := &x.ObjectMeta - yyv2561.CodecDecodeSelf(d) + yyv2566 := &x.ObjectMeta + yyv2566.CodecDecodeSelf(d) } - yyj2558++ - if yyhl2558 { - yyb2558 = yyj2558 > l + yyj2563++ + if yyhl2563 { + yyb2563 = yyj2563 > l } else { - yyb2558 = r.CheckBreak() + yyb2563 = r.CheckBreak() } - if yyb2558 { + if yyb2563 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32385,21 +32433,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv2562 := &x.Target - yyv2562.CodecDecodeSelf(d) + yyv2567 := &x.Target + yyv2567.CodecDecodeSelf(d) } for { - yyj2558++ - if yyhl2558 { - yyb2558 = yyj2558 > l + yyj2563++ + if yyhl2563 { + yyb2563 = yyj2563 > l } else { - yyb2558 = r.CheckBreak() + yyb2563 = r.CheckBreak() } - if yyb2558 { + if yyb2563 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2558-1, "") + z.DecStructFieldNotFound(yyj2563-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32411,36 +32459,36 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2563 := z.EncBinary() - _ = yym2563 + yym2568 := z.EncBinary() + _ = yym2568 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2564 := !z.EncBinary() - yy2arr2564 := z.EncBasicHandle().StructToArray - var yyq2564 [3]bool - _, _, _ = yysep2564, yyq2564, yy2arr2564 - const yyr2564 bool = false - yyq2564[0] = x.Kind != "" - yyq2564[1] = x.APIVersion != "" - var yynn2564 int - if yyr2564 || yy2arr2564 { + yysep2569 := !z.EncBinary() + yy2arr2569 := z.EncBasicHandle().StructToArray + var yyq2569 [3]bool + _, _, _ = yysep2569, yyq2569, yy2arr2569 + const yyr2569 bool = false + yyq2569[0] = x.Kind != "" + yyq2569[1] = x.APIVersion != "" + var yynn2569 int + if yyr2569 || yy2arr2569 { r.EncodeArrayStart(3) } else { - yynn2564 = 1 - for _, b := range yyq2564 { + yynn2569 = 1 + for _, b := range yyq2569 { if b { - yynn2564++ + yynn2569++ } } - r.EncodeMapStart(yynn2564) - yynn2564 = 0 + r.EncodeMapStart(yynn2569) + yynn2569 = 0 } - if yyr2564 || yy2arr2564 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2564[0] { - yym2566 := z.EncBinary() - _ = yym2566 + if yyq2569[0] { + yym2571 := z.EncBinary() + _ = yym2571 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32449,23 +32497,23 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2564[0] { + if yyq2569[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2567 := z.EncBinary() - _ = yym2567 + yym2572 := z.EncBinary() + _ = yym2572 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2564 || yy2arr2564 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2564[1] { - yym2569 := z.EncBinary() - _ = yym2569 + if yyq2569[1] { + yym2574 := z.EncBinary() + _ = yym2574 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32474,29 +32522,29 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2564[1] { + if yyq2569[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2570 := z.EncBinary() - _ = yym2570 + yym2575 := z.EncBinary() + _ = yym2575 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2564 || yy2arr2564 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2572 := *x.GracePeriodSeconds - yym2573 := z.EncBinary() - _ = yym2573 + yy2577 := *x.GracePeriodSeconds + yym2578 := z.EncBinary() + _ = yym2578 if false { } else { - r.EncodeInt(int64(yy2572)) + r.EncodeInt(int64(yy2577)) } } } else { @@ -32506,16 +32554,16 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy2574 := *x.GracePeriodSeconds - yym2575 := z.EncBinary() - _ = yym2575 + yy2579 := *x.GracePeriodSeconds + yym2580 := z.EncBinary() + _ = yym2580 if false { } else { - r.EncodeInt(int64(yy2574)) + r.EncodeInt(int64(yy2579)) } } } - if yyr2564 || yy2arr2564 { + if yyr2569 || yy2arr2569 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32528,25 +32576,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2576 := z.DecBinary() - _ = yym2576 + yym2581 := z.DecBinary() + _ = yym2581 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2577 := r.ContainerType() - if yyct2577 == codecSelferValueTypeMap1234 { - yyl2577 := r.ReadMapStart() - if yyl2577 == 0 { + yyct2582 := r.ContainerType() + if yyct2582 == codecSelferValueTypeMap1234 { + yyl2582 := r.ReadMapStart() + if yyl2582 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2577, d) + x.codecDecodeSelfFromMap(yyl2582, d) } - } else if yyct2577 == codecSelferValueTypeArray1234 { - yyl2577 := r.ReadArrayStart() - if yyl2577 == 0 { + } else if yyct2582 == codecSelferValueTypeArray1234 { + yyl2582 := r.ReadArrayStart() + if yyl2582 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2577, d) + x.codecDecodeSelfFromArray(yyl2582, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32558,12 +32606,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2578Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2578Slc - var yyhl2578 bool = l >= 0 - for yyj2578 := 0; ; yyj2578++ { - if yyhl2578 { - if yyj2578 >= l { + var yys2583Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2583Slc + var yyhl2583 bool = l >= 0 + for yyj2583 := 0; ; yyj2583++ { + if yyhl2583 { + if yyj2583 >= l { break } } else { @@ -32572,10 +32620,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2578Slc = r.DecodeBytes(yys2578Slc, true, true) - yys2578 := string(yys2578Slc) + yys2583Slc = r.DecodeBytes(yys2583Slc, true, true) + yys2583 := string(yys2583Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2578 { + switch yys2583 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32597,17 +32645,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2582 := z.DecBinary() - _ = yym2582 + yym2587 := z.DecBinary() + _ = yym2587 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2578) - } // end switch yys2578 - } // end for yyj2578 + z.DecStructFieldNotFound(-1, yys2583) + } // end switch yys2583 + } // end for yyj2583 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32615,16 +32663,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2583 int - var yyb2583 bool - var yyhl2583 bool = l >= 0 - yyj2583++ - if yyhl2583 { - yyb2583 = yyj2583 > l + var yyj2588 int + var yyb2588 bool + var yyhl2588 bool = l >= 0 + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2583 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2583 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32634,13 +32682,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2583++ - if yyhl2583 { - yyb2583 = yyj2583 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2583 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2583 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32650,13 +32698,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2583++ - if yyhl2583 { - yyb2583 = yyj2583 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2583 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2583 { + if yyb2588 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32669,25 +32717,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym2587 := z.DecBinary() - _ = yym2587 + yym2592 := z.DecBinary() + _ = yym2592 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2583++ - if yyhl2583 { - yyb2583 = yyj2583 > l + yyj2588++ + if yyhl2588 { + yyb2588 = yyj2588 > l } else { - yyb2583 = r.CheckBreak() + yyb2588 = r.CheckBreak() } - if yyb2583 { + if yyb2588 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2583-1, "") + z.DecStructFieldNotFound(yyj2588-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32699,41 +32747,41 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2588 := z.EncBinary() - _ = yym2588 + yym2593 := z.EncBinary() + _ = yym2593 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2589 := !z.EncBinary() - yy2arr2589 := z.EncBasicHandle().StructToArray - var yyq2589 [7]bool - _, _, _ = yysep2589, yyq2589, yy2arr2589 - const yyr2589 bool = false - yyq2589[0] = x.Kind != "" - yyq2589[1] = x.APIVersion != "" - yyq2589[2] = x.LabelSelector != "" - yyq2589[3] = x.FieldSelector != "" - yyq2589[4] = x.Watch != false - yyq2589[5] = x.ResourceVersion != "" - yyq2589[6] = x.TimeoutSeconds != nil - var yynn2589 int - if yyr2589 || yy2arr2589 { + yysep2594 := !z.EncBinary() + yy2arr2594 := z.EncBasicHandle().StructToArray + var yyq2594 [7]bool + _, _, _ = yysep2594, yyq2594, yy2arr2594 + const yyr2594 bool = false + yyq2594[0] = x.Kind != "" + yyq2594[1] = x.APIVersion != "" + yyq2594[2] = x.LabelSelector != "" + yyq2594[3] = x.FieldSelector != "" + yyq2594[4] = x.Watch != false + yyq2594[5] = x.ResourceVersion != "" + yyq2594[6] = x.TimeoutSeconds != nil + var yynn2594 int + if yyr2594 || yy2arr2594 { r.EncodeArrayStart(7) } else { - yynn2589 = 0 - for _, b := range yyq2589 { + yynn2594 = 0 + for _, b := range yyq2594 { if b { - yynn2589++ + yynn2594++ } } - r.EncodeMapStart(yynn2589) - yynn2589 = 0 + r.EncodeMapStart(yynn2594) + yynn2594 = 0 } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[0] { - yym2591 := z.EncBinary() - _ = yym2591 + if yyq2594[0] { + yym2596 := z.EncBinary() + _ = yym2596 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -32742,23 +32790,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2589[0] { + if yyq2594[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2592 := z.EncBinary() - _ = yym2592 + yym2597 := z.EncBinary() + _ = yym2597 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[1] { - yym2594 := z.EncBinary() - _ = yym2594 + if yyq2594[1] { + yym2599 := z.EncBinary() + _ = yym2599 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -32767,23 +32815,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2589[1] { + if yyq2594[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2595 := z.EncBinary() - _ = yym2595 + yym2600 := z.EncBinary() + _ = yym2600 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[2] { - yym2597 := z.EncBinary() - _ = yym2597 + if yyq2594[2] { + yym2602 := z.EncBinary() + _ = yym2602 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) @@ -32792,23 +32840,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2589[2] { + if yyq2594[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2598 := z.EncBinary() - _ = yym2598 + yym2603 := z.EncBinary() + _ = yym2603 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[3] { - yym2600 := z.EncBinary() - _ = yym2600 + if yyq2594[3] { + yym2605 := z.EncBinary() + _ = yym2605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -32817,23 +32865,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2589[3] { + if yyq2594[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2601 := z.EncBinary() - _ = yym2601 + yym2606 := z.EncBinary() + _ = yym2606 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[4] { - yym2603 := z.EncBinary() - _ = yym2603 + if yyq2594[4] { + yym2608 := z.EncBinary() + _ = yym2608 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -32842,23 +32890,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2589[4] { + if yyq2594[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2604 := z.EncBinary() - _ = yym2604 + yym2609 := z.EncBinary() + _ = yym2609 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[5] { - yym2606 := z.EncBinary() - _ = yym2606 + if yyq2594[5] { + yym2611 := z.EncBinary() + _ = yym2611 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -32867,54 +32915,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2589[5] { + if yyq2594[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2607 := z.EncBinary() - _ = yym2607 + yym2612 := z.EncBinary() + _ = yym2612 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2589[6] { + if yyq2594[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2609 := *x.TimeoutSeconds - yym2610 := z.EncBinary() - _ = yym2610 + yy2614 := *x.TimeoutSeconds + yym2615 := z.EncBinary() + _ = yym2615 if false { } else { - r.EncodeInt(int64(yy2609)) + r.EncodeInt(int64(yy2614)) } } } else { r.EncodeNil() } } else { - if yyq2589[6] { + if yyq2594[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy2611 := *x.TimeoutSeconds - yym2612 := z.EncBinary() - _ = yym2612 + yy2616 := *x.TimeoutSeconds + yym2617 := z.EncBinary() + _ = yym2617 if false { } else { - r.EncodeInt(int64(yy2611)) + r.EncodeInt(int64(yy2616)) } } } } - if yyr2589 || yy2arr2589 { + if yyr2594 || yy2arr2594 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32927,25 +32975,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2613 := z.DecBinary() - _ = yym2613 + yym2618 := z.DecBinary() + _ = yym2618 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2614 := r.ContainerType() - if yyct2614 == codecSelferValueTypeMap1234 { - yyl2614 := r.ReadMapStart() - if yyl2614 == 0 { + yyct2619 := r.ContainerType() + if yyct2619 == codecSelferValueTypeMap1234 { + yyl2619 := r.ReadMapStart() + if yyl2619 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2614, d) + x.codecDecodeSelfFromMap(yyl2619, d) } - } else if yyct2614 == codecSelferValueTypeArray1234 { - yyl2614 := r.ReadArrayStart() - if yyl2614 == 0 { + } else if yyct2619 == codecSelferValueTypeArray1234 { + yyl2619 := r.ReadArrayStart() + if yyl2619 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2614, d) + x.codecDecodeSelfFromArray(yyl2619, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32957,12 +33005,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2615Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2615Slc - var yyhl2615 bool = l >= 0 - for yyj2615 := 0; ; yyj2615++ { - if yyhl2615 { - if yyj2615 >= l { + var yys2620Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2620Slc + var yyhl2620 bool = l >= 0 + for yyj2620 := 0; ; yyj2620++ { + if yyhl2620 { + if yyj2620 >= l { break } } else { @@ -32971,10 +33019,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2615Slc = r.DecodeBytes(yys2615Slc, true, true) - yys2615 := string(yys2615Slc) + yys2620Slc = r.DecodeBytes(yys2620Slc, true, true) + yys2620 := string(yys2620Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2615 { + switch yys2620 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33020,17 +33068,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2623 := z.DecBinary() - _ = yym2623 + yym2628 := z.DecBinary() + _ = yym2628 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2615) - } // end switch yys2615 - } // end for yyj2615 + z.DecStructFieldNotFound(-1, yys2620) + } // end switch yys2620 + } // end for yyj2620 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33038,16 +33086,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2624 int - var yyb2624 bool - var yyhl2624 bool = l >= 0 - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + var yyj2629 int + var yyb2629 bool + var yyhl2629 bool = l >= 0 + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33057,13 +33105,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33073,13 +33121,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33089,13 +33137,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33105,13 +33153,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33121,13 +33169,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33137,13 +33185,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33156,25 +33204,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym2632 := z.DecBinary() - _ = yym2632 + yym2637 := z.DecBinary() + _ = yym2637 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj2624++ - if yyhl2624 { - yyb2624 = yyj2624 > l + yyj2629++ + if yyhl2629 { + yyb2629 = yyj2629 > l } else { - yyb2624 = r.CheckBreak() + yyb2629 = r.CheckBreak() } - if yyb2624 { + if yyb2629 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2624-1, "") + z.DecStructFieldNotFound(yyj2629-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33186,44 +33234,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2633 := z.EncBinary() - _ = yym2633 + yym2638 := z.EncBinary() + _ = yym2638 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2634 := !z.EncBinary() - yy2arr2634 := z.EncBasicHandle().StructToArray - var yyq2634 [10]bool - _, _, _ = yysep2634, yyq2634, yy2arr2634 - const yyr2634 bool = false - yyq2634[0] = x.Kind != "" - yyq2634[1] = x.APIVersion != "" - yyq2634[2] = x.Container != "" - yyq2634[3] = x.Follow != false - yyq2634[4] = x.Previous != false - yyq2634[5] = x.SinceSeconds != nil - yyq2634[6] = x.SinceTime != nil - yyq2634[7] = x.Timestamps != false - yyq2634[8] = x.TailLines != nil - yyq2634[9] = x.LimitBytes != nil - var yynn2634 int - if yyr2634 || yy2arr2634 { + yysep2639 := !z.EncBinary() + yy2arr2639 := z.EncBasicHandle().StructToArray + var yyq2639 [10]bool + _, _, _ = yysep2639, yyq2639, yy2arr2639 + const yyr2639 bool = false + yyq2639[0] = x.Kind != "" + yyq2639[1] = x.APIVersion != "" + yyq2639[2] = x.Container != "" + yyq2639[3] = x.Follow != false + yyq2639[4] = x.Previous != false + yyq2639[5] = x.SinceSeconds != nil + yyq2639[6] = x.SinceTime != nil + yyq2639[7] = x.Timestamps != false + yyq2639[8] = x.TailLines != nil + yyq2639[9] = x.LimitBytes != nil + var yynn2639 int + if yyr2639 || yy2arr2639 { r.EncodeArrayStart(10) } else { - yynn2634 = 0 - for _, b := range yyq2634 { + yynn2639 = 0 + for _, b := range yyq2639 { if b { - yynn2634++ + yynn2639++ } } - r.EncodeMapStart(yynn2634) - yynn2634 = 0 + r.EncodeMapStart(yynn2639) + yynn2639 = 0 } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[0] { - yym2636 := z.EncBinary() - _ = yym2636 + if yyq2639[0] { + yym2641 := z.EncBinary() + _ = yym2641 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33232,23 +33280,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2634[0] { + if yyq2639[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2637 := z.EncBinary() - _ = yym2637 + yym2642 := z.EncBinary() + _ = yym2642 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[1] { - yym2639 := z.EncBinary() - _ = yym2639 + if yyq2639[1] { + yym2644 := z.EncBinary() + _ = yym2644 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33257,23 +33305,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2634[1] { + if yyq2639[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2640 := z.EncBinary() - _ = yym2640 + yym2645 := z.EncBinary() + _ = yym2645 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[2] { - yym2642 := z.EncBinary() - _ = yym2642 + if yyq2639[2] { + yym2647 := z.EncBinary() + _ = yym2647 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -33282,23 +33330,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2634[2] { + if yyq2639[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2643 := z.EncBinary() - _ = yym2643 + yym2648 := z.EncBinary() + _ = yym2648 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[3] { - yym2645 := z.EncBinary() - _ = yym2645 + if yyq2639[3] { + yym2650 := z.EncBinary() + _ = yym2650 if false { } else { r.EncodeBool(bool(x.Follow)) @@ -33307,23 +33355,23 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2634[3] { + if yyq2639[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2646 := z.EncBinary() - _ = yym2646 + yym2651 := z.EncBinary() + _ = yym2651 if false { } else { r.EncodeBool(bool(x.Follow)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[4] { - yym2648 := z.EncBinary() - _ = yym2648 + if yyq2639[4] { + yym2653 := z.EncBinary() + _ = yym2653 if false { } else { r.EncodeBool(bool(x.Previous)) @@ -33332,66 +33380,66 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2634[4] { + if yyq2639[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("previous")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2649 := z.EncBinary() - _ = yym2649 + yym2654 := z.EncBinary() + _ = yym2654 if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[5] { + if yyq2639[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2651 := *x.SinceSeconds - yym2652 := z.EncBinary() - _ = yym2652 + yy2656 := *x.SinceSeconds + yym2657 := z.EncBinary() + _ = yym2657 if false { } else { - r.EncodeInt(int64(yy2651)) + r.EncodeInt(int64(yy2656)) } } } else { r.EncodeNil() } } else { - if yyq2634[5] { + if yyq2639[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy2653 := *x.SinceSeconds - yym2654 := z.EncBinary() - _ = yym2654 + yy2658 := *x.SinceSeconds + yym2659 := z.EncBinary() + _ = yym2659 if false { } else { - r.EncodeInt(int64(yy2653)) + r.EncodeInt(int64(yy2658)) } } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[6] { + if yyq2639[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym2656 := z.EncBinary() - _ = yym2656 + yym2661 := z.EncBinary() + _ = yym2661 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2656 { + } else if yym2661 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2656 && z.IsJSONHandle() { + } else if !yym2661 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -33401,20 +33449,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2634[6] { + if yyq2639[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym2657 := z.EncBinary() - _ = yym2657 + yym2662 := z.EncBinary() + _ = yym2662 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym2657 { + } else if yym2662 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym2657 && z.IsJSONHandle() { + } else if !yym2662 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -33422,11 +33470,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[7] { - yym2659 := z.EncBinary() - _ = yym2659 + if yyq2639[7] { + yym2664 := z.EncBinary() + _ = yym2664 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -33435,89 +33483,89 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2634[7] { + if yyq2639[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2660 := z.EncBinary() - _ = yym2660 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[8] { + if yyq2639[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy2662 := *x.TailLines - yym2663 := z.EncBinary() - _ = yym2663 + yy2667 := *x.TailLines + yym2668 := z.EncBinary() + _ = yym2668 if false { } else { - r.EncodeInt(int64(yy2662)) + r.EncodeInt(int64(yy2667)) } } } else { r.EncodeNil() } } else { - if yyq2634[8] { + if yyq2639[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy2664 := *x.TailLines - yym2665 := z.EncBinary() - _ = yym2665 + yy2669 := *x.TailLines + yym2670 := z.EncBinary() + _ = yym2670 if false { } else { - r.EncodeInt(int64(yy2664)) + r.EncodeInt(int64(yy2669)) } } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2634[9] { + if yyq2639[9] { if x.LimitBytes == nil { r.EncodeNil() } else { - yy2667 := *x.LimitBytes - yym2668 := z.EncBinary() - _ = yym2668 + yy2672 := *x.LimitBytes + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { - r.EncodeInt(int64(yy2667)) + r.EncodeInt(int64(yy2672)) } } } else { r.EncodeNil() } } else { - if yyq2634[9] { + if yyq2639[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy2669 := *x.LimitBytes - yym2670 := z.EncBinary() - _ = yym2670 + yy2674 := *x.LimitBytes + yym2675 := z.EncBinary() + _ = yym2675 if false { } else { - r.EncodeInt(int64(yy2669)) + r.EncodeInt(int64(yy2674)) } } } } - if yyr2634 || yy2arr2634 { + if yyr2639 || yy2arr2639 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33530,25 +33578,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2671 := z.DecBinary() - _ = yym2671 + yym2676 := z.DecBinary() + _ = yym2676 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2672 := r.ContainerType() - if yyct2672 == codecSelferValueTypeMap1234 { - yyl2672 := r.ReadMapStart() - if yyl2672 == 0 { + yyct2677 := r.ContainerType() + if yyct2677 == codecSelferValueTypeMap1234 { + yyl2677 := r.ReadMapStart() + if yyl2677 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2672, d) + x.codecDecodeSelfFromMap(yyl2677, d) } - } else if yyct2672 == codecSelferValueTypeArray1234 { - yyl2672 := r.ReadArrayStart() - if yyl2672 == 0 { + } else if yyct2677 == codecSelferValueTypeArray1234 { + yyl2677 := r.ReadArrayStart() + if yyl2677 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2672, d) + x.codecDecodeSelfFromArray(yyl2677, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33560,12 +33608,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2673Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2673Slc - var yyhl2673 bool = l >= 0 - for yyj2673 := 0; ; yyj2673++ { - if yyhl2673 { - if yyj2673 >= l { + var yys2678Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2678Slc + var yyhl2678 bool = l >= 0 + for yyj2678 := 0; ; yyj2678++ { + if yyhl2678 { + if yyj2678 >= l { break } } else { @@ -33574,10 +33622,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2673Slc = r.DecodeBytes(yys2673Slc, true, true) - yys2673 := string(yys2673Slc) + yys2678Slc = r.DecodeBytes(yys2678Slc, true, true) + yys2678 := string(yys2678Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2673 { + switch yys2678 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33617,8 +33665,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2680 := z.DecBinary() - _ = yym2680 + yym2685 := z.DecBinary() + _ = yym2685 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -33633,13 +33681,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2682 := z.DecBinary() - _ = yym2682 + yym2687 := z.DecBinary() + _ = yym2687 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2682 { + } else if yym2687 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2682 && z.IsJSONHandle() { + } else if !yym2687 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -33660,8 +33708,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2685 := z.DecBinary() - _ = yym2685 + yym2690 := z.DecBinary() + _ = yym2690 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -33676,17 +33724,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2687 := z.DecBinary() - _ = yym2687 + yym2692 := z.DecBinary() + _ = yym2692 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2673) - } // end switch yys2673 - } // end for yyj2673 + z.DecStructFieldNotFound(-1, yys2678) + } // end switch yys2678 + } // end for yyj2678 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33694,16 +33742,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2688 int - var yyb2688 bool - var yyhl2688 bool = l >= 0 - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + var yyj2693 int + var yyb2693 bool + var yyhl2693 bool = l >= 0 + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33713,13 +33761,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33729,13 +33777,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33745,13 +33793,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33761,13 +33809,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33777,13 +33825,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33796,20 +33844,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym2695 := z.DecBinary() - _ = yym2695 + yym2700 := z.DecBinary() + _ = yym2700 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33822,25 +33870,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_unversioned.Time) } - yym2697 := z.DecBinary() - _ = yym2697 + yym2702 := z.DecBinary() + _ = yym2702 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym2697 { + } else if yym2702 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym2697 && z.IsJSONHandle() { + } else if !yym2702 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33850,13 +33898,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33869,20 +33917,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym2700 := z.DecBinary() - _ = yym2700 + yym2705 := z.DecBinary() + _ = yym2705 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33895,25 +33943,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym2702 := z.DecBinary() - _ = yym2702 + yym2707 := z.DecBinary() + _ = yym2707 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj2688++ - if yyhl2688 { - yyb2688 = yyj2688 > l + yyj2693++ + if yyhl2693 { + yyb2693 = yyj2693 > l } else { - yyb2688 = r.CheckBreak() + yyb2693 = r.CheckBreak() } - if yyb2688 { + if yyb2693 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2688-1, "") + z.DecStructFieldNotFound(yyj2693-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33925,41 +33973,41 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2703 := z.EncBinary() - _ = yym2703 + yym2708 := z.EncBinary() + _ = yym2708 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2704 := !z.EncBinary() - yy2arr2704 := z.EncBasicHandle().StructToArray - var yyq2704 [7]bool - _, _, _ = yysep2704, yyq2704, yy2arr2704 - const yyr2704 bool = false - yyq2704[0] = x.Kind != "" - yyq2704[1] = x.APIVersion != "" - yyq2704[2] = x.Stdin != false - yyq2704[3] = x.Stdout != false - yyq2704[4] = x.Stderr != false - yyq2704[5] = x.TTY != false - yyq2704[6] = x.Container != "" - var yynn2704 int - if yyr2704 || yy2arr2704 { + yysep2709 := !z.EncBinary() + yy2arr2709 := z.EncBasicHandle().StructToArray + var yyq2709 [7]bool + _, _, _ = yysep2709, yyq2709, yy2arr2709 + const yyr2709 bool = false + yyq2709[0] = x.Kind != "" + yyq2709[1] = x.APIVersion != "" + yyq2709[2] = x.Stdin != false + yyq2709[3] = x.Stdout != false + yyq2709[4] = x.Stderr != false + yyq2709[5] = x.TTY != false + yyq2709[6] = x.Container != "" + var yynn2709 int + if yyr2709 || yy2arr2709 { r.EncodeArrayStart(7) } else { - yynn2704 = 0 - for _, b := range yyq2704 { + yynn2709 = 0 + for _, b := range yyq2709 { if b { - yynn2704++ + yynn2709++ } } - r.EncodeMapStart(yynn2704) - yynn2704 = 0 + r.EncodeMapStart(yynn2709) + yynn2709 = 0 } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[0] { - yym2706 := z.EncBinary() - _ = yym2706 + if yyq2709[0] { + yym2711 := z.EncBinary() + _ = yym2711 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -33968,23 +34016,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2704[0] { + if yyq2709[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2707 := z.EncBinary() - _ = yym2707 + yym2712 := z.EncBinary() + _ = yym2712 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[1] { - yym2709 := z.EncBinary() - _ = yym2709 + if yyq2709[1] { + yym2714 := z.EncBinary() + _ = yym2714 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -33993,23 +34041,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2704[1] { + if yyq2709[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2710 := z.EncBinary() - _ = yym2710 + yym2715 := z.EncBinary() + _ = yym2715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[2] { - yym2712 := z.EncBinary() - _ = yym2712 + if yyq2709[2] { + yym2717 := z.EncBinary() + _ = yym2717 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -34018,23 +34066,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2704[2] { + if yyq2709[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2713 := z.EncBinary() - _ = yym2713 + yym2718 := z.EncBinary() + _ = yym2718 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[3] { - yym2715 := z.EncBinary() - _ = yym2715 + if yyq2709[3] { + yym2720 := z.EncBinary() + _ = yym2720 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -34043,23 +34091,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2704[3] { + if yyq2709[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2716 := z.EncBinary() - _ = yym2716 + yym2721 := z.EncBinary() + _ = yym2721 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[4] { - yym2718 := z.EncBinary() - _ = yym2718 + if yyq2709[4] { + yym2723 := z.EncBinary() + _ = yym2723 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -34068,23 +34116,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2704[4] { + if yyq2709[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2719 := z.EncBinary() - _ = yym2719 + yym2724 := z.EncBinary() + _ = yym2724 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[5] { - yym2721 := z.EncBinary() - _ = yym2721 + if yyq2709[5] { + yym2726 := z.EncBinary() + _ = yym2726 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -34093,23 +34141,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2704[5] { + if yyq2709[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2722 := z.EncBinary() - _ = yym2722 + yym2727 := z.EncBinary() + _ = yym2727 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2704[6] { - yym2724 := z.EncBinary() - _ = yym2724 + if yyq2709[6] { + yym2729 := z.EncBinary() + _ = yym2729 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -34118,19 +34166,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2704[6] { + if yyq2709[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2725 := z.EncBinary() - _ = yym2725 + yym2730 := z.EncBinary() + _ = yym2730 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2704 || yy2arr2704 { + if yyr2709 || yy2arr2709 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34143,25 +34191,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2726 := z.DecBinary() - _ = yym2726 + yym2731 := z.DecBinary() + _ = yym2731 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2727 := r.ContainerType() - if yyct2727 == codecSelferValueTypeMap1234 { - yyl2727 := r.ReadMapStart() - if yyl2727 == 0 { + yyct2732 := r.ContainerType() + if yyct2732 == codecSelferValueTypeMap1234 { + yyl2732 := r.ReadMapStart() + if yyl2732 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2727, d) + x.codecDecodeSelfFromMap(yyl2732, d) } - } else if yyct2727 == codecSelferValueTypeArray1234 { - yyl2727 := r.ReadArrayStart() - if yyl2727 == 0 { + } else if yyct2732 == codecSelferValueTypeArray1234 { + yyl2732 := r.ReadArrayStart() + if yyl2732 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2727, d) + x.codecDecodeSelfFromArray(yyl2732, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34173,12 +34221,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2728Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2728Slc - var yyhl2728 bool = l >= 0 - for yyj2728 := 0; ; yyj2728++ { - if yyhl2728 { - if yyj2728 >= l { + var yys2733Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2733Slc + var yyhl2733 bool = l >= 0 + for yyj2733 := 0; ; yyj2733++ { + if yyhl2733 { + if yyj2733 >= l { break } } else { @@ -34187,10 +34235,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2728Slc = r.DecodeBytes(yys2728Slc, true, true) - yys2728 := string(yys2728Slc) + yys2733Slc = r.DecodeBytes(yys2733Slc, true, true) + yys2733 := string(yys2733Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2728 { + switch yys2733 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34234,9 +34282,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2728) - } // end switch yys2728 - } // end for yyj2728 + z.DecStructFieldNotFound(-1, yys2733) + } // end switch yys2733 + } // end for yyj2733 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34244,16 +34292,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2736 int - var yyb2736 bool - var yyhl2736 bool = l >= 0 - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + var yyj2741 int + var yyb2741 bool + var yyhl2741 bool = l >= 0 + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34263,13 +34311,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34279,13 +34327,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34295,13 +34343,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34311,13 +34359,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34327,13 +34375,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34343,13 +34391,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34360,17 +34408,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj2736++ - if yyhl2736 { - yyb2736 = yyj2736 > l + yyj2741++ + if yyhl2741 { + yyb2741 = yyj2741 > l } else { - yyb2736 = r.CheckBreak() + yyb2741 = r.CheckBreak() } - if yyb2736 { + if yyb2741 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2736-1, "") + z.DecStructFieldNotFound(yyj2741-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34382,41 +34430,41 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2744 := z.EncBinary() - _ = yym2744 + yym2749 := z.EncBinary() + _ = yym2749 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2745 := !z.EncBinary() - yy2arr2745 := z.EncBasicHandle().StructToArray - var yyq2745 [8]bool - _, _, _ = yysep2745, yyq2745, yy2arr2745 - const yyr2745 bool = false - yyq2745[0] = x.Kind != "" - yyq2745[1] = x.APIVersion != "" - yyq2745[2] = x.Stdin != false - yyq2745[3] = x.Stdout != false - yyq2745[4] = x.Stderr != false - yyq2745[5] = x.TTY != false - yyq2745[6] = x.Container != "" - var yynn2745 int - if yyr2745 || yy2arr2745 { + yysep2750 := !z.EncBinary() + yy2arr2750 := z.EncBasicHandle().StructToArray + var yyq2750 [8]bool + _, _, _ = yysep2750, yyq2750, yy2arr2750 + const yyr2750 bool = false + yyq2750[0] = x.Kind != "" + yyq2750[1] = x.APIVersion != "" + yyq2750[2] = x.Stdin != false + yyq2750[3] = x.Stdout != false + yyq2750[4] = x.Stderr != false + yyq2750[5] = x.TTY != false + yyq2750[6] = x.Container != "" + var yynn2750 int + if yyr2750 || yy2arr2750 { r.EncodeArrayStart(8) } else { - yynn2745 = 1 - for _, b := range yyq2745 { + yynn2750 = 1 + for _, b := range yyq2750 { if b { - yynn2745++ + yynn2750++ } } - r.EncodeMapStart(yynn2745) - yynn2745 = 0 + r.EncodeMapStart(yynn2750) + yynn2750 = 0 } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[0] { - yym2747 := z.EncBinary() - _ = yym2747 + if yyq2750[0] { + yym2752 := z.EncBinary() + _ = yym2752 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34425,23 +34473,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[0] { + if yyq2750[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2748 := z.EncBinary() - _ = yym2748 + yym2753 := z.EncBinary() + _ = yym2753 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[1] { - yym2750 := z.EncBinary() - _ = yym2750 + if yyq2750[1] { + yym2755 := z.EncBinary() + _ = yym2755 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34450,23 +34498,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[1] { + if yyq2750[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2751 := z.EncBinary() - _ = yym2751 + yym2756 := z.EncBinary() + _ = yym2756 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[2] { - yym2753 := z.EncBinary() - _ = yym2753 + if yyq2750[2] { + yym2758 := z.EncBinary() + _ = yym2758 if false { } else { r.EncodeBool(bool(x.Stdin)) @@ -34475,23 +34523,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2745[2] { + if yyq2750[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2754 := z.EncBinary() - _ = yym2754 + yym2759 := z.EncBinary() + _ = yym2759 if false { } else { r.EncodeBool(bool(x.Stdin)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[3] { - yym2756 := z.EncBinary() - _ = yym2756 + if yyq2750[3] { + yym2761 := z.EncBinary() + _ = yym2761 if false { } else { r.EncodeBool(bool(x.Stdout)) @@ -34500,23 +34548,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2745[3] { + if yyq2750[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2757 := z.EncBinary() - _ = yym2757 + yym2762 := z.EncBinary() + _ = yym2762 if false { } else { r.EncodeBool(bool(x.Stdout)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[4] { - yym2759 := z.EncBinary() - _ = yym2759 + if yyq2750[4] { + yym2764 := z.EncBinary() + _ = yym2764 if false { } else { r.EncodeBool(bool(x.Stderr)) @@ -34525,23 +34573,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2745[4] { + if yyq2750[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stderr")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2760 := z.EncBinary() - _ = yym2760 + yym2765 := z.EncBinary() + _ = yym2765 if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[5] { - yym2762 := z.EncBinary() - _ = yym2762 + if yyq2750[5] { + yym2767 := z.EncBinary() + _ = yym2767 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -34550,23 +34598,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2745[5] { + if yyq2750[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2763 := z.EncBinary() - _ = yym2763 + yym2768 := z.EncBinary() + _ = yym2768 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2745[6] { - yym2765 := z.EncBinary() - _ = yym2765 + if yyq2750[6] { + yym2770 := z.EncBinary() + _ = yym2770 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -34575,25 +34623,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2745[6] { + if yyq2750[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2766 := z.EncBinary() - _ = yym2766 + yym2771 := z.EncBinary() + _ = yym2771 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym2768 := z.EncBinary() - _ = yym2768 + yym2773 := z.EncBinary() + _ = yym2773 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -34606,15 +34654,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym2769 := z.EncBinary() - _ = yym2769 + yym2774 := z.EncBinary() + _ = yym2774 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr2745 || yy2arr2745 { + if yyr2750 || yy2arr2750 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34627,25 +34675,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2770 := z.DecBinary() - _ = yym2770 + yym2775 := z.DecBinary() + _ = yym2775 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2771 := r.ContainerType() - if yyct2771 == codecSelferValueTypeMap1234 { - yyl2771 := r.ReadMapStart() - if yyl2771 == 0 { + yyct2776 := r.ContainerType() + if yyct2776 == codecSelferValueTypeMap1234 { + yyl2776 := r.ReadMapStart() + if yyl2776 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2771, d) + x.codecDecodeSelfFromMap(yyl2776, d) } - } else if yyct2771 == codecSelferValueTypeArray1234 { - yyl2771 := r.ReadArrayStart() - if yyl2771 == 0 { + } else if yyct2776 == codecSelferValueTypeArray1234 { + yyl2776 := r.ReadArrayStart() + if yyl2776 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2771, d) + x.codecDecodeSelfFromArray(yyl2776, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34657,12 +34705,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2772Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2772Slc - var yyhl2772 bool = l >= 0 - for yyj2772 := 0; ; yyj2772++ { - if yyhl2772 { - if yyj2772 >= l { + var yys2777Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2777Slc + var yyhl2777 bool = l >= 0 + for yyj2777 := 0; ; yyj2777++ { + if yyhl2777 { + if yyj2777 >= l { break } } else { @@ -34671,10 +34719,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2772Slc = r.DecodeBytes(yys2772Slc, true, true) - yys2772 := string(yys2772Slc) + yys2777Slc = r.DecodeBytes(yys2777Slc, true, true) + yys2777 := string(yys2777Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2772 { + switch yys2777 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -34721,18 +34769,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2780 := &x.Command - yym2781 := z.DecBinary() - _ = yym2781 + yyv2785 := &x.Command + yym2786 := z.DecBinary() + _ = yym2786 if false { } else { - z.F.DecSliceStringX(yyv2780, false, d) + z.F.DecSliceStringX(yyv2785, false, d) } } default: - z.DecStructFieldNotFound(-1, yys2772) - } // end switch yys2772 - } // end for yyj2772 + z.DecStructFieldNotFound(-1, yys2777) + } // end switch yys2777 + } // end for yyj2777 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34740,16 +34788,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2782 int - var yyb2782 bool - var yyhl2782 bool = l >= 0 - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + var yyj2787 int + var yyb2787 bool + var yyhl2787 bool = l >= 0 + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34759,13 +34807,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34775,13 +34823,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34791,13 +34839,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34807,13 +34855,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34823,13 +34871,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34839,13 +34887,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34855,13 +34903,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34869,26 +34917,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv2790 := &x.Command - yym2791 := z.DecBinary() - _ = yym2791 + yyv2795 := &x.Command + yym2796 := z.DecBinary() + _ = yym2796 if false { } else { - z.F.DecSliceStringX(yyv2790, false, d) + z.F.DecSliceStringX(yyv2795, false, d) } } for { - yyj2782++ - if yyhl2782 { - yyb2782 = yyj2782 > l + yyj2787++ + if yyhl2787 { + yyb2787 = yyj2787 > l } else { - yyb2782 = r.CheckBreak() + yyb2787 = r.CheckBreak() } - if yyb2782 { + if yyb2787 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2782-1, "") + z.DecStructFieldNotFound(yyj2787-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34900,37 +34948,37 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2792 := z.EncBinary() - _ = yym2792 + yym2797 := z.EncBinary() + _ = yym2797 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2793 := !z.EncBinary() - yy2arr2793 := z.EncBasicHandle().StructToArray - var yyq2793 [3]bool - _, _, _ = yysep2793, yyq2793, yy2arr2793 - const yyr2793 bool = false - yyq2793[0] = x.Kind != "" - yyq2793[1] = x.APIVersion != "" - yyq2793[2] = x.Path != "" - var yynn2793 int - if yyr2793 || yy2arr2793 { + yysep2798 := !z.EncBinary() + yy2arr2798 := z.EncBasicHandle().StructToArray + var yyq2798 [3]bool + _, _, _ = yysep2798, yyq2798, yy2arr2798 + const yyr2798 bool = false + yyq2798[0] = x.Kind != "" + yyq2798[1] = x.APIVersion != "" + yyq2798[2] = x.Path != "" + var yynn2798 int + if yyr2798 || yy2arr2798 { r.EncodeArrayStart(3) } else { - yynn2793 = 0 - for _, b := range yyq2793 { + yynn2798 = 0 + for _, b := range yyq2798 { if b { - yynn2793++ + yynn2798++ } } - r.EncodeMapStart(yynn2793) - yynn2793 = 0 + r.EncodeMapStart(yynn2798) + yynn2798 = 0 } - if yyr2793 || yy2arr2793 { + if yyr2798 || yy2arr2798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[0] { - yym2795 := z.EncBinary() - _ = yym2795 + if yyq2798[0] { + yym2800 := z.EncBinary() + _ = yym2800 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -34939,23 +34987,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2793[0] { + if yyq2798[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2796 := z.EncBinary() - _ = yym2796 + yym2801 := z.EncBinary() + _ = yym2801 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2793 || yy2arr2793 { + if yyr2798 || yy2arr2798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[1] { - yym2798 := z.EncBinary() - _ = yym2798 + if yyq2798[1] { + yym2803 := z.EncBinary() + _ = yym2803 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -34964,23 +35012,23 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2793[1] { + if yyq2798[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2799 := z.EncBinary() - _ = yym2799 + yym2804 := z.EncBinary() + _ = yym2804 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2793 || yy2arr2793 { + if yyr2798 || yy2arr2798 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2793[2] { - yym2801 := z.EncBinary() - _ = yym2801 + if yyq2798[2] { + yym2806 := z.EncBinary() + _ = yym2806 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -34989,19 +35037,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2793[2] { + if yyq2798[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2802 := z.EncBinary() - _ = yym2802 + yym2807 := z.EncBinary() + _ = yym2807 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr2793 || yy2arr2793 { + if yyr2798 || yy2arr2798 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35014,25 +35062,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2803 := z.DecBinary() - _ = yym2803 + yym2808 := z.DecBinary() + _ = yym2808 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2804 := r.ContainerType() - if yyct2804 == codecSelferValueTypeMap1234 { - yyl2804 := r.ReadMapStart() - if yyl2804 == 0 { + yyct2809 := r.ContainerType() + if yyct2809 == codecSelferValueTypeMap1234 { + yyl2809 := r.ReadMapStart() + if yyl2809 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2804, d) + x.codecDecodeSelfFromMap(yyl2809, d) } - } else if yyct2804 == codecSelferValueTypeArray1234 { - yyl2804 := r.ReadArrayStart() - if yyl2804 == 0 { + } else if yyct2809 == codecSelferValueTypeArray1234 { + yyl2809 := r.ReadArrayStart() + if yyl2809 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2804, d) + x.codecDecodeSelfFromArray(yyl2809, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35044,12 +35092,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2805Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2805Slc - var yyhl2805 bool = l >= 0 - for yyj2805 := 0; ; yyj2805++ { - if yyhl2805 { - if yyj2805 >= l { + var yys2810Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2810Slc + var yyhl2810 bool = l >= 0 + for yyj2810 := 0; ; yyj2810++ { + if yyhl2810 { + if yyj2810 >= l { break } } else { @@ -35058,10 +35106,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2805Slc = r.DecodeBytes(yys2805Slc, true, true) - yys2805 := string(yys2805Slc) + yys2810Slc = r.DecodeBytes(yys2810Slc, true, true) + yys2810 := string(yys2810Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2805 { + switch yys2810 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35081,9 +35129,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2805) - } // end switch yys2805 - } // end for yyj2805 + z.DecStructFieldNotFound(-1, yys2810) + } // end switch yys2810 + } // end for yyj2810 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35091,16 +35139,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2809 int - var yyb2809 bool - var yyhl2809 bool = l >= 0 - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + var yyj2814 int + var yyb2814 bool + var yyhl2814 bool = l >= 0 + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35110,13 +35158,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35126,13 +35174,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35143,17 +35191,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj2809++ - if yyhl2809 { - yyb2809 = yyj2809 > l + yyj2814++ + if yyhl2814 { + yyb2814 = yyj2814 > l } else { - yyb2809 = r.CheckBreak() + yyb2814 = r.CheckBreak() } - if yyb2809 { + if yyb2814 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2809-1, "") + z.DecStructFieldNotFound(yyj2814-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35165,41 +35213,41 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2813 := z.EncBinary() - _ = yym2813 + yym2818 := z.EncBinary() + _ = yym2818 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2814 := !z.EncBinary() - yy2arr2814 := z.EncBasicHandle().StructToArray - var yyq2814 [7]bool - _, _, _ = yysep2814, yyq2814, yy2arr2814 - const yyr2814 bool = false - yyq2814[0] = x.Kind != "" - yyq2814[1] = x.Namespace != "" - yyq2814[2] = x.Name != "" - yyq2814[3] = x.UID != "" - yyq2814[4] = x.APIVersion != "" - yyq2814[5] = x.ResourceVersion != "" - yyq2814[6] = x.FieldPath != "" - var yynn2814 int - if yyr2814 || yy2arr2814 { + yysep2819 := !z.EncBinary() + yy2arr2819 := z.EncBasicHandle().StructToArray + var yyq2819 [7]bool + _, _, _ = yysep2819, yyq2819, yy2arr2819 + const yyr2819 bool = false + yyq2819[0] = x.Kind != "" + yyq2819[1] = x.Namespace != "" + yyq2819[2] = x.Name != "" + yyq2819[3] = x.UID != "" + yyq2819[4] = x.APIVersion != "" + yyq2819[5] = x.ResourceVersion != "" + yyq2819[6] = x.FieldPath != "" + var yynn2819 int + if yyr2819 || yy2arr2819 { r.EncodeArrayStart(7) } else { - yynn2814 = 0 - for _, b := range yyq2814 { + yynn2819 = 0 + for _, b := range yyq2819 { if b { - yynn2814++ + yynn2819++ } } - r.EncodeMapStart(yynn2814) - yynn2814 = 0 + r.EncodeMapStart(yynn2819) + yynn2819 = 0 } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[0] { - yym2816 := z.EncBinary() - _ = yym2816 + if yyq2819[0] { + yym2821 := z.EncBinary() + _ = yym2821 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35208,23 +35256,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[0] { + if yyq2819[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2817 := z.EncBinary() - _ = yym2817 + yym2822 := z.EncBinary() + _ = yym2822 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[1] { - yym2819 := z.EncBinary() - _ = yym2819 + if yyq2819[1] { + yym2824 := z.EncBinary() + _ = yym2824 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) @@ -35233,23 +35281,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[1] { + if yyq2819[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2820 := z.EncBinary() - _ = yym2820 + yym2825 := z.EncBinary() + _ = yym2825 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[2] { - yym2822 := z.EncBinary() - _ = yym2822 + if yyq2819[2] { + yym2827 := z.EncBinary() + _ = yym2827 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35258,23 +35306,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[2] { + if yyq2819[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2823 := z.EncBinary() - _ = yym2823 + yym2828 := z.EncBinary() + _ = yym2828 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[3] { - yym2825 := z.EncBinary() - _ = yym2825 + if yyq2819[3] { + yym2830 := z.EncBinary() + _ = yym2830 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -35284,12 +35332,12 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[3] { + if yyq2819[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2826 := z.EncBinary() - _ = yym2826 + yym2831 := z.EncBinary() + _ = yym2831 if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { @@ -35297,11 +35345,11 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[4] { - yym2828 := z.EncBinary() - _ = yym2828 + if yyq2819[4] { + yym2833 := z.EncBinary() + _ = yym2833 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35310,23 +35358,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[4] { + if yyq2819[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2829 := z.EncBinary() - _ = yym2829 + yym2834 := z.EncBinary() + _ = yym2834 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[5] { - yym2831 := z.EncBinary() - _ = yym2831 + if yyq2819[5] { + yym2836 := z.EncBinary() + _ = yym2836 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -35335,23 +35383,23 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[5] { + if yyq2819[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2832 := z.EncBinary() - _ = yym2832 + yym2837 := z.EncBinary() + _ = yym2837 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2814[6] { - yym2834 := z.EncBinary() - _ = yym2834 + if yyq2819[6] { + yym2839 := z.EncBinary() + _ = yym2839 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -35360,19 +35408,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2814[6] { + if yyq2819[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2835 := z.EncBinary() - _ = yym2835 + yym2840 := z.EncBinary() + _ = yym2840 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr2814 || yy2arr2814 { + if yyr2819 || yy2arr2819 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35385,25 +35433,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2836 := z.DecBinary() - _ = yym2836 + yym2841 := z.DecBinary() + _ = yym2841 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2837 := r.ContainerType() - if yyct2837 == codecSelferValueTypeMap1234 { - yyl2837 := r.ReadMapStart() - if yyl2837 == 0 { + yyct2842 := r.ContainerType() + if yyct2842 == codecSelferValueTypeMap1234 { + yyl2842 := r.ReadMapStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2837, d) + x.codecDecodeSelfFromMap(yyl2842, d) } - } else if yyct2837 == codecSelferValueTypeArray1234 { - yyl2837 := r.ReadArrayStart() - if yyl2837 == 0 { + } else if yyct2842 == codecSelferValueTypeArray1234 { + yyl2842 := r.ReadArrayStart() + if yyl2842 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2837, d) + x.codecDecodeSelfFromArray(yyl2842, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35415,12 +35463,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2838Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2838Slc - var yyhl2838 bool = l >= 0 - for yyj2838 := 0; ; yyj2838++ { - if yyhl2838 { - if yyj2838 >= l { + var yys2843Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2843Slc + var yyhl2843 bool = l >= 0 + for yyj2843 := 0; ; yyj2843++ { + if yyhl2843 { + if yyj2843 >= l { break } } else { @@ -35429,10 +35477,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2838Slc = r.DecodeBytes(yys2838Slc, true, true) - yys2838 := string(yys2838Slc) + yys2843Slc = r.DecodeBytes(yys2843Slc, true, true) + yys2843 := string(yys2843Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2838 { + switch yys2843 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35476,9 +35524,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2838) - } // end switch yys2838 - } // end for yyj2838 + z.DecStructFieldNotFound(-1, yys2843) + } // end switch yys2843 + } // end for yyj2843 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35486,16 +35534,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2846 int - var yyb2846 bool - var yyhl2846 bool = l >= 0 - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + var yyj2851 int + var yyb2851 bool + var yyhl2851 bool = l >= 0 + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35505,13 +35553,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35521,13 +35569,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35537,13 +35585,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35553,13 +35601,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35569,13 +35617,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35585,13 +35633,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35602,17 +35650,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj2846++ - if yyhl2846 { - yyb2846 = yyj2846 > l + yyj2851++ + if yyhl2851 { + yyb2851 = yyj2851 > l } else { - yyb2846 = r.CheckBreak() + yyb2851 = r.CheckBreak() } - if yyb2846 { + if yyb2851 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2846-1, "") + z.DecStructFieldNotFound(yyj2851-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35624,35 +35672,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2854 := z.EncBinary() - _ = yym2854 + yym2859 := z.EncBinary() + _ = yym2859 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2855 := !z.EncBinary() - yy2arr2855 := z.EncBasicHandle().StructToArray - var yyq2855 [1]bool - _, _, _ = yysep2855, yyq2855, yy2arr2855 - const yyr2855 bool = false - yyq2855[0] = x.Name != "" - var yynn2855 int - if yyr2855 || yy2arr2855 { + yysep2860 := !z.EncBinary() + yy2arr2860 := z.EncBasicHandle().StructToArray + var yyq2860 [1]bool + _, _, _ = yysep2860, yyq2860, yy2arr2860 + const yyr2860 bool = false + yyq2860[0] = x.Name != "" + var yynn2860 int + if yyr2860 || yy2arr2860 { r.EncodeArrayStart(1) } else { - yynn2855 = 0 - for _, b := range yyq2855 { + yynn2860 = 0 + for _, b := range yyq2860 { if b { - yynn2855++ + yynn2860++ } } - r.EncodeMapStart(yynn2855) - yynn2855 = 0 + r.EncodeMapStart(yynn2860) + yynn2860 = 0 } - if yyr2855 || yy2arr2855 { + if yyr2860 || yy2arr2860 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2855[0] { - yym2857 := z.EncBinary() - _ = yym2857 + if yyq2860[0] { + yym2862 := z.EncBinary() + _ = yym2862 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -35661,19 +35709,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2855[0] { + if yyq2860[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2858 := z.EncBinary() - _ = yym2858 + yym2863 := z.EncBinary() + _ = yym2863 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2855 || yy2arr2855 { + if yyr2860 || yy2arr2860 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35686,25 +35734,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2859 := z.DecBinary() - _ = yym2859 + yym2864 := z.DecBinary() + _ = yym2864 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2860 := r.ContainerType() - if yyct2860 == codecSelferValueTypeMap1234 { - yyl2860 := r.ReadMapStart() - if yyl2860 == 0 { + yyct2865 := r.ContainerType() + if yyct2865 == codecSelferValueTypeMap1234 { + yyl2865 := r.ReadMapStart() + if yyl2865 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2860, d) + x.codecDecodeSelfFromMap(yyl2865, d) } - } else if yyct2860 == codecSelferValueTypeArray1234 { - yyl2860 := r.ReadArrayStart() - if yyl2860 == 0 { + } else if yyct2865 == codecSelferValueTypeArray1234 { + yyl2865 := r.ReadArrayStart() + if yyl2865 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2860, d) + x.codecDecodeSelfFromArray(yyl2865, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35716,12 +35764,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2861Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2861Slc - var yyhl2861 bool = l >= 0 - for yyj2861 := 0; ; yyj2861++ { - if yyhl2861 { - if yyj2861 >= l { + var yys2866Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2866Slc + var yyhl2866 bool = l >= 0 + for yyj2866 := 0; ; yyj2866++ { + if yyhl2866 { + if yyj2866 >= l { break } } else { @@ -35730,10 +35778,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2861Slc = r.DecodeBytes(yys2861Slc, true, true) - yys2861 := string(yys2861Slc) + yys2866Slc = r.DecodeBytes(yys2866Slc, true, true) + yys2866 := string(yys2866Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2861 { + switch yys2866 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -35741,9 +35789,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2861) - } // end switch yys2861 - } // end for yyj2861 + z.DecStructFieldNotFound(-1, yys2866) + } // end switch yys2866 + } // end for yyj2866 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35751,16 +35799,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2863 int - var yyb2863 bool - var yyhl2863 bool = l >= 0 - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + var yyj2868 int + var yyb2868 bool + var yyhl2868 bool = l >= 0 + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2863 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2863 { + if yyb2868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35771,17 +35819,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj2863++ - if yyhl2863 { - yyb2863 = yyj2863 > l + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2863 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2863 { + if yyb2868 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2863-1, "") + z.DecStructFieldNotFound(yyj2868-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35793,37 +35841,37 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2865 := z.EncBinary() - _ = yym2865 + yym2870 := z.EncBinary() + _ = yym2870 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2866 := !z.EncBinary() - yy2arr2866 := z.EncBasicHandle().StructToArray - var yyq2866 [3]bool - _, _, _ = yysep2866, yyq2866, yy2arr2866 - const yyr2866 bool = false - yyq2866[0] = x.Kind != "" - yyq2866[1] = x.APIVersion != "" - yyq2866[2] = true - var yynn2866 int - if yyr2866 || yy2arr2866 { + yysep2871 := !z.EncBinary() + yy2arr2871 := z.EncBasicHandle().StructToArray + var yyq2871 [3]bool + _, _, _ = yysep2871, yyq2871, yy2arr2871 + const yyr2871 bool = false + yyq2871[0] = x.Kind != "" + yyq2871[1] = x.APIVersion != "" + yyq2871[2] = true + var yynn2871 int + if yyr2871 || yy2arr2871 { r.EncodeArrayStart(3) } else { - yynn2866 = 0 - for _, b := range yyq2866 { + yynn2871 = 0 + for _, b := range yyq2871 { if b { - yynn2866++ + yynn2871++ } } - r.EncodeMapStart(yynn2866) - yynn2866 = 0 + r.EncodeMapStart(yynn2871) + yynn2871 = 0 } - if yyr2866 || yy2arr2866 { + if yyr2871 || yy2arr2871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2866[0] { - yym2868 := z.EncBinary() - _ = yym2868 + if yyq2871[0] { + yym2873 := z.EncBinary() + _ = yym2873 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -35832,23 +35880,23 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2866[0] { + if yyq2871[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2869 := z.EncBinary() - _ = yym2869 + yym2874 := z.EncBinary() + _ = yym2874 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2866 || yy2arr2866 { + if yyr2871 || yy2arr2871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2866[1] { - yym2871 := z.EncBinary() - _ = yym2871 + if yyq2871[1] { + yym2876 := z.EncBinary() + _ = yym2876 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -35857,36 +35905,36 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2866[1] { + if yyq2871[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2872 := z.EncBinary() - _ = yym2872 + yym2877 := z.EncBinary() + _ = yym2877 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2866 || yy2arr2866 { + if yyr2871 || yy2arr2871 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2866[2] { - yy2874 := &x.Reference - yy2874.CodecEncodeSelf(e) + if yyq2871[2] { + yy2879 := &x.Reference + yy2879.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2866[2] { + if yyq2871[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2875 := &x.Reference - yy2875.CodecEncodeSelf(e) + yy2880 := &x.Reference + yy2880.CodecEncodeSelf(e) } } - if yyr2866 || yy2arr2866 { + if yyr2871 || yy2arr2871 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35899,25 +35947,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2876 := z.DecBinary() - _ = yym2876 + yym2881 := z.DecBinary() + _ = yym2881 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2877 := r.ContainerType() - if yyct2877 == codecSelferValueTypeMap1234 { - yyl2877 := r.ReadMapStart() - if yyl2877 == 0 { + yyct2882 := r.ContainerType() + if yyct2882 == codecSelferValueTypeMap1234 { + yyl2882 := r.ReadMapStart() + if yyl2882 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2877, d) + x.codecDecodeSelfFromMap(yyl2882, d) } - } else if yyct2877 == codecSelferValueTypeArray1234 { - yyl2877 := r.ReadArrayStart() - if yyl2877 == 0 { + } else if yyct2882 == codecSelferValueTypeArray1234 { + yyl2882 := r.ReadArrayStart() + if yyl2882 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2877, d) + x.codecDecodeSelfFromArray(yyl2882, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35929,12 +35977,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2878Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2878Slc - var yyhl2878 bool = l >= 0 - for yyj2878 := 0; ; yyj2878++ { - if yyhl2878 { - if yyj2878 >= l { + var yys2883Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2883Slc + var yyhl2883 bool = l >= 0 + for yyj2883 := 0; ; yyj2883++ { + if yyhl2883 { + if yyj2883 >= l { break } } else { @@ -35943,10 +35991,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2878Slc = r.DecodeBytes(yys2878Slc, true, true) - yys2878 := string(yys2878Slc) + yys2883Slc = r.DecodeBytes(yys2883Slc, true, true) + yys2883 := string(yys2883Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2878 { + switch yys2883 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35963,13 +36011,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv2881 := &x.Reference - yyv2881.CodecDecodeSelf(d) + yyv2886 := &x.Reference + yyv2886.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2878) - } // end switch yys2878 - } // end for yyj2878 + z.DecStructFieldNotFound(-1, yys2883) + } // end switch yys2883 + } // end for yyj2883 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35977,16 +36025,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2882 int - var yyb2882 bool - var yyhl2882 bool = l >= 0 - yyj2882++ - if yyhl2882 { - yyb2882 = yyj2882 > l + var yyj2887 int + var yyb2887 bool + var yyhl2887 bool = l >= 0 + yyj2887++ + if yyhl2887 { + yyb2887 = yyj2887 > l } else { - yyb2882 = r.CheckBreak() + yyb2887 = r.CheckBreak() } - if yyb2882 { + if yyb2887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35996,13 +36044,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj2882++ - if yyhl2882 { - yyb2882 = yyj2882 > l + yyj2887++ + if yyhl2887 { + yyb2887 = yyj2887 > l } else { - yyb2882 = r.CheckBreak() + yyb2887 = r.CheckBreak() } - if yyb2882 { + if yyb2887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36012,13 +36060,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj2882++ - if yyhl2882 { - yyb2882 = yyj2882 > l + yyj2887++ + if yyhl2887 { + yyb2887 = yyj2887 > l } else { - yyb2882 = r.CheckBreak() + yyb2887 = r.CheckBreak() } - if yyb2882 { + if yyb2887 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36026,21 +36074,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv2885 := &x.Reference - yyv2885.CodecDecodeSelf(d) + yyv2890 := &x.Reference + yyv2890.CodecDecodeSelf(d) } for { - yyj2882++ - if yyhl2882 { - yyb2882 = yyj2882 > l + yyj2887++ + if yyhl2887 { + yyb2887 = yyj2887 > l } else { - yyb2882 = r.CheckBreak() + yyb2887 = r.CheckBreak() } - if yyb2882 { + if yyb2887 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2882-1, "") + z.DecStructFieldNotFound(yyj2887-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36052,36 +36100,36 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2886 := z.EncBinary() - _ = yym2886 + yym2891 := z.EncBinary() + _ = yym2891 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2887 := !z.EncBinary() - yy2arr2887 := z.EncBasicHandle().StructToArray - var yyq2887 [2]bool - _, _, _ = yysep2887, yyq2887, yy2arr2887 - const yyr2887 bool = false - yyq2887[0] = x.Component != "" - yyq2887[1] = x.Host != "" - var yynn2887 int - if yyr2887 || yy2arr2887 { + yysep2892 := !z.EncBinary() + yy2arr2892 := z.EncBasicHandle().StructToArray + var yyq2892 [2]bool + _, _, _ = yysep2892, yyq2892, yy2arr2892 + const yyr2892 bool = false + yyq2892[0] = x.Component != "" + yyq2892[1] = x.Host != "" + var yynn2892 int + if yyr2892 || yy2arr2892 { r.EncodeArrayStart(2) } else { - yynn2887 = 0 - for _, b := range yyq2887 { + yynn2892 = 0 + for _, b := range yyq2892 { if b { - yynn2887++ + yynn2892++ } } - r.EncodeMapStart(yynn2887) - yynn2887 = 0 + r.EncodeMapStart(yynn2892) + yynn2892 = 0 } - if yyr2887 || yy2arr2887 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2887[0] { - yym2889 := z.EncBinary() - _ = yym2889 + if yyq2892[0] { + yym2894 := z.EncBinary() + _ = yym2894 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) @@ -36090,23 +36138,23 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2887[0] { + if yyq2892[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2890 := z.EncBinary() - _ = yym2890 + yym2895 := z.EncBinary() + _ = yym2895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } } - if yyr2887 || yy2arr2887 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2887[1] { - yym2892 := z.EncBinary() - _ = yym2892 + if yyq2892[1] { + yym2897 := z.EncBinary() + _ = yym2897 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) @@ -36115,19 +36163,19 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2887[1] { + if yyq2892[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("host")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2893 := z.EncBinary() - _ = yym2893 + yym2898 := z.EncBinary() + _ = yym2898 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr2887 || yy2arr2887 { + if yyr2892 || yy2arr2892 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36140,25 +36188,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2894 := z.DecBinary() - _ = yym2894 + yym2899 := z.DecBinary() + _ = yym2899 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2895 := r.ContainerType() - if yyct2895 == codecSelferValueTypeMap1234 { - yyl2895 := r.ReadMapStart() - if yyl2895 == 0 { + yyct2900 := r.ContainerType() + if yyct2900 == codecSelferValueTypeMap1234 { + yyl2900 := r.ReadMapStart() + if yyl2900 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2895, d) + x.codecDecodeSelfFromMap(yyl2900, d) } - } else if yyct2895 == codecSelferValueTypeArray1234 { - yyl2895 := r.ReadArrayStart() - if yyl2895 == 0 { + } else if yyct2900 == codecSelferValueTypeArray1234 { + yyl2900 := r.ReadArrayStart() + if yyl2900 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2895, d) + x.codecDecodeSelfFromArray(yyl2900, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36170,12 +36218,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2896Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2896Slc - var yyhl2896 bool = l >= 0 - for yyj2896 := 0; ; yyj2896++ { - if yyhl2896 { - if yyj2896 >= l { + var yys2901Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2901Slc + var yyhl2901 bool = l >= 0 + for yyj2901 := 0; ; yyj2901++ { + if yyhl2901 { + if yyj2901 >= l { break } } else { @@ -36184,10 +36232,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2896Slc = r.DecodeBytes(yys2896Slc, true, true) - yys2896 := string(yys2896Slc) + yys2901Slc = r.DecodeBytes(yys2901Slc, true, true) + yys2901 := string(yys2901Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2896 { + switch yys2901 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -36201,9 +36249,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2896) - } // end switch yys2896 - } // end for yyj2896 + z.DecStructFieldNotFound(-1, yys2901) + } // end switch yys2901 + } // end for yyj2901 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36211,16 +36259,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2899 int - var yyb2899 bool - var yyhl2899 bool = l >= 0 - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + var yyj2904 int + var yyb2904 bool + var yyhl2904 bool = l >= 0 + yyj2904++ + if yyhl2904 { + yyb2904 = yyj2904 > l } else { - yyb2899 = r.CheckBreak() + yyb2904 = r.CheckBreak() } - if yyb2899 { + if yyb2904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36230,13 +36278,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2904++ + if yyhl2904 { + yyb2904 = yyj2904 > l } else { - yyb2899 = r.CheckBreak() + yyb2904 = r.CheckBreak() } - if yyb2899 { + if yyb2904 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36247,17 +36295,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj2899++ - if yyhl2899 { - yyb2899 = yyj2899 > l + yyj2904++ + if yyhl2904 { + yyb2904 = yyj2904 > l } else { - yyb2899 = r.CheckBreak() + yyb2904 = r.CheckBreak() } - if yyb2899 { + if yyb2904 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2899-1, "") + z.DecStructFieldNotFound(yyj2904-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36269,43 +36317,43 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2902 := z.EncBinary() - _ = yym2902 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2903 := !z.EncBinary() - yy2arr2903 := z.EncBasicHandle().StructToArray - var yyq2903 [11]bool - _, _, _ = yysep2903, yyq2903, yy2arr2903 - const yyr2903 bool = false - yyq2903[0] = x.Kind != "" - yyq2903[1] = x.APIVersion != "" - yyq2903[4] = x.Reason != "" - yyq2903[5] = x.Message != "" - yyq2903[6] = true - yyq2903[7] = true - yyq2903[8] = true - yyq2903[9] = x.Count != 0 - yyq2903[10] = x.Type != "" - var yynn2903 int - if yyr2903 || yy2arr2903 { + yysep2908 := !z.EncBinary() + yy2arr2908 := z.EncBasicHandle().StructToArray + var yyq2908 [11]bool + _, _, _ = yysep2908, yyq2908, yy2arr2908 + const yyr2908 bool = false + yyq2908[0] = x.Kind != "" + yyq2908[1] = x.APIVersion != "" + yyq2908[4] = x.Reason != "" + yyq2908[5] = x.Message != "" + yyq2908[6] = true + yyq2908[7] = true + yyq2908[8] = true + yyq2908[9] = x.Count != 0 + yyq2908[10] = x.Type != "" + var yynn2908 int + if yyr2908 || yy2arr2908 { r.EncodeArrayStart(11) } else { - yynn2903 = 2 - for _, b := range yyq2903 { + yynn2908 = 2 + for _, b := range yyq2908 { if b { - yynn2903++ + yynn2908++ } } - r.EncodeMapStart(yynn2903) - yynn2903 = 0 + r.EncodeMapStart(yynn2908) + yynn2908 = 0 } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[0] { - yym2905 := z.EncBinary() - _ = yym2905 + if yyq2908[0] { + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36314,23 +36362,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2903[0] { + if yyq2908[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2906 := z.EncBinary() - _ = yym2906 + yym2911 := z.EncBinary() + _ = yym2911 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[1] { - yym2908 := z.EncBinary() - _ = yym2908 + if yyq2908[1] { + yym2913 := z.EncBinary() + _ = yym2913 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -36339,45 +36387,45 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2903[1] { + if yyq2908[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2909 := z.EncBinary() - _ = yym2909 + yym2914 := z.EncBinary() + _ = yym2914 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2911 := &x.ObjectMeta - yy2911.CodecEncodeSelf(e) + yy2916 := &x.ObjectMeta + yy2916.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2912 := &x.ObjectMeta - yy2912.CodecEncodeSelf(e) + yy2917 := &x.ObjectMeta + yy2917.CodecEncodeSelf(e) } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy2914 := &x.InvolvedObject - yy2914.CodecEncodeSelf(e) + yy2919 := &x.InvolvedObject + yy2919.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2915 := &x.InvolvedObject - yy2915.CodecEncodeSelf(e) + yy2920 := &x.InvolvedObject + yy2920.CodecEncodeSelf(e) } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[4] { - yym2917 := z.EncBinary() - _ = yym2917 + if yyq2908[4] { + yym2922 := z.EncBinary() + _ = yym2922 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) @@ -36386,23 +36434,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2903[4] { + if yyq2908[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2918 := z.EncBinary() - _ = yym2918 + yym2923 := z.EncBinary() + _ = yym2923 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[5] { - yym2920 := z.EncBinary() - _ = yym2920 + if yyq2908[5] { + yym2925 := z.EncBinary() + _ = yym2925 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -36411,114 +36459,114 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2903[5] { + if yyq2908[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2921 := z.EncBinary() - _ = yym2921 + yym2926 := z.EncBinary() + _ = yym2926 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[6] { - yy2923 := &x.Source - yy2923.CodecEncodeSelf(e) + if yyq2908[6] { + yy2928 := &x.Source + yy2928.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2903[6] { + if yyq2908[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2924 := &x.Source - yy2924.CodecEncodeSelf(e) + yy2929 := &x.Source + yy2929.CodecEncodeSelf(e) } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[7] { - yy2926 := &x.FirstTimestamp - yym2927 := z.EncBinary() - _ = yym2927 + if yyq2908[7] { + yy2931 := &x.FirstTimestamp + yym2932 := z.EncBinary() + _ = yym2932 if false { - } else if z.HasExtensions() && z.EncExt(yy2926) { - } else if yym2927 { - z.EncBinaryMarshal(yy2926) - } else if !yym2927 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2926) + } else if z.HasExtensions() && z.EncExt(yy2931) { + } else if yym2932 { + z.EncBinaryMarshal(yy2931) + } else if !yym2932 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2931) } else { - z.EncFallback(yy2926) + z.EncFallback(yy2931) } } else { r.EncodeNil() } } else { - if yyq2903[7] { + if yyq2908[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2928 := &x.FirstTimestamp - yym2929 := z.EncBinary() - _ = yym2929 + yy2933 := &x.FirstTimestamp + yym2934 := z.EncBinary() + _ = yym2934 if false { - } else if z.HasExtensions() && z.EncExt(yy2928) { - } else if yym2929 { - z.EncBinaryMarshal(yy2928) - } else if !yym2929 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2928) + } else if z.HasExtensions() && z.EncExt(yy2933) { + } else if yym2934 { + z.EncBinaryMarshal(yy2933) + } else if !yym2934 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2933) } else { - z.EncFallback(yy2928) + z.EncFallback(yy2933) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[8] { - yy2931 := &x.LastTimestamp - yym2932 := z.EncBinary() - _ = yym2932 + if yyq2908[8] { + yy2936 := &x.LastTimestamp + yym2937 := z.EncBinary() + _ = yym2937 if false { - } else if z.HasExtensions() && z.EncExt(yy2931) { - } else if yym2932 { - z.EncBinaryMarshal(yy2931) - } else if !yym2932 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2931) + } else if z.HasExtensions() && z.EncExt(yy2936) { + } else if yym2937 { + z.EncBinaryMarshal(yy2936) + } else if !yym2937 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2936) } else { - z.EncFallback(yy2931) + z.EncFallback(yy2936) } } else { r.EncodeNil() } } else { - if yyq2903[8] { + if yyq2908[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2933 := &x.LastTimestamp - yym2934 := z.EncBinary() - _ = yym2934 + yy2938 := &x.LastTimestamp + yym2939 := z.EncBinary() + _ = yym2939 if false { - } else if z.HasExtensions() && z.EncExt(yy2933) { - } else if yym2934 { - z.EncBinaryMarshal(yy2933) - } else if !yym2934 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2933) + } else if z.HasExtensions() && z.EncExt(yy2938) { + } else if yym2939 { + z.EncBinaryMarshal(yy2938) + } else if !yym2939 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2938) } else { - z.EncFallback(yy2933) + z.EncFallback(yy2938) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[9] { - yym2936 := z.EncBinary() - _ = yym2936 + if yyq2908[9] { + yym2941 := z.EncBinary() + _ = yym2941 if false { } else { r.EncodeInt(int64(x.Count)) @@ -36527,23 +36575,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2903[9] { + if yyq2908[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2937 := z.EncBinary() - _ = yym2937 + yym2942 := z.EncBinary() + _ = yym2942 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2903[10] { - yym2939 := z.EncBinary() - _ = yym2939 + if yyq2908[10] { + yym2944 := z.EncBinary() + _ = yym2944 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -36552,19 +36600,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2903[10] { + if yyq2908[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2940 := z.EncBinary() - _ = yym2940 + yym2945 := z.EncBinary() + _ = yym2945 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr2903 || yy2arr2903 { + if yyr2908 || yy2arr2908 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36577,25 +36625,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2941 := z.DecBinary() - _ = yym2941 + yym2946 := z.DecBinary() + _ = yym2946 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2942 := r.ContainerType() - if yyct2942 == codecSelferValueTypeMap1234 { - yyl2942 := r.ReadMapStart() - if yyl2942 == 0 { + yyct2947 := r.ContainerType() + if yyct2947 == codecSelferValueTypeMap1234 { + yyl2947 := r.ReadMapStart() + if yyl2947 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2942, d) + x.codecDecodeSelfFromMap(yyl2947, d) } - } else if yyct2942 == codecSelferValueTypeArray1234 { - yyl2942 := r.ReadArrayStart() - if yyl2942 == 0 { + } else if yyct2947 == codecSelferValueTypeArray1234 { + yyl2947 := r.ReadArrayStart() + if yyl2947 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2942, d) + x.codecDecodeSelfFromArray(yyl2947, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36607,12 +36655,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2943Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2943Slc - var yyhl2943 bool = l >= 0 - for yyj2943 := 0; ; yyj2943++ { - if yyhl2943 { - if yyj2943 >= l { + var yys2948Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2948Slc + var yyhl2948 bool = l >= 0 + for yyj2948 := 0; ; yyj2948++ { + if yyhl2948 { + if yyj2948 >= l { break } } else { @@ -36621,10 +36669,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2943Slc = r.DecodeBytes(yys2943Slc, true, true) - yys2943 := string(yys2943Slc) + yys2948Slc = r.DecodeBytes(yys2948Slc, true, true) + yys2948 := string(yys2948Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2943 { + switch yys2948 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36641,15 +36689,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2946 := &x.ObjectMeta - yyv2946.CodecDecodeSelf(d) + yyv2951 := &x.ObjectMeta + yyv2951.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv2947 := &x.InvolvedObject - yyv2947.CodecDecodeSelf(d) + yyv2952 := &x.InvolvedObject + yyv2952.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -36667,41 +36715,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv2950 := &x.Source - yyv2950.CodecDecodeSelf(d) + yyv2955 := &x.Source + yyv2955.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv2951 := &x.FirstTimestamp - yym2952 := z.DecBinary() - _ = yym2952 + yyv2956 := &x.FirstTimestamp + yym2957 := z.DecBinary() + _ = yym2957 if false { - } else if z.HasExtensions() && z.DecExt(yyv2951) { - } else if yym2952 { - z.DecBinaryUnmarshal(yyv2951) - } else if !yym2952 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2951) + } else if z.HasExtensions() && z.DecExt(yyv2956) { + } else if yym2957 { + z.DecBinaryUnmarshal(yyv2956) + } else if !yym2957 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2956) } else { - z.DecFallback(yyv2951, false) + z.DecFallback(yyv2956, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv2953 := &x.LastTimestamp - yym2954 := z.DecBinary() - _ = yym2954 + yyv2958 := &x.LastTimestamp + yym2959 := z.DecBinary() + _ = yym2959 if false { - } else if z.HasExtensions() && z.DecExt(yyv2953) { - } else if yym2954 { - z.DecBinaryUnmarshal(yyv2953) - } else if !yym2954 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2953) + } else if z.HasExtensions() && z.DecExt(yyv2958) { + } else if yym2959 { + z.DecBinaryUnmarshal(yyv2958) + } else if !yym2959 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2958) } else { - z.DecFallback(yyv2953, false) + z.DecFallback(yyv2958, false) } } case "count": @@ -36717,9 +36765,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2943) - } // end switch yys2943 - } // end for yyj2943 + z.DecStructFieldNotFound(-1, yys2948) + } // end switch yys2948 + } // end for yyj2948 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36727,16 +36775,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2957 int - var yyb2957 bool - var yyhl2957 bool = l >= 0 - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + var yyj2962 int + var yyb2962 bool + var yyhl2962 bool = l >= 0 + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36746,13 +36794,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36762,13 +36810,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36776,16 +36824,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2960 := &x.ObjectMeta - yyv2960.CodecDecodeSelf(d) + yyv2965 := &x.ObjectMeta + yyv2965.CodecDecodeSelf(d) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36793,16 +36841,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv2961 := &x.InvolvedObject - yyv2961.CodecDecodeSelf(d) + yyv2966 := &x.InvolvedObject + yyv2966.CodecDecodeSelf(d) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36812,13 +36860,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36828,13 +36876,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36842,16 +36890,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv2964 := &x.Source - yyv2964.CodecDecodeSelf(d) + yyv2969 := &x.Source + yyv2969.CodecDecodeSelf(d) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36859,26 +36907,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_unversioned.Time{} } else { - yyv2965 := &x.FirstTimestamp - yym2966 := z.DecBinary() - _ = yym2966 + yyv2970 := &x.FirstTimestamp + yym2971 := z.DecBinary() + _ = yym2971 if false { - } else if z.HasExtensions() && z.DecExt(yyv2965) { - } else if yym2966 { - z.DecBinaryUnmarshal(yyv2965) - } else if !yym2966 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2965) + } else if z.HasExtensions() && z.DecExt(yyv2970) { + } else if yym2971 { + z.DecBinaryUnmarshal(yyv2970) + } else if !yym2971 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2970) } else { - z.DecFallback(yyv2965, false) + z.DecFallback(yyv2970, false) } } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36886,26 +36934,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_unversioned.Time{} } else { - yyv2967 := &x.LastTimestamp - yym2968 := z.DecBinary() - _ = yym2968 + yyv2972 := &x.LastTimestamp + yym2973 := z.DecBinary() + _ = yym2973 if false { - } else if z.HasExtensions() && z.DecExt(yyv2967) { - } else if yym2968 { - z.DecBinaryUnmarshal(yyv2967) - } else if !yym2968 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2967) + } else if z.HasExtensions() && z.DecExt(yyv2972) { + } else if yym2973 { + z.DecBinaryUnmarshal(yyv2972) + } else if !yym2973 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2972) } else { - z.DecFallback(yyv2967, false) + z.DecFallback(yyv2972, false) } } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36915,13 +36963,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36932,17 +36980,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj2957++ - if yyhl2957 { - yyb2957 = yyj2957 > l + yyj2962++ + if yyhl2962 { + yyb2962 = yyj2962 > l } else { - yyb2957 = r.CheckBreak() + yyb2962 = r.CheckBreak() } - if yyb2957 { + if yyb2962 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2957-1, "") + z.DecStructFieldNotFound(yyj2962-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36954,37 +37002,37 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2971 := z.EncBinary() - _ = yym2971 + yym2976 := z.EncBinary() + _ = yym2976 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2972 := !z.EncBinary() - yy2arr2972 := z.EncBasicHandle().StructToArray - var yyq2972 [4]bool - _, _, _ = yysep2972, yyq2972, yy2arr2972 - const yyr2972 bool = false - yyq2972[0] = x.Kind != "" - yyq2972[1] = x.APIVersion != "" - yyq2972[2] = true - var yynn2972 int - if yyr2972 || yy2arr2972 { + yysep2977 := !z.EncBinary() + yy2arr2977 := z.EncBasicHandle().StructToArray + var yyq2977 [4]bool + _, _, _ = yysep2977, yyq2977, yy2arr2977 + const yyr2977 bool = false + yyq2977[0] = x.Kind != "" + yyq2977[1] = x.APIVersion != "" + yyq2977[2] = true + var yynn2977 int + if yyr2977 || yy2arr2977 { r.EncodeArrayStart(4) } else { - yynn2972 = 1 - for _, b := range yyq2972 { + yynn2977 = 1 + for _, b := range yyq2977 { if b { - yynn2972++ + yynn2977++ } } - r.EncodeMapStart(yynn2972) - yynn2972 = 0 + r.EncodeMapStart(yynn2977) + yynn2977 = 0 } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2972[0] { - yym2974 := z.EncBinary() - _ = yym2974 + if yyq2977[0] { + yym2979 := z.EncBinary() + _ = yym2979 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -36993,23 +37041,23 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2972[0] { + if yyq2977[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2975 := z.EncBinary() - _ = yym2975 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2972[1] { - yym2977 := z.EncBinary() - _ = yym2977 + if yyq2977[1] { + yym2982 := z.EncBinary() + _ = yym2982 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37018,54 +37066,54 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2972[1] { + if yyq2977[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2978 := z.EncBinary() - _ = yym2978 + yym2983 := z.EncBinary() + _ = yym2983 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2972[2] { - yy2980 := &x.ListMeta - yym2981 := z.EncBinary() - _ = yym2981 + if yyq2977[2] { + yy2985 := &x.ListMeta + yym2986 := z.EncBinary() + _ = yym2986 if false { - } else if z.HasExtensions() && z.EncExt(yy2980) { + } else if z.HasExtensions() && z.EncExt(yy2985) { } else { - z.EncFallback(yy2980) + z.EncFallback(yy2985) } } else { r.EncodeNil() } } else { - if yyq2972[2] { + if yyq2977[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2982 := &x.ListMeta - yym2983 := z.EncBinary() - _ = yym2983 + yy2987 := &x.ListMeta + yym2988 := z.EncBinary() + _ = yym2988 if false { - } else if z.HasExtensions() && z.EncExt(yy2982) { + } else if z.HasExtensions() && z.EncExt(yy2987) { } else { - z.EncFallback(yy2982) + z.EncFallback(yy2987) } } } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2985 := z.EncBinary() - _ = yym2985 + yym2990 := z.EncBinary() + _ = yym2990 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -37078,15 +37126,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2986 := z.EncBinary() - _ = yym2986 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr2972 || yy2arr2972 { + if yyr2977 || yy2arr2977 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37099,25 +37147,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2987 := z.DecBinary() - _ = yym2987 + yym2992 := z.DecBinary() + _ = yym2992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2988 := r.ContainerType() - if yyct2988 == codecSelferValueTypeMap1234 { - yyl2988 := r.ReadMapStart() - if yyl2988 == 0 { + yyct2993 := r.ContainerType() + if yyct2993 == codecSelferValueTypeMap1234 { + yyl2993 := r.ReadMapStart() + if yyl2993 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2988, d) + x.codecDecodeSelfFromMap(yyl2993, d) } - } else if yyct2988 == codecSelferValueTypeArray1234 { - yyl2988 := r.ReadArrayStart() - if yyl2988 == 0 { + } else if yyct2993 == codecSelferValueTypeArray1234 { + yyl2993 := r.ReadArrayStart() + if yyl2993 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2988, d) + x.codecDecodeSelfFromArray(yyl2993, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37129,12 +37177,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { 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 yys2994Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2994Slc + var yyhl2994 bool = l >= 0 + for yyj2994 := 0; ; yyj2994++ { + if yyhl2994 { + if yyj2994 >= l { break } } else { @@ -37143,10 +37191,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2989Slc = r.DecodeBytes(yys2989Slc, true, true) - yys2989 := string(yys2989Slc) + yys2994Slc = r.DecodeBytes(yys2994Slc, true, true) + yys2994 := string(yys2994Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2989 { + switch yys2994 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37163,31 +37211,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2992 := &x.ListMeta - yym2993 := z.DecBinary() - _ = yym2993 + yyv2997 := &x.ListMeta + yym2998 := z.DecBinary() + _ = yym2998 if false { - } else if z.HasExtensions() && z.DecExt(yyv2992) { + } else if z.HasExtensions() && z.DecExt(yyv2997) { } else { - z.DecFallback(yyv2992, false) + z.DecFallback(yyv2997, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2994 := &x.Items - yym2995 := z.DecBinary() - _ = yym2995 + yyv2999 := &x.Items + yym3000 := z.DecBinary() + _ = yym3000 if false { } else { - h.decSliceEvent((*[]Event)(yyv2994), d) + h.decSliceEvent((*[]Event)(yyv2999), d) } } default: - z.DecStructFieldNotFound(-1, yys2989) - } // end switch yys2989 - } // end for yyj2989 + z.DecStructFieldNotFound(-1, yys2994) + } // end switch yys2994 + } // end for yyj2994 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37195,16 +37243,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2996 int - var yyb2996 bool - var yyhl2996 bool = l >= 0 - yyj2996++ - if yyhl2996 { - yyb2996 = yyj2996 > l + var yyj3001 int + var yyb3001 bool + var yyhl3001 bool = l >= 0 + yyj3001++ + if yyhl3001 { + yyb3001 = yyj3001 > l } else { - yyb2996 = r.CheckBreak() + yyb3001 = r.CheckBreak() } - if yyb2996 { + if yyb3001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37214,13 +37262,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2996++ - if yyhl2996 { - yyb2996 = yyj2996 > l + yyj3001++ + if yyhl3001 { + yyb3001 = yyj3001 > l } else { - yyb2996 = r.CheckBreak() + yyb3001 = r.CheckBreak() } - if yyb2996 { + if yyb3001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37230,13 +37278,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2996++ - if yyhl2996 { - yyb2996 = yyj2996 > l + yyj3001++ + if yyhl3001 { + yyb3001 = yyj3001 > l } else { - yyb2996 = r.CheckBreak() + yyb3001 = r.CheckBreak() } - if yyb2996 { + if yyb3001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37244,22 +37292,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv2999 := &x.ListMeta - yym3000 := z.DecBinary() - _ = yym3000 + yyv3004 := &x.ListMeta + yym3005 := z.DecBinary() + _ = yym3005 if false { - } else if z.HasExtensions() && z.DecExt(yyv2999) { + } else if z.HasExtensions() && z.DecExt(yyv3004) { } else { - z.DecFallback(yyv2999, false) + z.DecFallback(yyv3004, false) } } - yyj2996++ - if yyhl2996 { - yyb2996 = yyj2996 > l + yyj3001++ + if yyhl3001 { + yyb3001 = yyj3001 > l } else { - yyb2996 = r.CheckBreak() + yyb3001 = r.CheckBreak() } - if yyb2996 { + if yyb3001 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37267,26 +37315,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3001 := &x.Items - yym3002 := z.DecBinary() - _ = yym3002 + yyv3006 := &x.Items + yym3007 := z.DecBinary() + _ = yym3007 if false { } else { - h.decSliceEvent((*[]Event)(yyv3001), d) + h.decSliceEvent((*[]Event)(yyv3006), d) } } for { - yyj2996++ - if yyhl2996 { - yyb2996 = yyj2996 > l + yyj3001++ + if yyhl3001 { + yyb3001 = yyj3001 > l } else { - yyb2996 = r.CheckBreak() + yyb3001 = r.CheckBreak() } - if yyb2996 { + if yyb3001 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2996-1, "") + z.DecStructFieldNotFound(yyj3001-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37298,37 +37346,37 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3003 := z.EncBinary() - _ = yym3003 + yym3008 := z.EncBinary() + _ = yym3008 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3004 := !z.EncBinary() - yy2arr3004 := z.EncBasicHandle().StructToArray - var yyq3004 [4]bool - _, _, _ = yysep3004, yyq3004, yy2arr3004 - const yyr3004 bool = false - yyq3004[0] = x.Kind != "" - yyq3004[1] = x.APIVersion != "" - yyq3004[2] = true - var yynn3004 int - if yyr3004 || yy2arr3004 { + yysep3009 := !z.EncBinary() + yy2arr3009 := z.EncBasicHandle().StructToArray + var yyq3009 [4]bool + _, _, _ = yysep3009, yyq3009, yy2arr3009 + const yyr3009 bool = false + yyq3009[0] = x.Kind != "" + yyq3009[1] = x.APIVersion != "" + yyq3009[2] = true + var yynn3009 int + if yyr3009 || yy2arr3009 { r.EncodeArrayStart(4) } else { - yynn3004 = 1 - for _, b := range yyq3004 { + yynn3009 = 1 + for _, b := range yyq3009 { if b { - yynn3004++ + yynn3009++ } } - r.EncodeMapStart(yynn3004) - yynn3004 = 0 + r.EncodeMapStart(yynn3009) + yynn3009 = 0 } - if yyr3004 || yy2arr3004 { + if yyr3009 || yy2arr3009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[0] { - yym3006 := z.EncBinary() - _ = yym3006 + if yyq3009[0] { + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -37337,23 +37385,23 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3004[0] { + if yyq3009[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3007 := z.EncBinary() - _ = yym3007 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3004 || yy2arr3004 { + if yyr3009 || yy2arr3009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[1] { - yym3009 := z.EncBinary() - _ = yym3009 + if yyq3009[1] { + yym3014 := z.EncBinary() + _ = yym3014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -37362,54 +37410,54 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3004[1] { + if yyq3009[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3010 := z.EncBinary() - _ = yym3010 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3004 || yy2arr3004 { + if yyr3009 || yy2arr3009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3004[2] { - yy3012 := &x.ListMeta - yym3013 := z.EncBinary() - _ = yym3013 + if yyq3009[2] { + yy3017 := &x.ListMeta + yym3018 := z.EncBinary() + _ = yym3018 if false { - } else if z.HasExtensions() && z.EncExt(yy3012) { + } else if z.HasExtensions() && z.EncExt(yy3017) { } else { - z.EncFallback(yy3012) + z.EncFallback(yy3017) } } else { r.EncodeNil() } } else { - if yyq3004[2] { + if yyq3009[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3014 := &x.ListMeta - yym3015 := z.EncBinary() - _ = yym3015 + yy3019 := &x.ListMeta + yym3020 := z.EncBinary() + _ = yym3020 if false { - } else if z.HasExtensions() && z.EncExt(yy3014) { + } else if z.HasExtensions() && z.EncExt(yy3019) { } else { - z.EncFallback(yy3014) + z.EncFallback(yy3019) } } } - if yyr3004 || yy2arr3004 { + if yyr3009 || yy2arr3009 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3017 := z.EncBinary() - _ = yym3017 + yym3022 := z.EncBinary() + _ = yym3022 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) @@ -37422,15 +37470,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3018 := z.EncBinary() - _ = yym3018 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else { h.encSliceruntime_RawExtension(([]pkg6_runtime.RawExtension)(x.Items), e) } } } - if yyr3004 || yy2arr3004 { + if yyr3009 || yy2arr3009 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37443,25 +37491,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3019 := z.DecBinary() - _ = yym3019 + yym3024 := z.DecBinary() + _ = yym3024 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3020 := r.ContainerType() - if yyct3020 == codecSelferValueTypeMap1234 { - yyl3020 := r.ReadMapStart() - if yyl3020 == 0 { + yyct3025 := r.ContainerType() + if yyct3025 == codecSelferValueTypeMap1234 { + yyl3025 := r.ReadMapStart() + if yyl3025 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3020, d) + x.codecDecodeSelfFromMap(yyl3025, d) } - } else if yyct3020 == codecSelferValueTypeArray1234 { - yyl3020 := r.ReadArrayStart() - if yyl3020 == 0 { + } else if yyct3025 == codecSelferValueTypeArray1234 { + yyl3025 := r.ReadArrayStart() + if yyl3025 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3020, d) + x.codecDecodeSelfFromArray(yyl3025, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37473,12 +37521,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3021Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3021Slc - var yyhl3021 bool = l >= 0 - for yyj3021 := 0; ; yyj3021++ { - if yyhl3021 { - if yyj3021 >= l { + var yys3026Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3026Slc + var yyhl3026 bool = l >= 0 + for yyj3026 := 0; ; yyj3026++ { + if yyhl3026 { + if yyj3026 >= l { break } } else { @@ -37487,10 +37535,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3021Slc = r.DecodeBytes(yys3021Slc, true, true) - yys3021 := string(yys3021Slc) + yys3026Slc = r.DecodeBytes(yys3026Slc, true, true) + yys3026 := string(yys3026Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3021 { + switch yys3026 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37507,31 +37555,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3024 := &x.ListMeta - yym3025 := z.DecBinary() - _ = yym3025 + yyv3029 := &x.ListMeta + yym3030 := z.DecBinary() + _ = yym3030 if false { - } else if z.HasExtensions() && z.DecExt(yyv3024) { + } else if z.HasExtensions() && z.DecExt(yyv3029) { } else { - z.DecFallback(yyv3024, false) + z.DecFallback(yyv3029, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3026 := &x.Items - yym3027 := z.DecBinary() - _ = yym3027 + yyv3031 := &x.Items + yym3032 := z.DecBinary() + _ = yym3032 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3026), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3031), d) } } default: - z.DecStructFieldNotFound(-1, yys3021) - } // end switch yys3021 - } // end for yyj3021 + z.DecStructFieldNotFound(-1, yys3026) + } // end switch yys3026 + } // end for yyj3026 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37539,16 +37587,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3028 int - var yyb3028 bool - var yyhl3028 bool = l >= 0 - yyj3028++ - if yyhl3028 { - yyb3028 = yyj3028 > l + var yyj3033 int + var yyb3033 bool + var yyhl3033 bool = l >= 0 + yyj3033++ + if yyhl3033 { + yyb3033 = yyj3033 > l } else { - yyb3028 = r.CheckBreak() + yyb3033 = r.CheckBreak() } - if yyb3028 { + if yyb3033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37558,13 +37606,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3028++ - if yyhl3028 { - yyb3028 = yyj3028 > l + yyj3033++ + if yyhl3033 { + yyb3033 = yyj3033 > l } else { - yyb3028 = r.CheckBreak() + yyb3033 = r.CheckBreak() } - if yyb3028 { + if yyb3033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37574,13 +37622,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3028++ - if yyhl3028 { - yyb3028 = yyj3028 > l + yyj3033++ + if yyhl3033 { + yyb3033 = yyj3033 > l } else { - yyb3028 = r.CheckBreak() + yyb3033 = r.CheckBreak() } - if yyb3028 { + if yyb3033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37588,22 +37636,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3031 := &x.ListMeta - yym3032 := z.DecBinary() - _ = yym3032 + yyv3036 := &x.ListMeta + yym3037 := z.DecBinary() + _ = yym3037 if false { - } else if z.HasExtensions() && z.DecExt(yyv3031) { + } else if z.HasExtensions() && z.DecExt(yyv3036) { } else { - z.DecFallback(yyv3031, false) + z.DecFallback(yyv3036, false) } } - yyj3028++ - if yyhl3028 { - yyb3028 = yyj3028 > l + yyj3033++ + if yyhl3033 { + yyb3033 = yyj3033 > l } else { - yyb3028 = r.CheckBreak() + yyb3033 = r.CheckBreak() } - if yyb3028 { + if yyb3033 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37611,26 +37659,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3033 := &x.Items - yym3034 := z.DecBinary() - _ = yym3034 + yyv3038 := &x.Items + yym3039 := z.DecBinary() + _ = yym3039 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3033), d) + h.decSliceruntime_RawExtension((*[]pkg6_runtime.RawExtension)(yyv3038), d) } } for { - yyj3028++ - if yyhl3028 { - yyb3028 = yyj3028 > l + yyj3033++ + if yyhl3033 { + yyb3033 = yyj3033 > l } else { - yyb3028 = r.CheckBreak() + yyb3033 = r.CheckBreak() } - if yyb3028 { + if yyb3033 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3028-1, "") + z.DecStructFieldNotFound(yyj3033-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37639,8 +37687,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3035 := z.EncBinary() - _ = yym3035 + yym3040 := z.EncBinary() + _ = yym3040 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -37652,8 +37700,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3036 := z.DecBinary() - _ = yym3036 + yym3041 := z.DecBinary() + _ = yym3041 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -37668,53 +37716,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3037 := z.EncBinary() - _ = yym3037 + yym3042 := z.EncBinary() + _ = yym3042 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3038 := !z.EncBinary() - yy2arr3038 := z.EncBasicHandle().StructToArray - var yyq3038 [6]bool - _, _, _ = yysep3038, yyq3038, yy2arr3038 - const yyr3038 bool = false - yyq3038[0] = x.Type != "" - yyq3038[1] = len(x.Max) != 0 - yyq3038[2] = len(x.Min) != 0 - yyq3038[3] = len(x.Default) != 0 - yyq3038[4] = len(x.DefaultRequest) != 0 - yyq3038[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3038 int - if yyr3038 || yy2arr3038 { + yysep3043 := !z.EncBinary() + yy2arr3043 := z.EncBasicHandle().StructToArray + var yyq3043 [6]bool + _, _, _ = yysep3043, yyq3043, yy2arr3043 + const yyr3043 bool = false + yyq3043[0] = x.Type != "" + yyq3043[1] = len(x.Max) != 0 + yyq3043[2] = len(x.Min) != 0 + yyq3043[3] = len(x.Default) != 0 + yyq3043[4] = len(x.DefaultRequest) != 0 + yyq3043[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3043 int + if yyr3043 || yy2arr3043 { r.EncodeArrayStart(6) } else { - yynn3038 = 0 - for _, b := range yyq3038 { + yynn3043 = 0 + for _, b := range yyq3043 { if b { - yynn3038++ + yynn3043++ } } - r.EncodeMapStart(yynn3038) - yynn3038 = 0 + r.EncodeMapStart(yynn3043) + yynn3043 = 0 } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[0] { + if yyq3043[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3038[0] { + if yyq3043[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[1] { + if yyq3043[1] { if x.Max == nil { r.EncodeNil() } else { @@ -37724,7 +37772,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3038[1] { + if yyq3043[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37735,9 +37783,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[2] { + if yyq3043[2] { if x.Min == nil { r.EncodeNil() } else { @@ -37747,7 +37795,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3038[2] { + if yyq3043[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37758,9 +37806,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[3] { + if yyq3043[3] { if x.Default == nil { r.EncodeNil() } else { @@ -37770,7 +37818,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3038[3] { + if yyq3043[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37781,9 +37829,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[4] { + if yyq3043[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -37793,7 +37841,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3038[4] { + if yyq3043[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37804,9 +37852,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3038[5] { + if yyq3043[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -37816,7 +37864,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3038[5] { + if yyq3043[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37827,7 +37875,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3038 || yy2arr3038 { + if yyr3043 || yy2arr3043 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37840,25 +37888,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3045 := z.DecBinary() - _ = yym3045 + yym3050 := z.DecBinary() + _ = yym3050 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3046 := r.ContainerType() - if yyct3046 == codecSelferValueTypeMap1234 { - yyl3046 := r.ReadMapStart() - if yyl3046 == 0 { + yyct3051 := r.ContainerType() + if yyct3051 == codecSelferValueTypeMap1234 { + yyl3051 := r.ReadMapStart() + if yyl3051 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3046, d) + x.codecDecodeSelfFromMap(yyl3051, d) } - } else if yyct3046 == codecSelferValueTypeArray1234 { - yyl3046 := r.ReadArrayStart() - if yyl3046 == 0 { + } else if yyct3051 == codecSelferValueTypeArray1234 { + yyl3051 := r.ReadArrayStart() + if yyl3051 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3046, d) + x.codecDecodeSelfFromArray(yyl3051, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37870,12 +37918,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3047Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3047Slc - var yyhl3047 bool = l >= 0 - for yyj3047 := 0; ; yyj3047++ { - if yyhl3047 { - if yyj3047 >= l { + var yys3052Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3052Slc + var yyhl3052 bool = l >= 0 + for yyj3052 := 0; ; yyj3052++ { + if yyhl3052 { + if yyj3052 >= l { break } } else { @@ -37884,10 +37932,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3047Slc = r.DecodeBytes(yys3047Slc, true, true) - yys3047 := string(yys3047Slc) + yys3052Slc = r.DecodeBytes(yys3052Slc, true, true) + yys3052 := string(yys3052Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3047 { + switch yys3052 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -37898,41 +37946,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3049 := &x.Max - yyv3049.CodecDecodeSelf(d) + yyv3054 := &x.Max + yyv3054.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3050 := &x.Min - yyv3050.CodecDecodeSelf(d) + yyv3055 := &x.Min + yyv3055.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3051 := &x.Default - yyv3051.CodecDecodeSelf(d) + yyv3056 := &x.Default + yyv3056.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3052 := &x.DefaultRequest - yyv3052.CodecDecodeSelf(d) + yyv3057 := &x.DefaultRequest + yyv3057.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3053 := &x.MaxLimitRequestRatio - yyv3053.CodecDecodeSelf(d) + yyv3058 := &x.MaxLimitRequestRatio + yyv3058.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3047) - } // end switch yys3047 - } // end for yyj3047 + z.DecStructFieldNotFound(-1, yys3052) + } // end switch yys3052 + } // end for yyj3052 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37940,16 +37988,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3054 int - var yyb3054 bool - var yyhl3054 bool = l >= 0 - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + var yyj3059 int + var yyb3059 bool + var yyhl3059 bool = l >= 0 + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37959,13 +38007,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37973,16 +38021,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv3056 := &x.Max - yyv3056.CodecDecodeSelf(d) + yyv3061 := &x.Max + yyv3061.CodecDecodeSelf(d) } - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37990,16 +38038,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv3057 := &x.Min - yyv3057.CodecDecodeSelf(d) + yyv3062 := &x.Min + yyv3062.CodecDecodeSelf(d) } - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38007,16 +38055,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv3058 := &x.Default - yyv3058.CodecDecodeSelf(d) + yyv3063 := &x.Default + yyv3063.CodecDecodeSelf(d) } - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38024,16 +38072,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv3059 := &x.DefaultRequest - yyv3059.CodecDecodeSelf(d) + yyv3064 := &x.DefaultRequest + yyv3064.CodecDecodeSelf(d) } - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38041,21 +38089,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv3060 := &x.MaxLimitRequestRatio - yyv3060.CodecDecodeSelf(d) + yyv3065 := &x.MaxLimitRequestRatio + yyv3065.CodecDecodeSelf(d) } for { - yyj3054++ - if yyhl3054 { - yyb3054 = yyj3054 > l + yyj3059++ + if yyhl3059 { + yyb3059 = yyj3059 > l } else { - yyb3054 = r.CheckBreak() + yyb3059 = r.CheckBreak() } - if yyb3054 { + if yyb3059 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3054-1, "") + z.DecStructFieldNotFound(yyj3059-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38067,36 +38115,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3061 := z.EncBinary() - _ = yym3061 + yym3066 := z.EncBinary() + _ = yym3066 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3062 := !z.EncBinary() - yy2arr3062 := z.EncBasicHandle().StructToArray - var yyq3062 [1]bool - _, _, _ = yysep3062, yyq3062, yy2arr3062 - const yyr3062 bool = false - var yynn3062 int - if yyr3062 || yy2arr3062 { + yysep3067 := !z.EncBinary() + yy2arr3067 := z.EncBasicHandle().StructToArray + var yyq3067 [1]bool + _, _, _ = yysep3067, yyq3067, yy2arr3067 + const yyr3067 bool = false + var yynn3067 int + if yyr3067 || yy2arr3067 { r.EncodeArrayStart(1) } else { - yynn3062 = 1 - for _, b := range yyq3062 { + yynn3067 = 1 + for _, b := range yyq3067 { if b { - yynn3062++ + yynn3067++ } } - r.EncodeMapStart(yynn3062) - yynn3062 = 0 + r.EncodeMapStart(yynn3067) + yynn3067 = 0 } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym3064 := z.EncBinary() - _ = yym3064 + yym3069 := z.EncBinary() + _ = yym3069 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -38109,15 +38157,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym3065 := z.EncBinary() - _ = yym3065 + yym3070 := z.EncBinary() + _ = yym3070 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr3062 || yy2arr3062 { + if yyr3067 || yy2arr3067 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38130,25 +38178,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3066 := z.DecBinary() - _ = yym3066 + yym3071 := z.DecBinary() + _ = yym3071 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3067 := r.ContainerType() - if yyct3067 == codecSelferValueTypeMap1234 { - yyl3067 := r.ReadMapStart() - if yyl3067 == 0 { + yyct3072 := r.ContainerType() + if yyct3072 == codecSelferValueTypeMap1234 { + yyl3072 := r.ReadMapStart() + if yyl3072 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3067, d) + x.codecDecodeSelfFromMap(yyl3072, d) } - } else if yyct3067 == codecSelferValueTypeArray1234 { - yyl3067 := r.ReadArrayStart() - if yyl3067 == 0 { + } else if yyct3072 == codecSelferValueTypeArray1234 { + yyl3072 := r.ReadArrayStart() + if yyl3072 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3067, d) + x.codecDecodeSelfFromArray(yyl3072, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38160,12 +38208,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3068Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3068Slc - var yyhl3068 bool = l >= 0 - for yyj3068 := 0; ; yyj3068++ { - if yyhl3068 { - if yyj3068 >= l { + var yys3073Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3073Slc + var yyhl3073 bool = l >= 0 + for yyj3073 := 0; ; yyj3073++ { + if yyhl3073 { + if yyj3073 >= l { break } } else { @@ -38174,26 +38222,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3068Slc = r.DecodeBytes(yys3068Slc, true, true) - yys3068 := string(yys3068Slc) + yys3073Slc = r.DecodeBytes(yys3073Slc, true, true) + yys3073 := string(yys3073Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3068 { + switch yys3073 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3069 := &x.Limits - yym3070 := z.DecBinary() - _ = yym3070 + yyv3074 := &x.Limits + yym3075 := z.DecBinary() + _ = yym3075 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3069), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3074), d) } } default: - z.DecStructFieldNotFound(-1, yys3068) - } // end switch yys3068 - } // end for yyj3068 + z.DecStructFieldNotFound(-1, yys3073) + } // end switch yys3073 + } // end for yyj3073 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38201,16 +38249,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3071 int - var yyb3071 bool - var yyhl3071 bool = l >= 0 - yyj3071++ - if yyhl3071 { - yyb3071 = yyj3071 > l + var yyj3076 int + var yyb3076 bool + var yyhl3076 bool = l >= 0 + yyj3076++ + if yyhl3076 { + yyb3076 = yyj3076 > l } else { - yyb3071 = r.CheckBreak() + yyb3076 = r.CheckBreak() } - if yyb3071 { + if yyb3076 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38218,26 +38266,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv3072 := &x.Limits - yym3073 := z.DecBinary() - _ = yym3073 + yyv3077 := &x.Limits + yym3078 := z.DecBinary() + _ = yym3078 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3072), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv3077), d) } } for { - yyj3071++ - if yyhl3071 { - yyb3071 = yyj3071 > l + yyj3076++ + if yyhl3076 { + yyb3076 = yyj3076 > l } else { - yyb3071 = r.CheckBreak() + yyb3076 = r.CheckBreak() } - if yyb3071 { + if yyb3076 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3071-1, "") + z.DecStructFieldNotFound(yyj3076-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38249,38 +38297,38 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3074 := z.EncBinary() - _ = yym3074 + yym3079 := z.EncBinary() + _ = yym3079 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3075 := !z.EncBinary() - yy2arr3075 := z.EncBasicHandle().StructToArray - var yyq3075 [4]bool - _, _, _ = yysep3075, yyq3075, yy2arr3075 - const yyr3075 bool = false - yyq3075[0] = x.Kind != "" - yyq3075[1] = x.APIVersion != "" - yyq3075[2] = true - yyq3075[3] = true - var yynn3075 int - if yyr3075 || yy2arr3075 { + yysep3080 := !z.EncBinary() + yy2arr3080 := z.EncBasicHandle().StructToArray + var yyq3080 [4]bool + _, _, _ = yysep3080, yyq3080, yy2arr3080 + const yyr3080 bool = false + yyq3080[0] = x.Kind != "" + yyq3080[1] = x.APIVersion != "" + yyq3080[2] = true + yyq3080[3] = true + var yynn3080 int + if yyr3080 || yy2arr3080 { r.EncodeArrayStart(4) } else { - yynn3075 = 0 - for _, b := range yyq3075 { + yynn3080 = 0 + for _, b := range yyq3080 { if b { - yynn3075++ + yynn3080++ } } - r.EncodeMapStart(yynn3075) - yynn3075 = 0 + r.EncodeMapStart(yynn3080) + yynn3080 = 0 } - if yyr3075 || yy2arr3075 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3075[0] { - yym3077 := z.EncBinary() - _ = yym3077 + if yyq3080[0] { + yym3082 := z.EncBinary() + _ = yym3082 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38289,23 +38337,23 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3075[0] { + if yyq3080[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3078 := z.EncBinary() - _ = yym3078 + yym3083 := z.EncBinary() + _ = yym3083 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3075 || yy2arr3075 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3075[1] { - yym3080 := z.EncBinary() - _ = yym3080 + if yyq3080[1] { + yym3085 := z.EncBinary() + _ = yym3085 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38314,53 +38362,53 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3075[1] { + if yyq3080[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3081 := z.EncBinary() - _ = yym3081 + yym3086 := z.EncBinary() + _ = yym3086 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3075 || yy2arr3075 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3075[2] { - yy3083 := &x.ObjectMeta - yy3083.CodecEncodeSelf(e) + if yyq3080[2] { + yy3088 := &x.ObjectMeta + yy3088.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3075[2] { + if yyq3080[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3084 := &x.ObjectMeta - yy3084.CodecEncodeSelf(e) + yy3089 := &x.ObjectMeta + yy3089.CodecEncodeSelf(e) } } - if yyr3075 || yy2arr3075 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3075[3] { - yy3086 := &x.Spec - yy3086.CodecEncodeSelf(e) + if yyq3080[3] { + yy3091 := &x.Spec + yy3091.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3075[3] { + if yyq3080[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3087 := &x.Spec - yy3087.CodecEncodeSelf(e) + yy3092 := &x.Spec + yy3092.CodecEncodeSelf(e) } } - if yyr3075 || yy2arr3075 { + if yyr3080 || yy2arr3080 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38373,25 +38421,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3088 := z.DecBinary() - _ = yym3088 + yym3093 := z.DecBinary() + _ = yym3093 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3089 := r.ContainerType() - if yyct3089 == codecSelferValueTypeMap1234 { - yyl3089 := r.ReadMapStart() - if yyl3089 == 0 { + yyct3094 := r.ContainerType() + if yyct3094 == codecSelferValueTypeMap1234 { + yyl3094 := r.ReadMapStart() + if yyl3094 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3089, d) + x.codecDecodeSelfFromMap(yyl3094, d) } - } else if yyct3089 == codecSelferValueTypeArray1234 { - yyl3089 := r.ReadArrayStart() - if yyl3089 == 0 { + } else if yyct3094 == codecSelferValueTypeArray1234 { + yyl3094 := r.ReadArrayStart() + if yyl3094 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3089, d) + x.codecDecodeSelfFromArray(yyl3094, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38403,12 +38451,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3090Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3090Slc - var yyhl3090 bool = l >= 0 - for yyj3090 := 0; ; yyj3090++ { - if yyhl3090 { - if yyj3090 >= l { + var yys3095Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3095Slc + var yyhl3095 bool = l >= 0 + for yyj3095 := 0; ; yyj3095++ { + if yyhl3095 { + if yyj3095 >= l { break } } else { @@ -38417,10 +38465,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3090Slc = r.DecodeBytes(yys3090Slc, true, true) - yys3090 := string(yys3090Slc) + yys3095Slc = r.DecodeBytes(yys3095Slc, true, true) + yys3095 := string(yys3095Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3090 { + switch yys3095 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38437,20 +38485,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3093 := &x.ObjectMeta - yyv3093.CodecDecodeSelf(d) + yyv3098 := &x.ObjectMeta + yyv3098.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3094 := &x.Spec - yyv3094.CodecDecodeSelf(d) + yyv3099 := &x.Spec + yyv3099.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3090) - } // end switch yys3090 - } // end for yyj3090 + z.DecStructFieldNotFound(-1, yys3095) + } // end switch yys3095 + } // end for yyj3095 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38458,16 +38506,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3095 int - var yyb3095 bool - var yyhl3095 bool = l >= 0 - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + var yyj3100 int + var yyb3100 bool + var yyhl3100 bool = l >= 0 + yyj3100++ + if yyhl3100 { + yyb3100 = yyj3100 > l } else { - yyb3095 = r.CheckBreak() + yyb3100 = r.CheckBreak() } - if yyb3095 { + if yyb3100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38477,13 +38525,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3100++ + if yyhl3100 { + yyb3100 = yyj3100 > l } else { - yyb3095 = r.CheckBreak() + yyb3100 = r.CheckBreak() } - if yyb3095 { + if yyb3100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38493,13 +38541,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3100++ + if yyhl3100 { + yyb3100 = yyj3100 > l } else { - yyb3095 = r.CheckBreak() + yyb3100 = r.CheckBreak() } - if yyb3095 { + if yyb3100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38507,16 +38555,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3098 := &x.ObjectMeta - yyv3098.CodecDecodeSelf(d) + yyv3103 := &x.ObjectMeta + yyv3103.CodecDecodeSelf(d) } - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3100++ + if yyhl3100 { + yyb3100 = yyj3100 > l } else { - yyb3095 = r.CheckBreak() + yyb3100 = r.CheckBreak() } - if yyb3095 { + if yyb3100 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38524,21 +38572,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv3099 := &x.Spec - yyv3099.CodecDecodeSelf(d) + yyv3104 := &x.Spec + yyv3104.CodecDecodeSelf(d) } for { - yyj3095++ - if yyhl3095 { - yyb3095 = yyj3095 > l + yyj3100++ + if yyhl3100 { + yyb3100 = yyj3100 > l } else { - yyb3095 = r.CheckBreak() + yyb3100 = r.CheckBreak() } - if yyb3095 { + if yyb3100 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3095-1, "") + z.DecStructFieldNotFound(yyj3100-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38550,37 +38598,37 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3100 := z.EncBinary() - _ = yym3100 + yym3105 := z.EncBinary() + _ = yym3105 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3101 := !z.EncBinary() - yy2arr3101 := z.EncBasicHandle().StructToArray - var yyq3101 [4]bool - _, _, _ = yysep3101, yyq3101, yy2arr3101 - const yyr3101 bool = false - yyq3101[0] = x.Kind != "" - yyq3101[1] = x.APIVersion != "" - yyq3101[2] = true - var yynn3101 int - if yyr3101 || yy2arr3101 { + 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 { r.EncodeArrayStart(4) } else { - yynn3101 = 1 - for _, b := range yyq3101 { + yynn3106 = 1 + for _, b := range yyq3106 { if b { - yynn3101++ + yynn3106++ } } - r.EncodeMapStart(yynn3101) - yynn3101 = 0 + r.EncodeMapStart(yynn3106) + yynn3106 = 0 } - if yyr3101 || yy2arr3101 { + if yyr3106 || yy2arr3106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3101[0] { - yym3103 := z.EncBinary() - _ = yym3103 + if yyq3106[0] { + yym3108 := z.EncBinary() + _ = yym3108 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -38589,23 +38637,23 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3101[0] { + if yyq3106[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3104 := z.EncBinary() - _ = yym3104 + yym3109 := z.EncBinary() + _ = yym3109 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3101 || yy2arr3101 { + if yyr3106 || yy2arr3106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3101[1] { - yym3106 := z.EncBinary() - _ = yym3106 + if yyq3106[1] { + yym3111 := z.EncBinary() + _ = yym3111 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -38614,54 +38662,54 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3101[1] { + if yyq3106[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3107 := z.EncBinary() - _ = yym3107 + yym3112 := z.EncBinary() + _ = yym3112 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3101 || yy2arr3101 { + if yyr3106 || yy2arr3106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3101[2] { - yy3109 := &x.ListMeta - yym3110 := z.EncBinary() - _ = yym3110 + if yyq3106[2] { + yy3114 := &x.ListMeta + yym3115 := z.EncBinary() + _ = yym3115 if false { - } else if z.HasExtensions() && z.EncExt(yy3109) { + } else if z.HasExtensions() && z.EncExt(yy3114) { } else { - z.EncFallback(yy3109) + z.EncFallback(yy3114) } } else { r.EncodeNil() } } else { - if yyq3101[2] { + if yyq3106[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3111 := &x.ListMeta - yym3112 := z.EncBinary() - _ = yym3112 + yy3116 := &x.ListMeta + yym3117 := z.EncBinary() + _ = yym3117 if false { - } else if z.HasExtensions() && z.EncExt(yy3111) { + } else if z.HasExtensions() && z.EncExt(yy3116) { } else { - z.EncFallback(yy3111) + z.EncFallback(yy3116) } } } - if yyr3101 || yy2arr3101 { + if yyr3106 || yy2arr3106 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3114 := z.EncBinary() - _ = yym3114 + yym3119 := z.EncBinary() + _ = yym3119 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -38674,15 +38722,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3115 := z.EncBinary() - _ = yym3115 + yym3120 := z.EncBinary() + _ = yym3120 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr3101 || yy2arr3101 { + if yyr3106 || yy2arr3106 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38695,25 +38743,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3116 := z.DecBinary() - _ = yym3116 + yym3121 := z.DecBinary() + _ = yym3121 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3117 := r.ContainerType() - if yyct3117 == codecSelferValueTypeMap1234 { - yyl3117 := r.ReadMapStart() - if yyl3117 == 0 { + yyct3122 := r.ContainerType() + if yyct3122 == codecSelferValueTypeMap1234 { + yyl3122 := r.ReadMapStart() + if yyl3122 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3117, d) + x.codecDecodeSelfFromMap(yyl3122, d) } - } else if yyct3117 == codecSelferValueTypeArray1234 { - yyl3117 := r.ReadArrayStart() - if yyl3117 == 0 { + } else if yyct3122 == codecSelferValueTypeArray1234 { + yyl3122 := r.ReadArrayStart() + if yyl3122 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3117, d) + x.codecDecodeSelfFromArray(yyl3122, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38725,12 +38773,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3118Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3118Slc - var yyhl3118 bool = l >= 0 - for yyj3118 := 0; ; yyj3118++ { - if yyhl3118 { - if yyj3118 >= l { + var yys3123Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3123Slc + var yyhl3123 bool = l >= 0 + for yyj3123 := 0; ; yyj3123++ { + if yyhl3123 { + if yyj3123 >= l { break } } else { @@ -38739,10 +38787,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3118Slc = r.DecodeBytes(yys3118Slc, true, true) - yys3118 := string(yys3118Slc) + yys3123Slc = r.DecodeBytes(yys3123Slc, true, true) + yys3123 := string(yys3123Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3118 { + switch yys3123 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -38759,31 +38807,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3121 := &x.ListMeta - yym3122 := z.DecBinary() - _ = yym3122 + yyv3126 := &x.ListMeta + yym3127 := z.DecBinary() + _ = yym3127 if false { - } else if z.HasExtensions() && z.DecExt(yyv3121) { + } else if z.HasExtensions() && z.DecExt(yyv3126) { } else { - z.DecFallback(yyv3121, false) + z.DecFallback(yyv3126, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3123 := &x.Items - yym3124 := z.DecBinary() - _ = yym3124 + yyv3128 := &x.Items + yym3129 := z.DecBinary() + _ = yym3129 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3123), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3128), d) } } default: - z.DecStructFieldNotFound(-1, yys3118) - } // end switch yys3118 - } // end for yyj3118 + z.DecStructFieldNotFound(-1, yys3123) + } // end switch yys3123 + } // end for yyj3123 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38791,16 +38839,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3125 int - var yyb3125 bool - var yyhl3125 bool = l >= 0 - yyj3125++ - if yyhl3125 { - yyb3125 = yyj3125 > l + var yyj3130 int + var yyb3130 bool + var yyhl3130 bool = l >= 0 + yyj3130++ + if yyhl3130 { + yyb3130 = yyj3130 > l } else { - yyb3125 = r.CheckBreak() + yyb3130 = r.CheckBreak() } - if yyb3125 { + if yyb3130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38810,13 +38858,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3125++ - if yyhl3125 { - yyb3125 = yyj3125 > l + yyj3130++ + if yyhl3130 { + yyb3130 = yyj3130 > l } else { - yyb3125 = r.CheckBreak() + yyb3130 = r.CheckBreak() } - if yyb3125 { + if yyb3130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38826,13 +38874,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3125++ - if yyhl3125 { - yyb3125 = yyj3125 > l + yyj3130++ + if yyhl3130 { + yyb3130 = yyj3130 > l } else { - yyb3125 = r.CheckBreak() + yyb3130 = r.CheckBreak() } - if yyb3125 { + if yyb3130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38840,22 +38888,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3128 := &x.ListMeta - yym3129 := z.DecBinary() - _ = yym3129 + yyv3133 := &x.ListMeta + yym3134 := z.DecBinary() + _ = yym3134 if false { - } else if z.HasExtensions() && z.DecExt(yyv3128) { + } else if z.HasExtensions() && z.DecExt(yyv3133) { } else { - z.DecFallback(yyv3128, false) + z.DecFallback(yyv3133, false) } } - yyj3125++ - if yyhl3125 { - yyb3125 = yyj3125 > l + yyj3130++ + if yyhl3130 { + yyb3130 = yyj3130 > l } else { - yyb3125 = r.CheckBreak() + yyb3130 = r.CheckBreak() } - if yyb3125 { + if yyb3130 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38863,26 +38911,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3130 := &x.Items - yym3131 := z.DecBinary() - _ = yym3131 + yyv3135 := &x.Items + yym3136 := z.DecBinary() + _ = yym3136 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv3130), d) + h.decSliceLimitRange((*[]LimitRange)(yyv3135), d) } } for { - yyj3125++ - if yyhl3125 { - yyb3125 = yyj3125 > l + yyj3130++ + if yyhl3130 { + yyb3130 = yyj3130 > l } else { - yyb3125 = r.CheckBreak() + yyb3130 = r.CheckBreak() } - if yyb3125 { + if yyb3130 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3125-1, "") + z.DecStructFieldNotFound(yyj3130-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38894,33 +38942,33 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3132 := z.EncBinary() - _ = yym3132 + yym3137 := z.EncBinary() + _ = yym3137 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3133 := !z.EncBinary() - yy2arr3133 := z.EncBasicHandle().StructToArray - var yyq3133 [1]bool - _, _, _ = yysep3133, yyq3133, yy2arr3133 - const yyr3133 bool = false - yyq3133[0] = len(x.Hard) != 0 - var yynn3133 int - if yyr3133 || yy2arr3133 { + yysep3138 := !z.EncBinary() + yy2arr3138 := z.EncBasicHandle().StructToArray + var yyq3138 [1]bool + _, _, _ = yysep3138, yyq3138, yy2arr3138 + const yyr3138 bool = false + yyq3138[0] = len(x.Hard) != 0 + var yynn3138 int + if yyr3138 || yy2arr3138 { r.EncodeArrayStart(1) } else { - yynn3133 = 0 - for _, b := range yyq3133 { + yynn3138 = 0 + for _, b := range yyq3138 { if b { - yynn3133++ + yynn3138++ } } - r.EncodeMapStart(yynn3133) - yynn3133 = 0 + r.EncodeMapStart(yynn3138) + yynn3138 = 0 } - if yyr3133 || yy2arr3133 { + if yyr3138 || yy2arr3138 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3133[0] { + if yyq3138[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -38930,7 +38978,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3133[0] { + if yyq3138[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -38941,7 +38989,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3133 || yy2arr3133 { + if yyr3138 || yy2arr3138 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38954,25 +39002,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3135 := z.DecBinary() - _ = yym3135 + yym3140 := z.DecBinary() + _ = yym3140 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3136 := r.ContainerType() - if yyct3136 == codecSelferValueTypeMap1234 { - yyl3136 := r.ReadMapStart() - if yyl3136 == 0 { + yyct3141 := r.ContainerType() + if yyct3141 == codecSelferValueTypeMap1234 { + yyl3141 := r.ReadMapStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3136, d) + x.codecDecodeSelfFromMap(yyl3141, d) } - } else if yyct3136 == codecSelferValueTypeArray1234 { - yyl3136 := r.ReadArrayStart() - if yyl3136 == 0 { + } else if yyct3141 == codecSelferValueTypeArray1234 { + yyl3141 := r.ReadArrayStart() + if yyl3141 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3136, d) + x.codecDecodeSelfFromArray(yyl3141, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38984,12 +39032,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3137Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3137Slc - var yyhl3137 bool = l >= 0 - for yyj3137 := 0; ; yyj3137++ { - if yyhl3137 { - if yyj3137 >= 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 { @@ -38998,21 +39046,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3137Slc = r.DecodeBytes(yys3137Slc, true, true) - yys3137 := string(yys3137Slc) + yys3142Slc = r.DecodeBytes(yys3142Slc, true, true) + yys3142 := string(yys3142Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3137 { + switch yys3142 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3138 := &x.Hard - yyv3138.CodecDecodeSelf(d) + yyv3143 := &x.Hard + yyv3143.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3137) - } // end switch yys3137 - } // end for yyj3137 + z.DecStructFieldNotFound(-1, yys3142) + } // end switch yys3142 + } // end for yyj3142 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39020,16 +39068,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3139 int - var yyb3139 bool - var yyhl3139 bool = l >= 0 - yyj3139++ - if yyhl3139 { - yyb3139 = yyj3139 > l + var yyj3144 int + var yyb3144 bool + var yyhl3144 bool = l >= 0 + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3139 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3139 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39037,21 +39085,21 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3140 := &x.Hard - yyv3140.CodecDecodeSelf(d) + yyv3145 := &x.Hard + yyv3145.CodecDecodeSelf(d) } for { - yyj3139++ - if yyhl3139 { - yyb3139 = yyj3139 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3139 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3139 { + if yyb3144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3139-1, "") + z.DecStructFieldNotFound(yyj3144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39063,34 +39111,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3141 := z.EncBinary() - _ = yym3141 + yym3146 := z.EncBinary() + _ = yym3146 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3142 := !z.EncBinary() - yy2arr3142 := z.EncBasicHandle().StructToArray - var yyq3142 [2]bool - _, _, _ = yysep3142, yyq3142, yy2arr3142 - const yyr3142 bool = false - yyq3142[0] = len(x.Hard) != 0 - yyq3142[1] = len(x.Used) != 0 - var yynn3142 int - if yyr3142 || yy2arr3142 { + yysep3147 := !z.EncBinary() + yy2arr3147 := z.EncBasicHandle().StructToArray + var yyq3147 [2]bool + _, _, _ = yysep3147, yyq3147, yy2arr3147 + const yyr3147 bool = false + yyq3147[0] = len(x.Hard) != 0 + yyq3147[1] = len(x.Used) != 0 + var yynn3147 int + if yyr3147 || yy2arr3147 { r.EncodeArrayStart(2) } else { - yynn3142 = 0 - for _, b := range yyq3142 { + yynn3147 = 0 + for _, b := range yyq3147 { if b { - yynn3142++ + yynn3147++ } } - r.EncodeMapStart(yynn3142) - yynn3142 = 0 + r.EncodeMapStart(yynn3147) + yynn3147 = 0 } - if yyr3142 || yy2arr3142 { + if yyr3147 || yy2arr3147 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3142[0] { + if yyq3147[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -39100,7 +39148,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3142[0] { + if yyq3147[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39111,9 +39159,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3142 || yy2arr3142 { + if yyr3147 || yy2arr3147 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3142[1] { + if yyq3147[1] { if x.Used == nil { r.EncodeNil() } else { @@ -39123,7 +39171,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3142[1] { + if yyq3147[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39134,7 +39182,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3142 || yy2arr3142 { + if yyr3147 || yy2arr3147 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39147,25 +39195,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3145 := z.DecBinary() - _ = yym3145 + yym3150 := z.DecBinary() + _ = yym3150 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3146 := r.ContainerType() - if yyct3146 == codecSelferValueTypeMap1234 { - yyl3146 := r.ReadMapStart() - if yyl3146 == 0 { + yyct3151 := r.ContainerType() + if yyct3151 == codecSelferValueTypeMap1234 { + yyl3151 := r.ReadMapStart() + if yyl3151 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3146, d) + x.codecDecodeSelfFromMap(yyl3151, d) } - } else if yyct3146 == codecSelferValueTypeArray1234 { - yyl3146 := r.ReadArrayStart() - if yyl3146 == 0 { + } else if yyct3151 == codecSelferValueTypeArray1234 { + yyl3151 := r.ReadArrayStart() + if yyl3151 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3146, d) + x.codecDecodeSelfFromArray(yyl3151, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39177,12 +39225,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3147Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3147Slc - var yyhl3147 bool = l >= 0 - for yyj3147 := 0; ; yyj3147++ { - if yyhl3147 { - if yyj3147 >= l { + var yys3152Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3152Slc + var yyhl3152 bool = l >= 0 + for yyj3152 := 0; ; yyj3152++ { + if yyhl3152 { + if yyj3152 >= l { break } } else { @@ -39191,28 +39239,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3147Slc = r.DecodeBytes(yys3147Slc, true, true) - yys3147 := string(yys3147Slc) + yys3152Slc = r.DecodeBytes(yys3152Slc, true, true) + yys3152 := string(yys3152Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3147 { + switch yys3152 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3148 := &x.Hard - yyv3148.CodecDecodeSelf(d) + yyv3153 := &x.Hard + yyv3153.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3149 := &x.Used - yyv3149.CodecDecodeSelf(d) + yyv3154 := &x.Used + yyv3154.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3147) - } // end switch yys3147 - } // end for yyj3147 + z.DecStructFieldNotFound(-1, yys3152) + } // end switch yys3152 + } // end for yyj3152 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39220,16 +39268,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3150 int - var yyb3150 bool - var yyhl3150 bool = l >= 0 - yyj3150++ - if yyhl3150 { - yyb3150 = yyj3150 > l + var yyj3155 int + var yyb3155 bool + var yyhl3155 bool = l >= 0 + yyj3155++ + if yyhl3155 { + yyb3155 = yyj3155 > l } else { - yyb3150 = r.CheckBreak() + yyb3155 = r.CheckBreak() } - if yyb3150 { + if yyb3155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39237,16 +39285,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv3151 := &x.Hard - yyv3151.CodecDecodeSelf(d) + yyv3156 := &x.Hard + yyv3156.CodecDecodeSelf(d) } - yyj3150++ - if yyhl3150 { - yyb3150 = yyj3150 > l + yyj3155++ + if yyhl3155 { + yyb3155 = yyj3155 > l } else { - yyb3150 = r.CheckBreak() + yyb3155 = r.CheckBreak() } - if yyb3150 { + if yyb3155 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39254,21 +39302,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv3152 := &x.Used - yyv3152.CodecDecodeSelf(d) + yyv3157 := &x.Used + yyv3157.CodecDecodeSelf(d) } for { - yyj3150++ - if yyhl3150 { - yyb3150 = yyj3150 > l + yyj3155++ + if yyhl3155 { + yyb3155 = yyj3155 > l } else { - yyb3150 = r.CheckBreak() + yyb3155 = r.CheckBreak() } - if yyb3150 { + if yyb3155 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3150-1, "") + z.DecStructFieldNotFound(yyj3155-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39280,39 +39328,39 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3153 := z.EncBinary() - _ = yym3153 + yym3158 := z.EncBinary() + _ = yym3158 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3154 := !z.EncBinary() - yy2arr3154 := z.EncBasicHandle().StructToArray - var yyq3154 [5]bool - _, _, _ = yysep3154, yyq3154, yy2arr3154 - const yyr3154 bool = false - yyq3154[0] = x.Kind != "" - yyq3154[1] = x.APIVersion != "" - yyq3154[2] = true - yyq3154[3] = true - yyq3154[4] = true - var yynn3154 int - if yyr3154 || yy2arr3154 { + yysep3159 := !z.EncBinary() + yy2arr3159 := z.EncBasicHandle().StructToArray + var yyq3159 [5]bool + _, _, _ = yysep3159, yyq3159, yy2arr3159 + const yyr3159 bool = false + yyq3159[0] = x.Kind != "" + yyq3159[1] = x.APIVersion != "" + yyq3159[2] = true + yyq3159[3] = true + yyq3159[4] = true + var yynn3159 int + if yyr3159 || yy2arr3159 { r.EncodeArrayStart(5) } else { - yynn3154 = 0 - for _, b := range yyq3154 { + yynn3159 = 0 + for _, b := range yyq3159 { if b { - yynn3154++ + yynn3159++ } } - r.EncodeMapStart(yynn3154) - yynn3154 = 0 + r.EncodeMapStart(yynn3159) + yynn3159 = 0 } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3154[0] { - yym3156 := z.EncBinary() - _ = yym3156 + if yyq3159[0] { + yym3161 := z.EncBinary() + _ = yym3161 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39321,23 +39369,23 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3154[0] { + if yyq3159[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3157 := z.EncBinary() - _ = yym3157 + yym3162 := z.EncBinary() + _ = yym3162 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3154[1] { - yym3159 := z.EncBinary() - _ = yym3159 + if yyq3159[1] { + yym3164 := z.EncBinary() + _ = yym3164 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39346,70 +39394,70 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3154[1] { + if yyq3159[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3160 := z.EncBinary() - _ = yym3160 + yym3165 := z.EncBinary() + _ = yym3165 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3154[2] { - yy3162 := &x.ObjectMeta - yy3162.CodecEncodeSelf(e) + if yyq3159[2] { + yy3167 := &x.ObjectMeta + yy3167.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3154[2] { + if yyq3159[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3163 := &x.ObjectMeta - yy3163.CodecEncodeSelf(e) + yy3168 := &x.ObjectMeta + yy3168.CodecEncodeSelf(e) } } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3154[3] { - yy3165 := &x.Spec - yy3165.CodecEncodeSelf(e) + if yyq3159[3] { + yy3170 := &x.Spec + yy3170.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3154[3] { + if yyq3159[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3166 := &x.Spec - yy3166.CodecEncodeSelf(e) + yy3171 := &x.Spec + yy3171.CodecEncodeSelf(e) } } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3154[4] { - yy3168 := &x.Status - yy3168.CodecEncodeSelf(e) + if yyq3159[4] { + yy3173 := &x.Status + yy3173.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3154[4] { + if yyq3159[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("status")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3169 := &x.Status - yy3169.CodecEncodeSelf(e) + yy3174 := &x.Status + yy3174.CodecEncodeSelf(e) } } - if yyr3154 || yy2arr3154 { + if yyr3159 || yy2arr3159 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39422,25 +39470,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3170 := z.DecBinary() - _ = yym3170 + yym3175 := z.DecBinary() + _ = yym3175 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3171 := r.ContainerType() - if yyct3171 == codecSelferValueTypeMap1234 { - yyl3171 := r.ReadMapStart() - if yyl3171 == 0 { + yyct3176 := r.ContainerType() + if yyct3176 == codecSelferValueTypeMap1234 { + yyl3176 := r.ReadMapStart() + if yyl3176 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3171, d) + x.codecDecodeSelfFromMap(yyl3176, d) } - } else if yyct3171 == codecSelferValueTypeArray1234 { - yyl3171 := r.ReadArrayStart() - if yyl3171 == 0 { + } else if yyct3176 == codecSelferValueTypeArray1234 { + yyl3176 := r.ReadArrayStart() + if yyl3176 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3171, d) + x.codecDecodeSelfFromArray(yyl3176, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39452,12 +39500,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3172Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3172Slc - var yyhl3172 bool = l >= 0 - for yyj3172 := 0; ; yyj3172++ { - if yyhl3172 { - if yyj3172 >= l { + var yys3177Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3177Slc + var yyhl3177 bool = l >= 0 + for yyj3177 := 0; ; yyj3177++ { + if yyhl3177 { + if yyj3177 >= l { break } } else { @@ -39466,10 +39514,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3172Slc = r.DecodeBytes(yys3172Slc, true, true) - yys3172 := string(yys3172Slc) + yys3177Slc = r.DecodeBytes(yys3177Slc, true, true) + yys3177 := string(yys3177Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3172 { + switch yys3177 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39486,27 +39534,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3175 := &x.ObjectMeta - yyv3175.CodecDecodeSelf(d) + yyv3180 := &x.ObjectMeta + yyv3180.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3176 := &x.Spec - yyv3176.CodecDecodeSelf(d) + yyv3181 := &x.Spec + yyv3181.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3177 := &x.Status - yyv3177.CodecDecodeSelf(d) + yyv3182 := &x.Status + yyv3182.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3172) - } // end switch yys3172 - } // end for yyj3172 + z.DecStructFieldNotFound(-1, yys3177) + } // end switch yys3177 + } // end for yyj3177 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39514,16 +39562,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3178 int - var yyb3178 bool - var yyhl3178 bool = l >= 0 - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + var yyj3183 int + var yyb3183 bool + var yyhl3183 bool = l >= 0 + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39533,13 +39581,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39549,13 +39597,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39563,16 +39611,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3181 := &x.ObjectMeta - yyv3181.CodecDecodeSelf(d) + yyv3186 := &x.ObjectMeta + yyv3186.CodecDecodeSelf(d) } - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39580,16 +39628,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv3182 := &x.Spec - yyv3182.CodecDecodeSelf(d) + yyv3187 := &x.Spec + yyv3187.CodecDecodeSelf(d) } - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39597,21 +39645,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv3183 := &x.Status - yyv3183.CodecDecodeSelf(d) + yyv3188 := &x.Status + yyv3188.CodecDecodeSelf(d) } for { - yyj3178++ - if yyhl3178 { - yyb3178 = yyj3178 > l + yyj3183++ + if yyhl3183 { + yyb3183 = yyj3183 > l } else { - yyb3178 = r.CheckBreak() + yyb3183 = r.CheckBreak() } - if yyb3178 { + if yyb3183 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3178-1, "") + z.DecStructFieldNotFound(yyj3183-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39623,37 +39671,37 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3184 := z.EncBinary() - _ = yym3184 + yym3189 := z.EncBinary() + _ = yym3189 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3185 := !z.EncBinary() - yy2arr3185 := z.EncBasicHandle().StructToArray - var yyq3185 [4]bool - _, _, _ = yysep3185, yyq3185, yy2arr3185 - const yyr3185 bool = false - yyq3185[0] = x.Kind != "" - yyq3185[1] = x.APIVersion != "" - yyq3185[2] = true - var yynn3185 int - if yyr3185 || yy2arr3185 { + yysep3190 := !z.EncBinary() + yy2arr3190 := z.EncBasicHandle().StructToArray + var yyq3190 [4]bool + _, _, _ = yysep3190, yyq3190, yy2arr3190 + const yyr3190 bool = false + yyq3190[0] = x.Kind != "" + yyq3190[1] = x.APIVersion != "" + yyq3190[2] = true + var yynn3190 int + if yyr3190 || yy2arr3190 { r.EncodeArrayStart(4) } else { - yynn3185 = 1 - for _, b := range yyq3185 { + yynn3190 = 1 + for _, b := range yyq3190 { if b { - yynn3185++ + yynn3190++ } } - r.EncodeMapStart(yynn3185) - yynn3185 = 0 + r.EncodeMapStart(yynn3190) + yynn3190 = 0 } - if yyr3185 || yy2arr3185 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3185[0] { - yym3187 := z.EncBinary() - _ = yym3187 + if yyq3190[0] { + yym3192 := z.EncBinary() + _ = yym3192 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -39662,23 +39710,23 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3185[0] { + if yyq3190[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3188 := z.EncBinary() - _ = yym3188 + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3185 || yy2arr3185 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3185[1] { - yym3190 := z.EncBinary() - _ = yym3190 + if yyq3190[1] { + yym3195 := z.EncBinary() + _ = yym3195 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -39687,54 +39735,54 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3185[1] { + if yyq3190[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3191 := z.EncBinary() - _ = yym3191 + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3185 || yy2arr3185 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3185[2] { - yy3193 := &x.ListMeta - yym3194 := z.EncBinary() - _ = yym3194 + if yyq3190[2] { + yy3198 := &x.ListMeta + yym3199 := z.EncBinary() + _ = yym3199 if false { - } else if z.HasExtensions() && z.EncExt(yy3193) { + } else if z.HasExtensions() && z.EncExt(yy3198) { } else { - z.EncFallback(yy3193) + z.EncFallback(yy3198) } } else { r.EncodeNil() } } else { - if yyq3185[2] { + if yyq3190[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3195 := &x.ListMeta - yym3196 := z.EncBinary() - _ = yym3196 + yy3200 := &x.ListMeta + yym3201 := z.EncBinary() + _ = yym3201 if false { - } else if z.HasExtensions() && z.EncExt(yy3195) { + } else if z.HasExtensions() && z.EncExt(yy3200) { } else { - z.EncFallback(yy3195) + z.EncFallback(yy3200) } } } - if yyr3185 || yy2arr3185 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3198 := z.EncBinary() - _ = yym3198 + yym3203 := z.EncBinary() + _ = yym3203 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -39747,15 +39795,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3199 := z.EncBinary() - _ = yym3199 + yym3204 := z.EncBinary() + _ = yym3204 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr3185 || yy2arr3185 { + if yyr3190 || yy2arr3190 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39768,25 +39816,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3200 := z.DecBinary() - _ = yym3200 + yym3205 := z.DecBinary() + _ = yym3205 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3201 := r.ContainerType() - if yyct3201 == codecSelferValueTypeMap1234 { - yyl3201 := r.ReadMapStart() - if yyl3201 == 0 { + yyct3206 := r.ContainerType() + if yyct3206 == codecSelferValueTypeMap1234 { + yyl3206 := r.ReadMapStart() + if yyl3206 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3201, d) + x.codecDecodeSelfFromMap(yyl3206, d) } - } else if yyct3201 == codecSelferValueTypeArray1234 { - yyl3201 := r.ReadArrayStart() - if yyl3201 == 0 { + } else if yyct3206 == codecSelferValueTypeArray1234 { + yyl3206 := r.ReadArrayStart() + if yyl3206 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3201, d) + x.codecDecodeSelfFromArray(yyl3206, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39798,12 +39846,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3202Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3202Slc - var yyhl3202 bool = l >= 0 - for yyj3202 := 0; ; yyj3202++ { - if yyhl3202 { - if yyj3202 >= l { + var yys3207Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3207Slc + var yyhl3207 bool = l >= 0 + for yyj3207 := 0; ; yyj3207++ { + if yyhl3207 { + if yyj3207 >= l { break } } else { @@ -39812,10 +39860,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3202Slc = r.DecodeBytes(yys3202Slc, true, true) - yys3202 := string(yys3202Slc) + yys3207Slc = r.DecodeBytes(yys3207Slc, true, true) + yys3207 := string(yys3207Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3202 { + switch yys3207 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -39832,31 +39880,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3205 := &x.ListMeta - yym3206 := z.DecBinary() - _ = yym3206 + yyv3210 := &x.ListMeta + yym3211 := z.DecBinary() + _ = yym3211 if false { - } else if z.HasExtensions() && z.DecExt(yyv3205) { + } else if z.HasExtensions() && z.DecExt(yyv3210) { } else { - z.DecFallback(yyv3205, false) + z.DecFallback(yyv3210, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3207 := &x.Items - yym3208 := z.DecBinary() - _ = yym3208 + yyv3212 := &x.Items + yym3213 := z.DecBinary() + _ = yym3213 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3207), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3212), d) } } default: - z.DecStructFieldNotFound(-1, yys3202) - } // end switch yys3202 - } // end for yyj3202 + z.DecStructFieldNotFound(-1, yys3207) + } // end switch yys3207 + } // end for yyj3207 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39864,16 +39912,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3209 int - var yyb3209 bool - var yyhl3209 bool = l >= 0 - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l + var yyj3214 int + var yyb3214 bool + var yyhl3214 bool = l >= 0 + yyj3214++ + if yyhl3214 { + yyb3214 = yyj3214 > l } else { - yyb3209 = r.CheckBreak() + yyb3214 = r.CheckBreak() } - if yyb3209 { + if yyb3214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39883,13 +39931,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l + yyj3214++ + if yyhl3214 { + yyb3214 = yyj3214 > l } else { - yyb3209 = r.CheckBreak() + yyb3214 = r.CheckBreak() } - if yyb3209 { + if yyb3214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39899,13 +39947,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l + yyj3214++ + if yyhl3214 { + yyb3214 = yyj3214 > l } else { - yyb3209 = r.CheckBreak() + yyb3214 = r.CheckBreak() } - if yyb3209 { + if yyb3214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39913,22 +39961,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3212 := &x.ListMeta - yym3213 := z.DecBinary() - _ = yym3213 + yyv3217 := &x.ListMeta + yym3218 := z.DecBinary() + _ = yym3218 if false { - } else if z.HasExtensions() && z.DecExt(yyv3212) { + } else if z.HasExtensions() && z.DecExt(yyv3217) { } else { - z.DecFallback(yyv3212, false) + z.DecFallback(yyv3217, false) } } - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l + yyj3214++ + if yyhl3214 { + yyb3214 = yyj3214 > l } else { - yyb3209 = r.CheckBreak() + yyb3214 = r.CheckBreak() } - if yyb3209 { + if yyb3214 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39936,26 +39984,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3214 := &x.Items - yym3215 := z.DecBinary() - _ = yym3215 + yyv3219 := &x.Items + yym3220 := z.DecBinary() + _ = yym3220 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv3214), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv3219), d) } } for { - yyj3209++ - if yyhl3209 { - yyb3209 = yyj3209 > l + yyj3214++ + if yyhl3214 { + yyb3214 = yyj3214 > l } else { - yyb3209 = r.CheckBreak() + yyb3214 = r.CheckBreak() } - if yyb3209 { + if yyb3214 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3209-1, "") + z.DecStructFieldNotFound(yyj3214-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39967,39 +40015,39 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3216 := z.EncBinary() - _ = yym3216 + yym3221 := z.EncBinary() + _ = yym3221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3217 := !z.EncBinary() - yy2arr3217 := z.EncBasicHandle().StructToArray - var yyq3217 [5]bool - _, _, _ = yysep3217, yyq3217, yy2arr3217 - const yyr3217 bool = false - yyq3217[0] = x.Kind != "" - yyq3217[1] = x.APIVersion != "" - yyq3217[2] = true - yyq3217[3] = len(x.Data) != 0 - yyq3217[4] = x.Type != "" - var yynn3217 int - if yyr3217 || yy2arr3217 { + yysep3222 := !z.EncBinary() + yy2arr3222 := z.EncBasicHandle().StructToArray + var yyq3222 [5]bool + _, _, _ = yysep3222, yyq3222, yy2arr3222 + const yyr3222 bool = false + yyq3222[0] = x.Kind != "" + yyq3222[1] = x.APIVersion != "" + yyq3222[2] = true + yyq3222[3] = len(x.Data) != 0 + yyq3222[4] = x.Type != "" + var yynn3222 int + if yyr3222 || yy2arr3222 { r.EncodeArrayStart(5) } else { - yynn3217 = 0 - for _, b := range yyq3217 { + yynn3222 = 0 + for _, b := range yyq3222 { if b { - yynn3217++ + yynn3222++ } } - r.EncodeMapStart(yynn3217) - yynn3217 = 0 + r.EncodeMapStart(yynn3222) + yynn3222 = 0 } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3217[0] { - yym3219 := z.EncBinary() - _ = yym3219 + if yyq3222[0] { + yym3224 := z.EncBinary() + _ = yym3224 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40008,23 +40056,23 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3217[0] { + if yyq3222[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3220 := z.EncBinary() - _ = yym3220 + yym3225 := z.EncBinary() + _ = yym3225 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3217[1] { - yym3222 := z.EncBinary() - _ = yym3222 + if yyq3222[1] { + yym3227 := z.EncBinary() + _ = yym3227 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40033,43 +40081,43 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3217[1] { + if yyq3222[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3223 := z.EncBinary() - _ = yym3223 + yym3228 := z.EncBinary() + _ = yym3228 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3217[2] { - yy3225 := &x.ObjectMeta - yy3225.CodecEncodeSelf(e) + if yyq3222[2] { + yy3230 := &x.ObjectMeta + yy3230.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3217[2] { + if yyq3222[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3226 := &x.ObjectMeta - yy3226.CodecEncodeSelf(e) + yy3231 := &x.ObjectMeta + yy3231.CodecEncodeSelf(e) } } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3217[3] { + if yyq3222[3] { if x.Data == nil { r.EncodeNil() } else { - yym3228 := z.EncBinary() - _ = yym3228 + yym3233 := z.EncBinary() + _ = yym3233 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -40079,15 +40127,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3217[3] { + if yyq3222[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym3229 := z.EncBinary() - _ = yym3229 + yym3234 := z.EncBinary() + _ = yym3234 if false { } else { h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) @@ -40095,22 +40143,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3217[4] { + if yyq3222[4] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3217[4] { + if yyq3222[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3217 || yy2arr3217 { + if yyr3222 || yy2arr3222 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40123,25 +40171,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3231 := z.DecBinary() - _ = yym3231 + yym3236 := z.DecBinary() + _ = yym3236 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3232 := r.ContainerType() - if yyct3232 == codecSelferValueTypeMap1234 { - yyl3232 := r.ReadMapStart() - if yyl3232 == 0 { + yyct3237 := r.ContainerType() + if yyct3237 == codecSelferValueTypeMap1234 { + yyl3237 := r.ReadMapStart() + if yyl3237 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3232, d) + x.codecDecodeSelfFromMap(yyl3237, d) } - } else if yyct3232 == codecSelferValueTypeArray1234 { - yyl3232 := r.ReadArrayStart() - if yyl3232 == 0 { + } else if yyct3237 == codecSelferValueTypeArray1234 { + yyl3237 := r.ReadArrayStart() + if yyl3237 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3232, d) + x.codecDecodeSelfFromArray(yyl3237, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40153,12 +40201,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3233Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3233Slc - var yyhl3233 bool = l >= 0 - for yyj3233 := 0; ; yyj3233++ { - if yyhl3233 { - if yyj3233 >= l { + var yys3238Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3238Slc + var yyhl3238 bool = l >= 0 + for yyj3238 := 0; ; yyj3238++ { + if yyhl3238 { + if yyj3238 >= l { break } } else { @@ -40167,10 +40215,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3233Slc = r.DecodeBytes(yys3233Slc, true, true) - yys3233 := string(yys3233Slc) + yys3238Slc = r.DecodeBytes(yys3238Slc, true, true) + yys3238 := string(yys3238Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3233 { + switch yys3238 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40187,19 +40235,19 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3236 := &x.ObjectMeta - yyv3236.CodecDecodeSelf(d) + yyv3241 := &x.ObjectMeta + yyv3241.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3237 := &x.Data - yym3238 := z.DecBinary() - _ = yym3238 + yyv3242 := &x.Data + yym3243 := z.DecBinary() + _ = yym3243 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3237), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3242), d) } } case "type": @@ -40209,9 +40257,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3233) - } // end switch yys3233 - } // end for yyj3233 + z.DecStructFieldNotFound(-1, yys3238) + } // end switch yys3238 + } // end for yyj3238 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40219,16 +40267,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3240 int - var yyb3240 bool - var yyhl3240 bool = l >= 0 - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + var yyj3245 int + var yyb3245 bool + var yyhl3245 bool = l >= 0 + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40238,13 +40286,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40254,13 +40302,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40268,16 +40316,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3243 := &x.ObjectMeta - yyv3243.CodecDecodeSelf(d) + yyv3248 := &x.ObjectMeta + yyv3248.CodecDecodeSelf(d) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40285,21 +40333,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3244 := &x.Data - yym3245 := z.DecBinary() - _ = yym3245 + yyv3249 := &x.Data + yym3250 := z.DecBinary() + _ = yym3250 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv3244), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv3249), d) } } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40310,17 +40358,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3245++ + if yyhl3245 { + yyb3245 = yyj3245 > l } else { - yyb3240 = r.CheckBreak() + yyb3245 = r.CheckBreak() } - if yyb3240 { + if yyb3245 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3240-1, "") + z.DecStructFieldNotFound(yyj3245-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40329,8 +40377,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3247 := z.EncBinary() - _ = yym3247 + yym3252 := z.EncBinary() + _ = yym3252 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40342,8 +40390,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3248 := z.DecBinary() - _ = yym3248 + yym3253 := z.DecBinary() + _ = yym3253 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40358,37 +40406,37 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3249 := z.EncBinary() - _ = yym3249 + yym3254 := z.EncBinary() + _ = yym3254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3250 := !z.EncBinary() - yy2arr3250 := z.EncBasicHandle().StructToArray - var yyq3250 [4]bool - _, _, _ = yysep3250, yyq3250, yy2arr3250 - const yyr3250 bool = false - yyq3250[0] = x.Kind != "" - yyq3250[1] = x.APIVersion != "" - yyq3250[2] = true - var yynn3250 int - if yyr3250 || yy2arr3250 { + yysep3255 := !z.EncBinary() + yy2arr3255 := z.EncBasicHandle().StructToArray + var yyq3255 [4]bool + _, _, _ = yysep3255, yyq3255, yy2arr3255 + const yyr3255 bool = false + yyq3255[0] = x.Kind != "" + yyq3255[1] = x.APIVersion != "" + yyq3255[2] = true + var yynn3255 int + if yyr3255 || yy2arr3255 { r.EncodeArrayStart(4) } else { - yynn3250 = 1 - for _, b := range yyq3250 { + yynn3255 = 1 + for _, b := range yyq3255 { if b { - yynn3250++ + yynn3255++ } } - r.EncodeMapStart(yynn3250) - yynn3250 = 0 + r.EncodeMapStart(yynn3255) + yynn3255 = 0 } - if yyr3250 || yy2arr3250 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[0] { - yym3252 := z.EncBinary() - _ = yym3252 + if yyq3255[0] { + yym3257 := z.EncBinary() + _ = yym3257 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -40397,23 +40445,23 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3250[0] { + if yyq3255[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3253 := z.EncBinary() - _ = yym3253 + yym3258 := z.EncBinary() + _ = yym3258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3250 || yy2arr3250 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[1] { - yym3255 := z.EncBinary() - _ = yym3255 + if yyq3255[1] { + yym3260 := z.EncBinary() + _ = yym3260 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -40422,54 +40470,54 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3250[1] { + if yyq3255[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3256 := z.EncBinary() - _ = yym3256 + yym3261 := z.EncBinary() + _ = yym3261 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3250 || yy2arr3250 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3250[2] { - yy3258 := &x.ListMeta - yym3259 := z.EncBinary() - _ = yym3259 + if yyq3255[2] { + yy3263 := &x.ListMeta + yym3264 := z.EncBinary() + _ = yym3264 if false { - } else if z.HasExtensions() && z.EncExt(yy3258) { + } else if z.HasExtensions() && z.EncExt(yy3263) { } else { - z.EncFallback(yy3258) + z.EncFallback(yy3263) } } else { r.EncodeNil() } } else { - if yyq3250[2] { + if yyq3255[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3260 := &x.ListMeta - yym3261 := z.EncBinary() - _ = yym3261 + yy3265 := &x.ListMeta + yym3266 := z.EncBinary() + _ = yym3266 if false { - } else if z.HasExtensions() && z.EncExt(yy3260) { + } else if z.HasExtensions() && z.EncExt(yy3265) { } else { - z.EncFallback(yy3260) + z.EncFallback(yy3265) } } } - if yyr3250 || yy2arr3250 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3263 := z.EncBinary() - _ = yym3263 + yym3268 := z.EncBinary() + _ = yym3268 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -40482,15 +40530,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3264 := z.EncBinary() - _ = yym3264 + yym3269 := z.EncBinary() + _ = yym3269 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr3250 || yy2arr3250 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40503,25 +40551,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3265 := z.DecBinary() - _ = yym3265 + yym3270 := z.DecBinary() + _ = yym3270 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3266 := r.ContainerType() - if yyct3266 == codecSelferValueTypeMap1234 { - yyl3266 := r.ReadMapStart() - if yyl3266 == 0 { + yyct3271 := r.ContainerType() + if yyct3271 == codecSelferValueTypeMap1234 { + yyl3271 := r.ReadMapStart() + if yyl3271 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3266, d) + x.codecDecodeSelfFromMap(yyl3271, d) } - } else if yyct3266 == codecSelferValueTypeArray1234 { - yyl3266 := r.ReadArrayStart() - if yyl3266 == 0 { + } else if yyct3271 == codecSelferValueTypeArray1234 { + yyl3271 := r.ReadArrayStart() + if yyl3271 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3266, d) + x.codecDecodeSelfFromArray(yyl3271, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40533,12 +40581,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3267Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3267Slc - var yyhl3267 bool = l >= 0 - for yyj3267 := 0; ; yyj3267++ { - if yyhl3267 { - if yyj3267 >= l { + var yys3272Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3272Slc + var yyhl3272 bool = l >= 0 + for yyj3272 := 0; ; yyj3272++ { + if yyhl3272 { + if yyj3272 >= l { break } } else { @@ -40547,10 +40595,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3267Slc = r.DecodeBytes(yys3267Slc, true, true) - yys3267 := string(yys3267Slc) + yys3272Slc = r.DecodeBytes(yys3272Slc, true, true) + yys3272 := string(yys3272Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3267 { + switch yys3272 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -40567,31 +40615,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3270 := &x.ListMeta - yym3271 := z.DecBinary() - _ = yym3271 + yyv3275 := &x.ListMeta + yym3276 := z.DecBinary() + _ = yym3276 if false { - } else if z.HasExtensions() && z.DecExt(yyv3270) { + } else if z.HasExtensions() && z.DecExt(yyv3275) { } else { - z.DecFallback(yyv3270, false) + z.DecFallback(yyv3275, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3272 := &x.Items - yym3273 := z.DecBinary() - _ = yym3273 + yyv3277 := &x.Items + yym3278 := z.DecBinary() + _ = yym3278 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3272), d) + h.decSliceSecret((*[]Secret)(yyv3277), d) } } default: - z.DecStructFieldNotFound(-1, yys3267) - } // end switch yys3267 - } // end for yyj3267 + z.DecStructFieldNotFound(-1, yys3272) + } // end switch yys3272 + } // end for yyj3272 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40599,16 +40647,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3274 int - var yyb3274 bool - var yyhl3274 bool = l >= 0 - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + var yyj3279 int + var yyb3279 bool + var yyhl3279 bool = l >= 0 + yyj3279++ + if yyhl3279 { + yyb3279 = yyj3279 > l } else { - yyb3274 = r.CheckBreak() + yyb3279 = r.CheckBreak() } - if yyb3274 { + if yyb3279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40618,13 +40666,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3279++ + if yyhl3279 { + yyb3279 = yyj3279 > l } else { - yyb3274 = r.CheckBreak() + yyb3279 = r.CheckBreak() } - if yyb3274 { + if yyb3279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40634,13 +40682,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3279++ + if yyhl3279 { + yyb3279 = yyj3279 > l } else { - yyb3274 = r.CheckBreak() + yyb3279 = r.CheckBreak() } - if yyb3274 { + if yyb3279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40648,22 +40696,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3277 := &x.ListMeta - yym3278 := z.DecBinary() - _ = yym3278 + yyv3282 := &x.ListMeta + yym3283 := z.DecBinary() + _ = yym3283 if false { - } else if z.HasExtensions() && z.DecExt(yyv3277) { + } else if z.HasExtensions() && z.DecExt(yyv3282) { } else { - z.DecFallback(yyv3277, false) + z.DecFallback(yyv3282, false) } } - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3279++ + if yyhl3279 { + yyb3279 = yyj3279 > l } else { - yyb3274 = r.CheckBreak() + yyb3279 = r.CheckBreak() } - if yyb3274 { + if yyb3279 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40671,26 +40719,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3279 := &x.Items - yym3280 := z.DecBinary() - _ = yym3280 + yyv3284 := &x.Items + yym3285 := z.DecBinary() + _ = yym3285 if false { } else { - h.decSliceSecret((*[]Secret)(yyv3279), d) + h.decSliceSecret((*[]Secret)(yyv3284), d) } } for { - yyj3274++ - if yyhl3274 { - yyb3274 = yyj3274 > l + yyj3279++ + if yyhl3279 { + yyb3279 = yyj3279 > l } else { - yyb3274 = r.CheckBreak() + yyb3279 = r.CheckBreak() } - if yyb3274 { + if yyb3279 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3274-1, "") + z.DecStructFieldNotFound(yyj3279-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40699,8 +40747,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3281 := z.EncBinary() - _ = yym3281 + yym3286 := z.EncBinary() + _ = yym3286 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -40712,8 +40760,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3282 := z.DecBinary() - _ = yym3282 + yym3287 := z.DecBinary() + _ = yym3287 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -40728,32 +40776,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3283 := z.EncBinary() - _ = yym3283 + yym3288 := z.EncBinary() + _ = yym3288 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3284 := !z.EncBinary() - yy2arr3284 := z.EncBasicHandle().StructToArray - var yyq3284 [4]bool - _, _, _ = yysep3284, yyq3284, yy2arr3284 - const yyr3284 bool = false - yyq3284[2] = x.Message != "" - yyq3284[3] = x.Error != "" - var yynn3284 int - if yyr3284 || yy2arr3284 { + yysep3289 := !z.EncBinary() + yy2arr3289 := z.EncBasicHandle().StructToArray + var yyq3289 [4]bool + _, _, _ = yysep3289, yyq3289, yy2arr3289 + const yyr3289 bool = false + yyq3289[2] = x.Message != "" + yyq3289[3] = x.Error != "" + var yynn3289 int + if yyr3289 || yy2arr3289 { r.EncodeArrayStart(4) } else { - yynn3284 = 2 - for _, b := range yyq3284 { + yynn3289 = 2 + for _, b := range yyq3289 { if b { - yynn3284++ + yynn3289++ } } - r.EncodeMapStart(yynn3284) - yynn3284 = 0 + r.EncodeMapStart(yynn3289) + yynn3289 = 0 } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -40762,7 +40810,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -40771,11 +40819,11 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3284[2] { - yym3288 := z.EncBinary() - _ = yym3288 + if yyq3289[2] { + yym3293 := z.EncBinary() + _ = yym3293 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) @@ -40784,23 +40832,23 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3284[2] { + if yyq3289[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3289 := z.EncBinary() - _ = yym3289 + yym3294 := z.EncBinary() + _ = yym3294 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3284[3] { - yym3291 := z.EncBinary() - _ = yym3291 + if yyq3289[3] { + yym3296 := z.EncBinary() + _ = yym3296 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) @@ -40809,19 +40857,19 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3284[3] { + if yyq3289[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("error")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3292 := z.EncBinary() - _ = yym3292 + yym3297 := z.EncBinary() + _ = yym3297 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr3284 || yy2arr3284 { + if yyr3289 || yy2arr3289 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40834,25 +40882,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3293 := z.DecBinary() - _ = yym3293 + yym3298 := z.DecBinary() + _ = yym3298 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3294 := r.ContainerType() - if yyct3294 == codecSelferValueTypeMap1234 { - yyl3294 := r.ReadMapStart() - if yyl3294 == 0 { + yyct3299 := r.ContainerType() + if yyct3299 == codecSelferValueTypeMap1234 { + yyl3299 := r.ReadMapStart() + if yyl3299 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3294, d) + x.codecDecodeSelfFromMap(yyl3299, d) } - } else if yyct3294 == codecSelferValueTypeArray1234 { - yyl3294 := r.ReadArrayStart() - if yyl3294 == 0 { + } else if yyct3299 == codecSelferValueTypeArray1234 { + yyl3299 := r.ReadArrayStart() + if yyl3299 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3294, d) + x.codecDecodeSelfFromArray(yyl3299, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40864,12 +40912,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3295Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3295Slc - var yyhl3295 bool = l >= 0 - for yyj3295 := 0; ; yyj3295++ { - if yyhl3295 { - if yyj3295 >= l { + 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 { @@ -40878,10 +40926,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3295Slc = r.DecodeBytes(yys3295Slc, true, true) - yys3295 := string(yys3295Slc) + yys3300Slc = r.DecodeBytes(yys3300Slc, true, true) + yys3300 := string(yys3300Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3295 { + switch yys3300 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -40907,9 +40955,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3295) - } // end switch yys3295 - } // end for yyj3295 + z.DecStructFieldNotFound(-1, yys3300) + } // end switch yys3300 + } // end for yyj3300 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40917,16 +40965,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3300 int - var yyb3300 bool - var yyhl3300 bool = l >= 0 - yyj3300++ - if yyhl3300 { - yyb3300 = yyj3300 > l + var yyj3305 int + var yyb3305 bool + var yyhl3305 bool = l >= 0 + yyj3305++ + if yyhl3305 { + yyb3305 = yyj3305 > l } else { - yyb3300 = r.CheckBreak() + yyb3305 = r.CheckBreak() } - if yyb3300 { + if yyb3305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40936,13 +40984,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj3300++ - if yyhl3300 { - yyb3300 = yyj3300 > l + yyj3305++ + if yyhl3305 { + yyb3305 = yyj3305 > l } else { - yyb3300 = r.CheckBreak() + yyb3305 = r.CheckBreak() } - if yyb3300 { + if yyb3305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40952,13 +41000,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3300++ - if yyhl3300 { - yyb3300 = yyj3300 > l + yyj3305++ + if yyhl3305 { + yyb3305 = yyj3305 > l } else { - yyb3300 = r.CheckBreak() + yyb3305 = r.CheckBreak() } - if yyb3300 { + if yyb3305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40968,13 +41016,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj3300++ - if yyhl3300 { - yyb3300 = yyj3300 > l + yyj3305++ + if yyhl3305 { + yyb3305 = yyj3305 > l } else { - yyb3300 = r.CheckBreak() + yyb3305 = r.CheckBreak() } - if yyb3300 { + if yyb3305 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40985,17 +41033,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj3300++ - if yyhl3300 { - yyb3300 = yyj3300 > l + yyj3305++ + if yyhl3305 { + yyb3305 = yyj3305 > l } else { - yyb3300 = r.CheckBreak() + yyb3305 = r.CheckBreak() } - if yyb3300 { + if yyb3305 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3300-1, "") + z.DecStructFieldNotFound(yyj3305-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41007,38 +41055,38 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3305 := z.EncBinary() - _ = yym3305 + yym3310 := z.EncBinary() + _ = yym3310 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 - yyq3306[3] = len(x.Conditions) != 0 - var yynn3306 int - if yyr3306 || yy2arr3306 { + yysep3311 := !z.EncBinary() + yy2arr3311 := z.EncBasicHandle().StructToArray + var yyq3311 [4]bool + _, _, _ = yysep3311, yyq3311, yy2arr3311 + const yyr3311 bool = false + yyq3311[0] = x.Kind != "" + yyq3311[1] = x.APIVersion != "" + yyq3311[2] = true + yyq3311[3] = len(x.Conditions) != 0 + var yynn3311 int + if yyr3311 || yy2arr3311 { r.EncodeArrayStart(4) } else { - yynn3306 = 0 - for _, b := range yyq3306 { + yynn3311 = 0 + for _, b := range yyq3311 { if b { - yynn3306++ + yynn3311++ } } - r.EncodeMapStart(yynn3306) - yynn3306 = 0 + r.EncodeMapStart(yynn3311) + yynn3311 = 0 } - if yyr3306 || yy2arr3306 { + if yyr3311 || yy2arr3311 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3306[0] { - yym3308 := z.EncBinary() - _ = yym3308 + if yyq3311[0] { + yym3313 := z.EncBinary() + _ = yym3313 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41047,23 +41095,23 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3306[0] { + if yyq3311[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3309 := z.EncBinary() - _ = yym3309 + yym3314 := z.EncBinary() + _ = yym3314 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3306 || yy2arr3306 { + if yyr3311 || yy2arr3311 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3306[1] { - yym3311 := z.EncBinary() - _ = yym3311 + if yyq3311[1] { + yym3316 := z.EncBinary() + _ = yym3316 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41072,43 +41120,43 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3306[1] { + if yyq3311[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3312 := z.EncBinary() - _ = yym3312 + yym3317 := z.EncBinary() + _ = yym3317 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3306 || yy2arr3306 { + if yyr3311 || yy2arr3311 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3306[2] { - yy3314 := &x.ObjectMeta - yy3314.CodecEncodeSelf(e) + if yyq3311[2] { + yy3319 := &x.ObjectMeta + yy3319.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3306[2] { + if yyq3311[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3315 := &x.ObjectMeta - yy3315.CodecEncodeSelf(e) + yy3320 := &x.ObjectMeta + yy3320.CodecEncodeSelf(e) } } - if yyr3306 || yy2arr3306 { + if yyr3311 || yy2arr3311 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3306[3] { + if yyq3311[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym3317 := z.EncBinary() - _ = yym3317 + yym3322 := z.EncBinary() + _ = yym3322 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -41118,15 +41166,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3306[3] { + if yyq3311[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym3318 := z.EncBinary() - _ = yym3318 + yym3323 := z.EncBinary() + _ = yym3323 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -41134,7 +41182,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3306 || yy2arr3306 { + if yyr3311 || yy2arr3311 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41147,25 +41195,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3319 := z.DecBinary() - _ = yym3319 + yym3324 := z.DecBinary() + _ = yym3324 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3320 := r.ContainerType() - if yyct3320 == codecSelferValueTypeMap1234 { - yyl3320 := r.ReadMapStart() - if yyl3320 == 0 { + yyct3325 := r.ContainerType() + if yyct3325 == codecSelferValueTypeMap1234 { + yyl3325 := r.ReadMapStart() + if yyl3325 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3320, d) + x.codecDecodeSelfFromMap(yyl3325, d) } - } else if yyct3320 == codecSelferValueTypeArray1234 { - yyl3320 := r.ReadArrayStart() - if yyl3320 == 0 { + } else if yyct3325 == codecSelferValueTypeArray1234 { + yyl3325 := r.ReadArrayStart() + if yyl3325 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3320, d) + x.codecDecodeSelfFromArray(yyl3325, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41177,12 +41225,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3321Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3321Slc - var yyhl3321 bool = l >= 0 - for yyj3321 := 0; ; yyj3321++ { - if yyhl3321 { - if yyj3321 >= l { + var yys3326Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3326Slc + var yyhl3326 bool = l >= 0 + for yyj3326 := 0; ; yyj3326++ { + if yyhl3326 { + if yyj3326 >= l { break } } else { @@ -41191,10 +41239,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3321Slc = r.DecodeBytes(yys3321Slc, true, true) - yys3321 := string(yys3321Slc) + yys3326Slc = r.DecodeBytes(yys3326Slc, true, true) + yys3326 := string(yys3326Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3321 { + switch yys3326 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41211,25 +41259,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3324 := &x.ObjectMeta - yyv3324.CodecDecodeSelf(d) + yyv3329 := &x.ObjectMeta + yyv3329.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3325 := &x.Conditions - yym3326 := z.DecBinary() - _ = yym3326 + yyv3330 := &x.Conditions + yym3331 := z.DecBinary() + _ = yym3331 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3325), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3330), d) } } default: - z.DecStructFieldNotFound(-1, yys3321) - } // end switch yys3321 - } // end for yyj3321 + z.DecStructFieldNotFound(-1, yys3326) + } // end switch yys3326 + } // end for yyj3326 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41237,16 +41285,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3327 int - var yyb3327 bool - var yyhl3327 bool = l >= 0 - yyj3327++ - if yyhl3327 { - yyb3327 = yyj3327 > l + var yyj3332 int + var yyb3332 bool + var yyhl3332 bool = l >= 0 + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3327 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3327 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41256,13 +41304,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3327++ - if yyhl3327 { - yyb3327 = yyj3327 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3327 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3327 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41272,13 +41320,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3327++ - if yyhl3327 { - yyb3327 = yyj3327 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3327 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3327 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41286,16 +41334,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3330 := &x.ObjectMeta - yyv3330.CodecDecodeSelf(d) + yyv3335 := &x.ObjectMeta + yyv3335.CodecDecodeSelf(d) } - yyj3327++ - if yyhl3327 { - yyb3327 = yyj3327 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3327 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3327 { + if yyb3332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41303,26 +41351,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3331 := &x.Conditions - yym3332 := z.DecBinary() - _ = yym3332 + yyv3336 := &x.Conditions + yym3337 := z.DecBinary() + _ = yym3337 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv3331), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv3336), d) } } for { - yyj3327++ - if yyhl3327 { - yyb3327 = yyj3327 > l + yyj3332++ + if yyhl3332 { + yyb3332 = yyj3332 > l } else { - yyb3327 = r.CheckBreak() + yyb3332 = r.CheckBreak() } - if yyb3327 { + if yyb3332 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3327-1, "") + z.DecStructFieldNotFound(yyj3332-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41334,37 +41382,37 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3333 := z.EncBinary() - _ = yym3333 + yym3338 := z.EncBinary() + _ = yym3338 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3334 := !z.EncBinary() - yy2arr3334 := z.EncBasicHandle().StructToArray - var yyq3334 [4]bool - _, _, _ = yysep3334, yyq3334, yy2arr3334 - const yyr3334 bool = false - yyq3334[0] = x.Kind != "" - yyq3334[1] = x.APIVersion != "" - yyq3334[2] = true - var yynn3334 int - if yyr3334 || yy2arr3334 { + yysep3339 := !z.EncBinary() + yy2arr3339 := z.EncBasicHandle().StructToArray + var yyq3339 [4]bool + _, _, _ = yysep3339, yyq3339, yy2arr3339 + const yyr3339 bool = false + yyq3339[0] = x.Kind != "" + yyq3339[1] = x.APIVersion != "" + yyq3339[2] = true + var yynn3339 int + if yyr3339 || yy2arr3339 { r.EncodeArrayStart(4) } else { - yynn3334 = 1 - for _, b := range yyq3334 { + yynn3339 = 1 + for _, b := range yyq3339 { if b { - yynn3334++ + yynn3339++ } } - r.EncodeMapStart(yynn3334) - yynn3334 = 0 + r.EncodeMapStart(yynn3339) + yynn3339 = 0 } - if yyr3334 || yy2arr3334 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3334[0] { - yym3336 := z.EncBinary() - _ = yym3336 + if yyq3339[0] { + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -41373,23 +41421,23 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3334[0] { + if yyq3339[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3337 := z.EncBinary() - _ = yym3337 + yym3342 := z.EncBinary() + _ = yym3342 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3334 || yy2arr3334 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3334[1] { - yym3339 := z.EncBinary() - _ = yym3339 + if yyq3339[1] { + yym3344 := z.EncBinary() + _ = yym3344 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -41398,54 +41446,54 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3334[1] { + if yyq3339[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3340 := z.EncBinary() - _ = yym3340 + yym3345 := z.EncBinary() + _ = yym3345 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3334 || yy2arr3334 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3334[2] { - yy3342 := &x.ListMeta - yym3343 := z.EncBinary() - _ = yym3343 + if yyq3339[2] { + yy3347 := &x.ListMeta + yym3348 := z.EncBinary() + _ = yym3348 if false { - } else if z.HasExtensions() && z.EncExt(yy3342) { + } else if z.HasExtensions() && z.EncExt(yy3347) { } else { - z.EncFallback(yy3342) + z.EncFallback(yy3347) } } else { r.EncodeNil() } } else { - if yyq3334[2] { + if yyq3339[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3344 := &x.ListMeta - yym3345 := z.EncBinary() - _ = yym3345 + yy3349 := &x.ListMeta + yym3350 := z.EncBinary() + _ = yym3350 if false { - } else if z.HasExtensions() && z.EncExt(yy3344) { + } else if z.HasExtensions() && z.EncExt(yy3349) { } else { - z.EncFallback(yy3344) + z.EncFallback(yy3349) } } } - if yyr3334 || yy2arr3334 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3347 := z.EncBinary() - _ = yym3347 + yym3352 := z.EncBinary() + _ = yym3352 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -41458,15 +41506,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3348 := z.EncBinary() - _ = yym3348 + yym3353 := z.EncBinary() + _ = yym3353 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr3334 || yy2arr3334 { + if yyr3339 || yy2arr3339 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41479,25 +41527,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3349 := z.DecBinary() - _ = yym3349 + yym3354 := z.DecBinary() + _ = yym3354 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3350 := r.ContainerType() - if yyct3350 == codecSelferValueTypeMap1234 { - yyl3350 := r.ReadMapStart() - if yyl3350 == 0 { + yyct3355 := r.ContainerType() + if yyct3355 == codecSelferValueTypeMap1234 { + yyl3355 := r.ReadMapStart() + if yyl3355 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3350, d) + x.codecDecodeSelfFromMap(yyl3355, d) } - } else if yyct3350 == codecSelferValueTypeArray1234 { - yyl3350 := r.ReadArrayStart() - if yyl3350 == 0 { + } else if yyct3355 == codecSelferValueTypeArray1234 { + yyl3355 := r.ReadArrayStart() + if yyl3355 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3350, d) + x.codecDecodeSelfFromArray(yyl3355, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41509,12 +41557,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3351Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3351Slc - var yyhl3351 bool = l >= 0 - for yyj3351 := 0; ; yyj3351++ { - if yyhl3351 { - if yyj3351 >= l { + var yys3356Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3356Slc + var yyhl3356 bool = l >= 0 + for yyj3356 := 0; ; yyj3356++ { + if yyhl3356 { + if yyj3356 >= l { break } } else { @@ -41523,10 +41571,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3351Slc = r.DecodeBytes(yys3351Slc, true, true) - yys3351 := string(yys3351Slc) + yys3356Slc = r.DecodeBytes(yys3356Slc, true, true) + yys3356 := string(yys3356Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3351 { + switch yys3356 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -41543,31 +41591,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3354 := &x.ListMeta - yym3355 := z.DecBinary() - _ = yym3355 + yyv3359 := &x.ListMeta + yym3360 := z.DecBinary() + _ = yym3360 if false { - } else if z.HasExtensions() && z.DecExt(yyv3354) { + } else if z.HasExtensions() && z.DecExt(yyv3359) { } else { - z.DecFallback(yyv3354, false) + z.DecFallback(yyv3359, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3356 := &x.Items - yym3357 := z.DecBinary() - _ = yym3357 + yyv3361 := &x.Items + yym3362 := z.DecBinary() + _ = yym3362 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3356), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3361), d) } } default: - z.DecStructFieldNotFound(-1, yys3351) - } // end switch yys3351 - } // end for yyj3351 + z.DecStructFieldNotFound(-1, yys3356) + } // end switch yys3356 + } // end for yyj3356 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41575,16 +41623,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3358 int - var yyb3358 bool - var yyhl3358 bool = l >= 0 - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + var yyj3363 int + var yyb3363 bool + var yyhl3363 bool = l >= 0 + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3358 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3358 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41594,13 +41642,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3358 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3358 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41610,13 +41658,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3358 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3358 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41624,22 +41672,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_unversioned.ListMeta{} } else { - yyv3361 := &x.ListMeta - yym3362 := z.DecBinary() - _ = yym3362 + yyv3366 := &x.ListMeta + yym3367 := z.DecBinary() + _ = yym3367 if false { - } else if z.HasExtensions() && z.DecExt(yyv3361) { + } else if z.HasExtensions() && z.DecExt(yyv3366) { } else { - z.DecFallback(yyv3361, false) + z.DecFallback(yyv3366, false) } } - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3358 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3358 { + if yyb3363 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41647,26 +41695,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3363 := &x.Items - yym3364 := z.DecBinary() - _ = yym3364 + yyv3368 := &x.Items + yym3369 := z.DecBinary() + _ = yym3369 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv3363), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv3368), d) } } for { - yyj3358++ - if yyhl3358 { - yyb3358 = yyj3358 > l + yyj3363++ + if yyhl3363 { + yyb3363 = yyj3363 > l } else { - yyb3358 = r.CheckBreak() + yyb3363 = r.CheckBreak() } - if yyb3358 { + if yyb3363 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3358-1, "") + z.DecStructFieldNotFound(yyj3363-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41678,38 +41726,38 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3365 := z.EncBinary() - _ = yym3365 + yym3370 := z.EncBinary() + _ = yym3370 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3366 := !z.EncBinary() - yy2arr3366 := z.EncBasicHandle().StructToArray - var yyq3366 [1]bool - _, _, _ = yysep3366, yyq3366, yy2arr3366 - const yyr3366 bool = false - yyq3366[0] = len(x.Items) != 0 - var yynn3366 int - if yyr3366 || yy2arr3366 { + yysep3371 := !z.EncBinary() + yy2arr3371 := z.EncBasicHandle().StructToArray + var yyq3371 [1]bool + _, _, _ = yysep3371, yyq3371, yy2arr3371 + const yyr3371 bool = false + yyq3371[0] = len(x.Items) != 0 + var yynn3371 int + if yyr3371 || yy2arr3371 { r.EncodeArrayStart(1) } else { - yynn3366 = 0 - for _, b := range yyq3366 { + yynn3371 = 0 + for _, b := range yyq3371 { if b { - yynn3366++ + yynn3371++ } } - r.EncodeMapStart(yynn3366) - yynn3366 = 0 + r.EncodeMapStart(yynn3371) + yynn3371 = 0 } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3366[0] { + if yyq3371[0] { if x.Items == nil { r.EncodeNil() } else { - yym3368 := z.EncBinary() - _ = yym3368 + yym3373 := z.EncBinary() + _ = yym3373 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -41719,15 +41767,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3366[0] { + if yyq3371[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym3369 := z.EncBinary() - _ = yym3369 + yym3374 := z.EncBinary() + _ = yym3374 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -41735,7 +41783,7 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3366 || yy2arr3366 { + if yyr3371 || yy2arr3371 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41748,25 +41796,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3370 := z.DecBinary() - _ = yym3370 + yym3375 := z.DecBinary() + _ = yym3375 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3371 := r.ContainerType() - if yyct3371 == codecSelferValueTypeMap1234 { - yyl3371 := r.ReadMapStart() - if yyl3371 == 0 { + yyct3376 := r.ContainerType() + if yyct3376 == codecSelferValueTypeMap1234 { + yyl3376 := r.ReadMapStart() + if yyl3376 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3371, d) + x.codecDecodeSelfFromMap(yyl3376, d) } - } else if yyct3371 == codecSelferValueTypeArray1234 { - yyl3371 := r.ReadArrayStart() - if yyl3371 == 0 { + } else if yyct3376 == codecSelferValueTypeArray1234 { + yyl3376 := r.ReadArrayStart() + if yyl3376 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3371, d) + x.codecDecodeSelfFromArray(yyl3376, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41778,12 +41826,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3372Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3372Slc - var yyhl3372 bool = l >= 0 - for yyj3372 := 0; ; yyj3372++ { - if yyhl3372 { - if yyj3372 >= l { + var yys3377Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3377Slc + var yyhl3377 bool = l >= 0 + for yyj3377 := 0; ; yyj3377++ { + if yyhl3377 { + if yyj3377 >= l { break } } else { @@ -41792,26 +41840,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3372Slc = r.DecodeBytes(yys3372Slc, true, true) - yys3372 := string(yys3372Slc) + yys3377Slc = r.DecodeBytes(yys3377Slc, true, true) + yys3377 := string(yys3377Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3372 { + switch yys3377 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3373 := &x.Items - yym3374 := z.DecBinary() - _ = yym3374 + yyv3378 := &x.Items + yym3379 := z.DecBinary() + _ = yym3379 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3373), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3378), d) } } default: - z.DecStructFieldNotFound(-1, yys3372) - } // end switch yys3372 - } // end for yyj3372 + z.DecStructFieldNotFound(-1, yys3377) + } // end switch yys3377 + } // end for yyj3377 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41819,16 +41867,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3375 int - var yyb3375 bool - var yyhl3375 bool = l >= 0 - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + var yyj3380 int + var yyb3380 bool + var yyhl3380 bool = l >= 0 + yyj3380++ + if yyhl3380 { + yyb3380 = yyj3380 > l } else { - yyb3375 = r.CheckBreak() + yyb3380 = r.CheckBreak() } - if yyb3375 { + if yyb3380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41836,26 +41884,26 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3376 := &x.Items - yym3377 := z.DecBinary() - _ = yym3377 + yyv3381 := &x.Items + yym3382 := z.DecBinary() + _ = yym3382 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3376), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv3381), d) } } for { - yyj3375++ - if yyhl3375 { - yyb3375 = yyj3375 > l + yyj3380++ + if yyhl3380 { + yyb3380 = yyj3380 > l } else { - yyb3375 = r.CheckBreak() + yyb3380 = r.CheckBreak() } - if yyb3375 { + if yyb3380 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3375-1, "") + z.DecStructFieldNotFound(yyj3380-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41867,33 +41915,33 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3378 := z.EncBinary() - _ = yym3378 + yym3383 := z.EncBinary() + _ = yym3383 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3379 := !z.EncBinary() - yy2arr3379 := z.EncBasicHandle().StructToArray - var yyq3379 [2]bool - _, _, _ = yysep3379, yyq3379, yy2arr3379 - const yyr3379 bool = false - var yynn3379 int - if yyr3379 || yy2arr3379 { + yysep3384 := !z.EncBinary() + yy2arr3384 := z.EncBasicHandle().StructToArray + var yyq3384 [2]bool + _, _, _ = yysep3384, yyq3384, yy2arr3384 + const yyr3384 bool = false + var yynn3384 int + if yyr3384 || yy2arr3384 { r.EncodeArrayStart(2) } else { - yynn3379 = 2 - for _, b := range yyq3379 { + yynn3384 = 2 + for _, b := range yyq3384 { if b { - yynn3379++ + yynn3384++ } } - r.EncodeMapStart(yynn3379) - yynn3379 = 0 + r.EncodeMapStart(yynn3384) + yynn3384 = 0 } - if yyr3379 || yy2arr3379 { + if yyr3384 || yy2arr3384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3381 := z.EncBinary() - _ = yym3381 + yym3386 := z.EncBinary() + _ = yym3386 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -41902,25 +41950,25 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3382 := z.EncBinary() - _ = yym3382 + yym3387 := z.EncBinary() + _ = yym3387 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr3379 || yy2arr3379 { + if yyr3384 || yy2arr3384 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3384 := &x.FieldRef - yy3384.CodecEncodeSelf(e) + yy3389 := &x.FieldRef + yy3389.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3385 := &x.FieldRef - yy3385.CodecEncodeSelf(e) + yy3390 := &x.FieldRef + yy3390.CodecEncodeSelf(e) } - if yyr3379 || yy2arr3379 { + if yyr3384 || yy2arr3384 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41933,25 +41981,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3386 := z.DecBinary() - _ = yym3386 + yym3391 := z.DecBinary() + _ = yym3391 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3387 := r.ContainerType() - if yyct3387 == codecSelferValueTypeMap1234 { - yyl3387 := r.ReadMapStart() - if yyl3387 == 0 { + yyct3392 := r.ContainerType() + if yyct3392 == codecSelferValueTypeMap1234 { + yyl3392 := r.ReadMapStart() + if yyl3392 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3387, d) + x.codecDecodeSelfFromMap(yyl3392, d) } - } else if yyct3387 == codecSelferValueTypeArray1234 { - yyl3387 := r.ReadArrayStart() - if yyl3387 == 0 { + } else if yyct3392 == codecSelferValueTypeArray1234 { + yyl3392 := r.ReadArrayStart() + if yyl3392 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3387, d) + x.codecDecodeSelfFromArray(yyl3392, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41963,12 +42011,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3388Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3388Slc - var yyhl3388 bool = l >= 0 - for yyj3388 := 0; ; yyj3388++ { - if yyhl3388 { - if yyj3388 >= l { + var yys3393Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3393Slc + var yyhl3393 bool = l >= 0 + for yyj3393 := 0; ; yyj3393++ { + if yyhl3393 { + if yyj3393 >= l { break } } else { @@ -41977,10 +42025,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3388Slc = r.DecodeBytes(yys3388Slc, true, true) - yys3388 := string(yys3388Slc) + yys3393Slc = r.DecodeBytes(yys3393Slc, true, true) + yys3393 := string(yys3393Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3388 { + switch yys3393 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -41991,13 +42039,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3390 := &x.FieldRef - yyv3390.CodecDecodeSelf(d) + yyv3395 := &x.FieldRef + yyv3395.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3388) - } // end switch yys3388 - } // end for yyj3388 + z.DecStructFieldNotFound(-1, yys3393) + } // end switch yys3393 + } // end for yyj3393 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42005,16 +42053,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3391 int - var yyb3391 bool - var yyhl3391 bool = l >= 0 - yyj3391++ - if yyhl3391 { - yyb3391 = yyj3391 > l + var yyj3396 int + var yyb3396 bool + var yyhl3396 bool = l >= 0 + yyj3396++ + if yyhl3396 { + yyb3396 = yyj3396 > l } else { - yyb3391 = r.CheckBreak() + yyb3396 = r.CheckBreak() } - if yyb3391 { + if yyb3396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42024,13 +42072,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj3391++ - if yyhl3391 { - yyb3391 = yyj3391 > l + yyj3396++ + if yyhl3396 { + yyb3396 = yyj3396 > l } else { - yyb3391 = r.CheckBreak() + yyb3396 = r.CheckBreak() } - if yyb3391 { + if yyb3396 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42038,21 +42086,21 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.FieldRef = ObjectFieldSelector{} } else { - yyv3393 := &x.FieldRef - yyv3393.CodecDecodeSelf(d) + yyv3398 := &x.FieldRef + yyv3398.CodecDecodeSelf(d) } for { - yyj3391++ - if yyhl3391 { - yyb3391 = yyj3391 > l + yyj3396++ + if yyhl3396 { + yyb3396 = yyj3396 > l } else { - yyb3391 = r.CheckBreak() + yyb3396 = r.CheckBreak() } - if yyb3391 { + if yyb3396 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3391-1, "") + z.DecStructFieldNotFound(yyj3396-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42064,37 +42112,37 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3394 := z.EncBinary() - _ = yym3394 + yym3399 := z.EncBinary() + _ = yym3399 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3395 := !z.EncBinary() - yy2arr3395 := z.EncBasicHandle().StructToArray - var yyq3395 [5]bool - _, _, _ = yysep3395, yyq3395, yy2arr3395 - const yyr3395 bool = false - yyq3395[0] = x.Capabilities != nil - yyq3395[1] = x.Privileged != nil - yyq3395[2] = x.SELinuxOptions != nil - yyq3395[3] = x.RunAsUser != nil - yyq3395[4] = x.RunAsNonRoot != nil - var yynn3395 int - if yyr3395 || yy2arr3395 { + yysep3400 := !z.EncBinary() + yy2arr3400 := z.EncBasicHandle().StructToArray + var yyq3400 [5]bool + _, _, _ = yysep3400, yyq3400, yy2arr3400 + const yyr3400 bool = false + yyq3400[0] = x.Capabilities != nil + yyq3400[1] = x.Privileged != nil + yyq3400[2] = x.SELinuxOptions != nil + yyq3400[3] = x.RunAsUser != nil + yyq3400[4] = x.RunAsNonRoot != nil + var yynn3400 int + if yyr3400 || yy2arr3400 { r.EncodeArrayStart(5) } else { - yynn3395 = 0 - for _, b := range yyq3395 { + yynn3400 = 0 + for _, b := range yyq3400 { if b { - yynn3395++ + yynn3400++ } } - r.EncodeMapStart(yynn3395) - yynn3395 = 0 + r.EncodeMapStart(yynn3400) + yynn3400 = 0 } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3395[0] { + if yyq3400[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -42104,7 +42152,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3395[0] { + if yyq3400[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42115,44 +42163,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3395[1] { + if yyq3400[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy3398 := *x.Privileged - yym3399 := z.EncBinary() - _ = yym3399 + yy3403 := *x.Privileged + yym3404 := z.EncBinary() + _ = yym3404 if false { } else { - r.EncodeBool(bool(yy3398)) + r.EncodeBool(bool(yy3403)) } } } else { r.EncodeNil() } } else { - if yyq3395[1] { + if yyq3400[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy3400 := *x.Privileged - yym3401 := z.EncBinary() - _ = yym3401 + yy3405 := *x.Privileged + yym3406 := z.EncBinary() + _ = yym3406 if false { } else { - r.EncodeBool(bool(yy3400)) + r.EncodeBool(bool(yy3405)) } } } } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3395[2] { + if yyq3400[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -42162,7 +42210,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3395[2] { + if yyq3400[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -42173,77 +42221,77 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3395[3] { + if yyq3400[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy3404 := *x.RunAsUser - yym3405 := z.EncBinary() - _ = yym3405 + yy3409 := *x.RunAsUser + yym3410 := z.EncBinary() + _ = yym3410 if false { } else { - r.EncodeInt(int64(yy3404)) + r.EncodeInt(int64(yy3409)) } } } else { r.EncodeNil() } } else { - if yyq3395[3] { + if yyq3400[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy3406 := *x.RunAsUser - yym3407 := z.EncBinary() - _ = yym3407 + yy3411 := *x.RunAsUser + yym3412 := z.EncBinary() + _ = yym3412 if false { } else { - r.EncodeInt(int64(yy3406)) + r.EncodeInt(int64(yy3411)) } } } } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3395[4] { + if yyq3400[4] { if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3409 := *x.RunAsNonRoot - yym3410 := z.EncBinary() - _ = yym3410 + yy3414 := *x.RunAsNonRoot + yym3415 := z.EncBinary() + _ = yym3415 if false { } else { - r.EncodeBool(bool(yy3409)) + r.EncodeBool(bool(yy3414)) } } } else { r.EncodeNil() } } else { - if yyq3395[4] { + if yyq3400[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy3411 := *x.RunAsNonRoot - yym3412 := z.EncBinary() - _ = yym3412 + yy3416 := *x.RunAsNonRoot + yym3417 := z.EncBinary() + _ = yym3417 if false { } else { - r.EncodeBool(bool(yy3411)) + r.EncodeBool(bool(yy3416)) } } } } - if yyr3395 || yy2arr3395 { + if yyr3400 || yy2arr3400 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42256,25 +42304,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3413 := z.DecBinary() - _ = yym3413 + yym3418 := z.DecBinary() + _ = yym3418 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3414 := r.ContainerType() - if yyct3414 == codecSelferValueTypeMap1234 { - yyl3414 := r.ReadMapStart() - if yyl3414 == 0 { + yyct3419 := r.ContainerType() + if yyct3419 == codecSelferValueTypeMap1234 { + yyl3419 := r.ReadMapStart() + if yyl3419 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3414, d) + x.codecDecodeSelfFromMap(yyl3419, d) } - } else if yyct3414 == codecSelferValueTypeArray1234 { - yyl3414 := r.ReadArrayStart() - if yyl3414 == 0 { + } else if yyct3419 == codecSelferValueTypeArray1234 { + yyl3419 := r.ReadArrayStart() + if yyl3419 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3414, d) + x.codecDecodeSelfFromArray(yyl3419, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42286,12 +42334,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3415Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3415Slc - var yyhl3415 bool = l >= 0 - for yyj3415 := 0; ; yyj3415++ { - if yyhl3415 { - if yyj3415 >= l { + var yys3420Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3420Slc + var yyhl3420 bool = l >= 0 + for yyj3420 := 0; ; yyj3420++ { + if yyhl3420 { + if yyj3420 >= l { break } } else { @@ -42300,10 +42348,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3415Slc = r.DecodeBytes(yys3415Slc, true, true) - yys3415 := string(yys3415Slc) + yys3420Slc = r.DecodeBytes(yys3420Slc, true, true) + yys3420 := string(yys3420Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3415 { + switch yys3420 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -42324,8 +42372,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym3418 := z.DecBinary() - _ = yym3418 + yym3423 := z.DecBinary() + _ = yym3423 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -42351,8 +42399,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3421 := z.DecBinary() - _ = yym3421 + yym3426 := z.DecBinary() + _ = yym3426 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -42367,17 +42415,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3423 := z.DecBinary() - _ = yym3423 + yym3428 := z.DecBinary() + _ = yym3428 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3415) - } // end switch yys3415 - } // end for yyj3415 + z.DecStructFieldNotFound(-1, yys3420) + } // end switch yys3420 + } // end for yyj3420 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42385,16 +42433,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3424 int - var yyb3424 bool - var yyhl3424 bool = l >= 0 - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + var yyj3429 int + var yyb3429 bool + var yyhl3429 bool = l >= 0 + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42409,13 +42457,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42428,20 +42476,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym3427 := z.DecBinary() - _ = yym3427 + yym3432 := z.DecBinary() + _ = yym3432 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42456,13 +42504,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42475,20 +42523,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym3430 := z.DecBinary() - _ = yym3430 + yym3435 := z.DecBinary() + _ = yym3435 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42501,25 +42549,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym3432 := z.DecBinary() - _ = yym3432 + yym3437 := z.DecBinary() + _ = yym3437 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } for { - yyj3424++ - if yyhl3424 { - yyb3424 = yyj3424 > l + yyj3429++ + if yyhl3429 { + yyb3429 = yyj3429 > l } else { - yyb3424 = r.CheckBreak() + yyb3429 = r.CheckBreak() } - if yyb3424 { + if yyb3429 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3424-1, "") + z.DecStructFieldNotFound(yyj3429-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42531,38 +42579,38 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3433 := z.EncBinary() - _ = yym3433 + yym3438 := z.EncBinary() + _ = yym3438 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3434 := !z.EncBinary() - yy2arr3434 := z.EncBasicHandle().StructToArray - var yyq3434 [4]bool - _, _, _ = yysep3434, yyq3434, yy2arr3434 - const yyr3434 bool = false - yyq3434[0] = x.User != "" - yyq3434[1] = x.Role != "" - yyq3434[2] = x.Type != "" - yyq3434[3] = x.Level != "" - var yynn3434 int - if yyr3434 || yy2arr3434 { + yysep3439 := !z.EncBinary() + yy2arr3439 := z.EncBasicHandle().StructToArray + var yyq3439 [4]bool + _, _, _ = yysep3439, yyq3439, yy2arr3439 + const yyr3439 bool = false + yyq3439[0] = x.User != "" + yyq3439[1] = x.Role != "" + yyq3439[2] = x.Type != "" + yyq3439[3] = x.Level != "" + var yynn3439 int + if yyr3439 || yy2arr3439 { r.EncodeArrayStart(4) } else { - yynn3434 = 0 - for _, b := range yyq3434 { + yynn3439 = 0 + for _, b := range yyq3439 { if b { - yynn3434++ + yynn3439++ } } - r.EncodeMapStart(yynn3434) - yynn3434 = 0 + r.EncodeMapStart(yynn3439) + yynn3439 = 0 } - if yyr3434 || yy2arr3434 { + if yyr3439 || yy2arr3439 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3434[0] { - yym3436 := z.EncBinary() - _ = yym3436 + if yyq3439[0] { + yym3441 := z.EncBinary() + _ = yym3441 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) @@ -42571,23 +42619,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3434[0] { + if yyq3439[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3437 := z.EncBinary() - _ = yym3437 + yym3442 := z.EncBinary() + _ = yym3442 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr3434 || yy2arr3434 { + if yyr3439 || yy2arr3439 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3434[1] { - yym3439 := z.EncBinary() - _ = yym3439 + if yyq3439[1] { + yym3444 := z.EncBinary() + _ = yym3444 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) @@ -42596,23 +42644,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3434[1] { + if yyq3439[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3440 := z.EncBinary() - _ = yym3440 + yym3445 := z.EncBinary() + _ = yym3445 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } } - if yyr3434 || yy2arr3434 { + if yyr3439 || yy2arr3439 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3434[2] { - yym3442 := z.EncBinary() - _ = yym3442 + if yyq3439[2] { + yym3447 := z.EncBinary() + _ = yym3447 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -42621,23 +42669,23 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3434[2] { + if yyq3439[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3443 := z.EncBinary() - _ = yym3443 + yym3448 := z.EncBinary() + _ = yym3448 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3434 || yy2arr3434 { + if yyr3439 || yy2arr3439 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3434[3] { - yym3445 := z.EncBinary() - _ = yym3445 + if yyq3439[3] { + yym3450 := z.EncBinary() + _ = yym3450 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -42646,19 +42694,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3434[3] { + if yyq3439[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3446 := z.EncBinary() - _ = yym3446 + yym3451 := z.EncBinary() + _ = yym3451 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr3434 || yy2arr3434 { + if yyr3439 || yy2arr3439 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42671,25 +42719,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3447 := z.DecBinary() - _ = yym3447 + yym3452 := z.DecBinary() + _ = yym3452 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3448 := r.ContainerType() - if yyct3448 == codecSelferValueTypeMap1234 { - yyl3448 := r.ReadMapStart() - if yyl3448 == 0 { + yyct3453 := r.ContainerType() + if yyct3453 == codecSelferValueTypeMap1234 { + yyl3453 := r.ReadMapStart() + if yyl3453 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3448, d) + x.codecDecodeSelfFromMap(yyl3453, d) } - } else if yyct3448 == codecSelferValueTypeArray1234 { - yyl3448 := r.ReadArrayStart() - if yyl3448 == 0 { + } else if yyct3453 == codecSelferValueTypeArray1234 { + yyl3453 := r.ReadArrayStart() + if yyl3453 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3448, d) + x.codecDecodeSelfFromArray(yyl3453, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42701,12 +42749,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3449Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3449Slc - var yyhl3449 bool = l >= 0 - for yyj3449 := 0; ; yyj3449++ { - if yyhl3449 { - if yyj3449 >= l { + var yys3454Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3454Slc + var yyhl3454 bool = l >= 0 + for yyj3454 := 0; ; yyj3454++ { + if yyhl3454 { + if yyj3454 >= l { break } } else { @@ -42715,10 +42763,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3449Slc = r.DecodeBytes(yys3449Slc, true, true) - yys3449 := string(yys3449Slc) + yys3454Slc = r.DecodeBytes(yys3454Slc, true, true) + yys3454 := string(yys3454Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3449 { + switch yys3454 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -42744,9 +42792,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3449) - } // end switch yys3449 - } // end for yyj3449 + z.DecStructFieldNotFound(-1, yys3454) + } // end switch yys3454 + } // end for yyj3454 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42754,16 +42802,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3454 int - var yyb3454 bool - var yyhl3454 bool = l >= 0 - yyj3454++ - if yyhl3454 { - yyb3454 = yyj3454 > l + var yyj3459 int + var yyb3459 bool + var yyhl3459 bool = l >= 0 + yyj3459++ + if yyhl3459 { + yyb3459 = yyj3459 > l } else { - yyb3454 = r.CheckBreak() + yyb3459 = r.CheckBreak() } - if yyb3454 { + if yyb3459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42773,13 +42821,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj3454++ - if yyhl3454 { - yyb3454 = yyj3454 > l + yyj3459++ + if yyhl3459 { + yyb3459 = yyj3459 > l } else { - yyb3454 = r.CheckBreak() + yyb3459 = r.CheckBreak() } - if yyb3454 { + if yyb3459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42789,13 +42837,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj3454++ - if yyhl3454 { - yyb3454 = yyj3454 > l + yyj3459++ + if yyhl3459 { + yyb3459 = yyj3459 > l } else { - yyb3454 = r.CheckBreak() + yyb3459 = r.CheckBreak() } - if yyb3454 { + if yyb3459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42805,13 +42853,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj3454++ - if yyhl3454 { - yyb3454 = yyj3454 > l + yyj3459++ + if yyhl3459 { + yyb3459 = yyj3459 > l } else { - yyb3454 = r.CheckBreak() + yyb3459 = r.CheckBreak() } - if yyb3454 { + if yyb3459 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42822,17 +42870,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj3454++ - if yyhl3454 { - yyb3454 = yyj3454 > l + yyj3459++ + if yyhl3459 { + yyb3459 = yyj3459 > l } else { - yyb3454 = r.CheckBreak() + yyb3459 = r.CheckBreak() } - if yyb3454 { + if yyb3459 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3454-1, "") + z.DecStructFieldNotFound(yyj3459-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42844,37 +42892,37 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3459 := z.EncBinary() - _ = yym3459 + yym3464 := z.EncBinary() + _ = yym3464 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3460 := !z.EncBinary() - yy2arr3460 := z.EncBasicHandle().StructToArray - var yyq3460 [5]bool - _, _, _ = yysep3460, yyq3460, yy2arr3460 - const yyr3460 bool = false - yyq3460[0] = x.Kind != "" - yyq3460[1] = x.APIVersion != "" - yyq3460[2] = true - var yynn3460 int - if yyr3460 || yy2arr3460 { + yysep3465 := !z.EncBinary() + yy2arr3465 := z.EncBasicHandle().StructToArray + var yyq3465 [5]bool + _, _, _ = yysep3465, yyq3465, yy2arr3465 + const yyr3465 bool = false + yyq3465[0] = x.Kind != "" + yyq3465[1] = x.APIVersion != "" + yyq3465[2] = true + var yynn3465 int + if yyr3465 || yy2arr3465 { r.EncodeArrayStart(5) } else { - yynn3460 = 2 - for _, b := range yyq3460 { + yynn3465 = 2 + for _, b := range yyq3465 { if b { - yynn3460++ + yynn3465++ } } - r.EncodeMapStart(yynn3460) - yynn3460 = 0 + r.EncodeMapStart(yynn3465) + yynn3465 = 0 } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3460[0] { - yym3462 := z.EncBinary() - _ = yym3462 + if yyq3465[0] { + yym3467 := z.EncBinary() + _ = yym3467 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) @@ -42883,23 +42931,23 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3460[0] { + if yyq3465[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3463 := z.EncBinary() - _ = yym3463 + yym3468 := z.EncBinary() + _ = yym3468 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3460[1] { - yym3465 := z.EncBinary() - _ = yym3465 + if yyq3465[1] { + yym3470 := z.EncBinary() + _ = yym3470 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) @@ -42908,39 +42956,39 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3460[1] { + if yyq3465[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3466 := z.EncBinary() - _ = yym3466 + yym3471 := z.EncBinary() + _ = yym3471 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3460[2] { - yy3468 := &x.ObjectMeta - yy3468.CodecEncodeSelf(e) + if yyq3465[2] { + yy3473 := &x.ObjectMeta + yy3473.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3460[2] { + if yyq3465[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3469 := &x.ObjectMeta - yy3469.CodecEncodeSelf(e) + yy3474 := &x.ObjectMeta + yy3474.CodecEncodeSelf(e) } } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3471 := z.EncBinary() - _ = yym3471 + yym3476 := z.EncBinary() + _ = yym3476 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -42949,20 +42997,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3472 := z.EncBinary() - _ = yym3472 + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym3474 := z.EncBinary() - _ = yym3474 + yym3479 := z.EncBinary() + _ = yym3479 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -42975,15 +43023,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym3475 := z.EncBinary() - _ = yym3475 + yym3480 := z.EncBinary() + _ = yym3480 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr3460 || yy2arr3460 { + if yyr3465 || yy2arr3465 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42996,25 +43044,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3476 := z.DecBinary() - _ = yym3476 + yym3481 := z.DecBinary() + _ = yym3481 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3477 := r.ContainerType() - if yyct3477 == codecSelferValueTypeMap1234 { - yyl3477 := r.ReadMapStart() - if yyl3477 == 0 { + yyct3482 := r.ContainerType() + if yyct3482 == codecSelferValueTypeMap1234 { + yyl3482 := r.ReadMapStart() + if yyl3482 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3477, d) + x.codecDecodeSelfFromMap(yyl3482, d) } - } else if yyct3477 == codecSelferValueTypeArray1234 { - yyl3477 := r.ReadArrayStart() - if yyl3477 == 0 { + } else if yyct3482 == codecSelferValueTypeArray1234 { + yyl3482 := r.ReadArrayStart() + if yyl3482 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3477, d) + x.codecDecodeSelfFromArray(yyl3482, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43026,12 +43074,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3478Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3478Slc - var yyhl3478 bool = l >= 0 - for yyj3478 := 0; ; yyj3478++ { - if yyhl3478 { - if yyj3478 >= l { + var yys3483Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3483Slc + var yyhl3483 bool = l >= 0 + for yyj3483 := 0; ; yyj3483++ { + if yyhl3483 { + if yyj3483 >= l { break } } else { @@ -43040,10 +43088,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3478Slc = r.DecodeBytes(yys3478Slc, true, true) - yys3478 := string(yys3478Slc) + yys3483Slc = r.DecodeBytes(yys3483Slc, true, true) + yys3483 := string(yys3483Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3478 { + switch yys3483 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43060,8 +43108,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3481 := &x.ObjectMeta - yyv3481.CodecDecodeSelf(d) + yyv3486 := &x.ObjectMeta + yyv3486.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -43073,18 +43121,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3483 := &x.Data - yym3484 := z.DecBinary() - _ = yym3484 + yyv3488 := &x.Data + yym3489 := z.DecBinary() + _ = yym3489 if false { } else { - *yyv3483 = r.DecodeBytes(*(*[]byte)(yyv3483), false, false) + *yyv3488 = r.DecodeBytes(*(*[]byte)(yyv3488), false, false) } } default: - z.DecStructFieldNotFound(-1, yys3478) - } // end switch yys3478 - } // end for yyj3478 + z.DecStructFieldNotFound(-1, yys3483) + } // end switch yys3483 + } // end for yyj3483 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43092,16 +43140,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3485 int - var yyb3485 bool - var yyhl3485 bool = l >= 0 - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + var yyj3490 int + var yyb3490 bool + var yyhl3490 bool = l >= 0 + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43111,13 +43159,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43127,13 +43175,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43141,16 +43189,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3488 := &x.ObjectMeta - yyv3488.CodecDecodeSelf(d) + yyv3493 := &x.ObjectMeta + yyv3493.CodecDecodeSelf(d) } - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43160,13 +43208,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43174,26 +43222,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv3490 := &x.Data - yym3491 := z.DecBinary() - _ = yym3491 + yyv3495 := &x.Data + yym3496 := z.DecBinary() + _ = yym3496 if false { } else { - *yyv3490 = r.DecodeBytes(*(*[]byte)(yyv3490), false, false) + *yyv3495 = r.DecodeBytes(*(*[]byte)(yyv3495), false, false) } } for { - yyj3485++ - if yyhl3485 { - yyb3485 = yyj3485 > l + yyj3490++ + if yyhl3490 { + yyb3490 = yyj3490 > l } else { - yyb3485 = r.CheckBreak() + yyb3490 = r.CheckBreak() } - if yyb3485 { + if yyb3490 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3485-1, "") + z.DecStructFieldNotFound(yyj3490-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43203,9 +43251,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3492 := range v { + for _, yyv3497 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3492.CodecEncodeSelf(e) + yyv3497.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43215,75 +43263,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3493 := *v - yyh3493, yyl3493 := z.DecSliceHelperStart() - var yyc3493 bool - if yyl3493 == 0 { - if yyv3493 == nil { - yyv3493 = []PersistentVolumeAccessMode{} - yyc3493 = true - } else if len(yyv3493) != 0 { - yyv3493 = yyv3493[:0] - yyc3493 = true + yyv3498 := *v + yyh3498, yyl3498 := z.DecSliceHelperStart() + var yyc3498 bool + if yyl3498 == 0 { + if yyv3498 == nil { + yyv3498 = []PersistentVolumeAccessMode{} + yyc3498 = true + } else if len(yyv3498) != 0 { + yyv3498 = yyv3498[:0] + yyc3498 = true } - } else if yyl3493 > 0 { - var yyrr3493, yyrl3493 int - var yyrt3493 bool - if yyl3493 > cap(yyv3493) { + } else if yyl3498 > 0 { + var yyrr3498, yyrl3498 int + var yyrt3498 bool + if yyl3498 > cap(yyv3498) { - yyrl3493, yyrt3493 = z.DecInferLen(yyl3493, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3493 { - if yyrl3493 <= cap(yyv3493) { - yyv3493 = yyv3493[:yyrl3493] + yyrl3498, yyrt3498 = z.DecInferLen(yyl3498, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3498 { + if yyrl3498 <= cap(yyv3498) { + yyv3498 = yyv3498[:yyrl3498] } else { - yyv3493 = make([]PersistentVolumeAccessMode, yyrl3493) + yyv3498 = make([]PersistentVolumeAccessMode, yyrl3498) } } else { - yyv3493 = make([]PersistentVolumeAccessMode, yyrl3493) + yyv3498 = make([]PersistentVolumeAccessMode, yyrl3498) } - yyc3493 = true - yyrr3493 = len(yyv3493) - } else if yyl3493 != len(yyv3493) { - yyv3493 = yyv3493[:yyl3493] - yyc3493 = true + yyc3498 = true + yyrr3498 = len(yyv3498) + } else if yyl3498 != len(yyv3498) { + yyv3498 = yyv3498[:yyl3498] + yyc3498 = true } - yyj3493 := 0 - for ; yyj3493 < yyrr3493; yyj3493++ { - yyh3493.ElemContainerState(yyj3493) + yyj3498 := 0 + for ; yyj3498 < yyrr3498; yyj3498++ { + yyh3498.ElemContainerState(yyj3498) if r.TryDecodeAsNil() { - yyv3493[yyj3493] = "" + yyv3498[yyj3498] = "" } else { - yyv3493[yyj3493] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3498[yyj3498] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt3493 { - for ; yyj3493 < yyl3493; yyj3493++ { - yyv3493 = append(yyv3493, "") - yyh3493.ElemContainerState(yyj3493) + if yyrt3498 { + for ; yyj3498 < yyl3498; yyj3498++ { + yyv3498 = append(yyv3498, "") + yyh3498.ElemContainerState(yyj3498) if r.TryDecodeAsNil() { - yyv3493[yyj3493] = "" + yyv3498[yyj3498] = "" } else { - yyv3493[yyj3493] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3498[yyj3498] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj3493 := 0 - for ; !r.CheckBreak(); yyj3493++ { + yyj3498 := 0 + for ; !r.CheckBreak(); yyj3498++ { - if yyj3493 >= len(yyv3493) { - yyv3493 = append(yyv3493, "") // var yyz3493 PersistentVolumeAccessMode - yyc3493 = true + if yyj3498 >= len(yyv3498) { + yyv3498 = append(yyv3498, "") // var yyz3498 PersistentVolumeAccessMode + yyc3498 = true } - yyh3493.ElemContainerState(yyj3493) - if yyj3493 < len(yyv3493) { + yyh3498.ElemContainerState(yyj3498) + if yyj3498 < len(yyv3498) { if r.TryDecodeAsNil() { - yyv3493[yyj3493] = "" + yyv3498[yyj3498] = "" } else { - yyv3493[yyj3493] = PersistentVolumeAccessMode(r.DecodeString()) + yyv3498[yyj3498] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -43291,17 +43339,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj3493 < len(yyv3493) { - yyv3493 = yyv3493[:yyj3493] - yyc3493 = true - } else if yyj3493 == 0 && yyv3493 == nil { - yyv3493 = []PersistentVolumeAccessMode{} - yyc3493 = true + if yyj3498 < len(yyv3498) { + yyv3498 = yyv3498[:yyj3498] + yyc3498 = true + } else if yyj3498 == 0 && yyv3498 == nil { + yyv3498 = []PersistentVolumeAccessMode{} + yyc3498 = true } } - yyh3493.End() - if yyc3493 { - *v = yyv3493 + yyh3498.End() + if yyc3498 { + *v = yyv3498 } } @@ -43310,10 +43358,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3497 := range v { + for _, yyv3502 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3498 := &yyv3497 - yy3498.CodecEncodeSelf(e) + yy3503 := &yyv3502 + yy3503.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43323,83 +43371,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3499 := *v - yyh3499, yyl3499 := z.DecSliceHelperStart() - var yyc3499 bool - if yyl3499 == 0 { - if yyv3499 == nil { - yyv3499 = []PersistentVolume{} - yyc3499 = true - } else if len(yyv3499) != 0 { - yyv3499 = yyv3499[:0] - yyc3499 = true + yyv3504 := *v + yyh3504, yyl3504 := z.DecSliceHelperStart() + var yyc3504 bool + if yyl3504 == 0 { + if yyv3504 == nil { + yyv3504 = []PersistentVolume{} + yyc3504 = true + } else if len(yyv3504) != 0 { + yyv3504 = yyv3504[:0] + yyc3504 = true } - } else if yyl3499 > 0 { - var yyrr3499, yyrl3499 int - var yyrt3499 bool - if yyl3499 > cap(yyv3499) { + } else if yyl3504 > 0 { + var yyrr3504, yyrl3504 int + var yyrt3504 bool + if yyl3504 > cap(yyv3504) { - yyrg3499 := len(yyv3499) > 0 - yyv23499 := yyv3499 - yyrl3499, yyrt3499 = z.DecInferLen(yyl3499, z.DecBasicHandle().MaxInitLen, 384) - if yyrt3499 { - if yyrl3499 <= cap(yyv3499) { - yyv3499 = yyv3499[:yyrl3499] + yyrg3504 := len(yyv3504) > 0 + yyv23504 := yyv3504 + yyrl3504, yyrt3504 = z.DecInferLen(yyl3504, z.DecBasicHandle().MaxInitLen, 384) + if yyrt3504 { + if yyrl3504 <= cap(yyv3504) { + yyv3504 = yyv3504[:yyrl3504] } else { - yyv3499 = make([]PersistentVolume, yyrl3499) + yyv3504 = make([]PersistentVolume, yyrl3504) } } else { - yyv3499 = make([]PersistentVolume, yyrl3499) + yyv3504 = make([]PersistentVolume, yyrl3504) } - yyc3499 = true - yyrr3499 = len(yyv3499) - if yyrg3499 { - copy(yyv3499, yyv23499) + yyc3504 = true + yyrr3504 = len(yyv3504) + if yyrg3504 { + copy(yyv3504, yyv23504) } - } else if yyl3499 != len(yyv3499) { - yyv3499 = yyv3499[:yyl3499] - yyc3499 = true + } else if yyl3504 != len(yyv3504) { + yyv3504 = yyv3504[:yyl3504] + yyc3504 = true } - yyj3499 := 0 - for ; yyj3499 < yyrr3499; yyj3499++ { - yyh3499.ElemContainerState(yyj3499) + yyj3504 := 0 + for ; yyj3504 < yyrr3504; yyj3504++ { + yyh3504.ElemContainerState(yyj3504) if r.TryDecodeAsNil() { - yyv3499[yyj3499] = PersistentVolume{} + yyv3504[yyj3504] = PersistentVolume{} } else { - yyv3500 := &yyv3499[yyj3499] - yyv3500.CodecDecodeSelf(d) + yyv3505 := &yyv3504[yyj3504] + yyv3505.CodecDecodeSelf(d) } } - if yyrt3499 { - for ; yyj3499 < yyl3499; yyj3499++ { - yyv3499 = append(yyv3499, PersistentVolume{}) - yyh3499.ElemContainerState(yyj3499) + if yyrt3504 { + for ; yyj3504 < yyl3504; yyj3504++ { + yyv3504 = append(yyv3504, PersistentVolume{}) + yyh3504.ElemContainerState(yyj3504) if r.TryDecodeAsNil() { - yyv3499[yyj3499] = PersistentVolume{} + yyv3504[yyj3504] = PersistentVolume{} } else { - yyv3501 := &yyv3499[yyj3499] - yyv3501.CodecDecodeSelf(d) + yyv3506 := &yyv3504[yyj3504] + yyv3506.CodecDecodeSelf(d) } } } } else { - yyj3499 := 0 - for ; !r.CheckBreak(); yyj3499++ { + yyj3504 := 0 + for ; !r.CheckBreak(); yyj3504++ { - if yyj3499 >= len(yyv3499) { - yyv3499 = append(yyv3499, PersistentVolume{}) // var yyz3499 PersistentVolume - yyc3499 = true + if yyj3504 >= len(yyv3504) { + yyv3504 = append(yyv3504, PersistentVolume{}) // var yyz3504 PersistentVolume + yyc3504 = true } - yyh3499.ElemContainerState(yyj3499) - if yyj3499 < len(yyv3499) { + yyh3504.ElemContainerState(yyj3504) + if yyj3504 < len(yyv3504) { if r.TryDecodeAsNil() { - yyv3499[yyj3499] = PersistentVolume{} + yyv3504[yyj3504] = PersistentVolume{} } else { - yyv3502 := &yyv3499[yyj3499] - yyv3502.CodecDecodeSelf(d) + yyv3507 := &yyv3504[yyj3504] + yyv3507.CodecDecodeSelf(d) } } else { @@ -43407,17 +43455,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj3499 < len(yyv3499) { - yyv3499 = yyv3499[:yyj3499] - yyc3499 = true - } else if yyj3499 == 0 && yyv3499 == nil { - yyv3499 = []PersistentVolume{} - yyc3499 = true + if yyj3504 < len(yyv3504) { + yyv3504 = yyv3504[:yyj3504] + yyc3504 = true + } else if yyj3504 == 0 && yyv3504 == nil { + yyv3504 = []PersistentVolume{} + yyc3504 = true } } - yyh3499.End() - if yyc3499 { - *v = yyv3499 + yyh3504.End() + if yyc3504 { + *v = yyv3504 } } @@ -43426,10 +43474,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3503 := range v { + for _, yyv3508 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3504 := &yyv3503 - yy3504.CodecEncodeSelf(e) + yy3509 := &yyv3508 + yy3509.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43439,83 +43487,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3505 := *v - yyh3505, yyl3505 := z.DecSliceHelperStart() - var yyc3505 bool - if yyl3505 == 0 { - if yyv3505 == nil { - yyv3505 = []PersistentVolumeClaim{} - yyc3505 = true - } else if len(yyv3505) != 0 { - yyv3505 = yyv3505[:0] - yyc3505 = true + yyv3510 := *v + yyh3510, yyl3510 := z.DecSliceHelperStart() + var yyc3510 bool + if yyl3510 == 0 { + if yyv3510 == nil { + yyv3510 = []PersistentVolumeClaim{} + yyc3510 = true + } else if len(yyv3510) != 0 { + yyv3510 = yyv3510[:0] + yyc3510 = true } - } else if yyl3505 > 0 { - var yyrr3505, yyrl3505 int - var yyrt3505 bool - if yyl3505 > cap(yyv3505) { + } else if yyl3510 > 0 { + var yyrr3510, yyrl3510 int + var yyrt3510 bool + if yyl3510 > cap(yyv3510) { - yyrg3505 := len(yyv3505) > 0 - yyv23505 := yyv3505 - yyrl3505, yyrt3505 = z.DecInferLen(yyl3505, z.DecBasicHandle().MaxInitLen, 296) - if yyrt3505 { - if yyrl3505 <= cap(yyv3505) { - yyv3505 = yyv3505[:yyrl3505] + yyrg3510 := len(yyv3510) > 0 + yyv23510 := yyv3510 + yyrl3510, yyrt3510 = z.DecInferLen(yyl3510, z.DecBasicHandle().MaxInitLen, 296) + if yyrt3510 { + if yyrl3510 <= cap(yyv3510) { + yyv3510 = yyv3510[:yyrl3510] } else { - yyv3505 = make([]PersistentVolumeClaim, yyrl3505) + yyv3510 = make([]PersistentVolumeClaim, yyrl3510) } } else { - yyv3505 = make([]PersistentVolumeClaim, yyrl3505) + yyv3510 = make([]PersistentVolumeClaim, yyrl3510) } - yyc3505 = true - yyrr3505 = len(yyv3505) - if yyrg3505 { - copy(yyv3505, yyv23505) + yyc3510 = true + yyrr3510 = len(yyv3510) + if yyrg3510 { + copy(yyv3510, yyv23510) } - } else if yyl3505 != len(yyv3505) { - yyv3505 = yyv3505[:yyl3505] - yyc3505 = true + } else if yyl3510 != len(yyv3510) { + yyv3510 = yyv3510[:yyl3510] + yyc3510 = true } - yyj3505 := 0 - for ; yyj3505 < yyrr3505; yyj3505++ { - yyh3505.ElemContainerState(yyj3505) + yyj3510 := 0 + for ; yyj3510 < yyrr3510; yyj3510++ { + yyh3510.ElemContainerState(yyj3510) if r.TryDecodeAsNil() { - yyv3505[yyj3505] = PersistentVolumeClaim{} + yyv3510[yyj3510] = PersistentVolumeClaim{} } else { - yyv3506 := &yyv3505[yyj3505] - yyv3506.CodecDecodeSelf(d) + yyv3511 := &yyv3510[yyj3510] + yyv3511.CodecDecodeSelf(d) } } - if yyrt3505 { - for ; yyj3505 < yyl3505; yyj3505++ { - yyv3505 = append(yyv3505, PersistentVolumeClaim{}) - yyh3505.ElemContainerState(yyj3505) + if yyrt3510 { + for ; yyj3510 < yyl3510; yyj3510++ { + yyv3510 = append(yyv3510, PersistentVolumeClaim{}) + yyh3510.ElemContainerState(yyj3510) if r.TryDecodeAsNil() { - yyv3505[yyj3505] = PersistentVolumeClaim{} + yyv3510[yyj3510] = PersistentVolumeClaim{} } else { - yyv3507 := &yyv3505[yyj3505] - yyv3507.CodecDecodeSelf(d) + yyv3512 := &yyv3510[yyj3510] + yyv3512.CodecDecodeSelf(d) } } } } else { - yyj3505 := 0 - for ; !r.CheckBreak(); yyj3505++ { + yyj3510 := 0 + for ; !r.CheckBreak(); yyj3510++ { - if yyj3505 >= len(yyv3505) { - yyv3505 = append(yyv3505, PersistentVolumeClaim{}) // var yyz3505 PersistentVolumeClaim - yyc3505 = true + if yyj3510 >= len(yyv3510) { + yyv3510 = append(yyv3510, PersistentVolumeClaim{}) // var yyz3510 PersistentVolumeClaim + yyc3510 = true } - yyh3505.ElemContainerState(yyj3505) - if yyj3505 < len(yyv3505) { + yyh3510.ElemContainerState(yyj3510) + if yyj3510 < len(yyv3510) { if r.TryDecodeAsNil() { - yyv3505[yyj3505] = PersistentVolumeClaim{} + yyv3510[yyj3510] = PersistentVolumeClaim{} } else { - yyv3508 := &yyv3505[yyj3505] - yyv3508.CodecDecodeSelf(d) + yyv3513 := &yyv3510[yyj3510] + yyv3513.CodecDecodeSelf(d) } } else { @@ -43523,17 +43571,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj3505 < len(yyv3505) { - yyv3505 = yyv3505[:yyj3505] - yyc3505 = true - } else if yyj3505 == 0 && yyv3505 == nil { - yyv3505 = []PersistentVolumeClaim{} - yyc3505 = true + if yyj3510 < len(yyv3510) { + yyv3510 = yyv3510[:yyj3510] + yyc3510 = true + } else if yyj3510 == 0 && yyv3510 == nil { + yyv3510 = []PersistentVolumeClaim{} + yyc3510 = true } } - yyh3505.End() - if yyc3505 { - *v = yyv3505 + yyh3510.End() + if yyc3510 { + *v = yyv3510 } } @@ -43542,9 +43590,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3509 := range v { + for _, yyv3514 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3509.CodecEncodeSelf(e) + yyv3514.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43554,75 +43602,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3510 := *v - yyh3510, yyl3510 := z.DecSliceHelperStart() - var yyc3510 bool - if yyl3510 == 0 { - if yyv3510 == nil { - yyv3510 = []Capability{} - yyc3510 = true - } else if len(yyv3510) != 0 { - yyv3510 = yyv3510[:0] - yyc3510 = true + yyv3515 := *v + yyh3515, yyl3515 := z.DecSliceHelperStart() + var yyc3515 bool + if yyl3515 == 0 { + if yyv3515 == nil { + yyv3515 = []Capability{} + yyc3515 = true + } else if len(yyv3515) != 0 { + yyv3515 = yyv3515[:0] + yyc3515 = true } - } else if yyl3510 > 0 { - var yyrr3510, yyrl3510 int - var yyrt3510 bool - if yyl3510 > cap(yyv3510) { + } else if yyl3515 > 0 { + var yyrr3515, yyrl3515 int + var yyrt3515 bool + if yyl3515 > cap(yyv3515) { - yyrl3510, yyrt3510 = z.DecInferLen(yyl3510, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3510 { - if yyrl3510 <= cap(yyv3510) { - yyv3510 = yyv3510[:yyrl3510] + yyrl3515, yyrt3515 = z.DecInferLen(yyl3515, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3515 { + if yyrl3515 <= cap(yyv3515) { + yyv3515 = yyv3515[:yyrl3515] } else { - yyv3510 = make([]Capability, yyrl3510) + yyv3515 = make([]Capability, yyrl3515) } } else { - yyv3510 = make([]Capability, yyrl3510) + yyv3515 = make([]Capability, yyrl3515) } - yyc3510 = true - yyrr3510 = len(yyv3510) - } else if yyl3510 != len(yyv3510) { - yyv3510 = yyv3510[:yyl3510] - yyc3510 = true + yyc3515 = true + yyrr3515 = len(yyv3515) + } else if yyl3515 != len(yyv3515) { + yyv3515 = yyv3515[:yyl3515] + yyc3515 = true } - yyj3510 := 0 - for ; yyj3510 < yyrr3510; yyj3510++ { - yyh3510.ElemContainerState(yyj3510) + yyj3515 := 0 + for ; yyj3515 < yyrr3515; yyj3515++ { + yyh3515.ElemContainerState(yyj3515) if r.TryDecodeAsNil() { - yyv3510[yyj3510] = "" + yyv3515[yyj3515] = "" } else { - yyv3510[yyj3510] = Capability(r.DecodeString()) + yyv3515[yyj3515] = Capability(r.DecodeString()) } } - if yyrt3510 { - for ; yyj3510 < yyl3510; yyj3510++ { - yyv3510 = append(yyv3510, "") - yyh3510.ElemContainerState(yyj3510) + if yyrt3515 { + for ; yyj3515 < yyl3515; yyj3515++ { + yyv3515 = append(yyv3515, "") + yyh3515.ElemContainerState(yyj3515) if r.TryDecodeAsNil() { - yyv3510[yyj3510] = "" + yyv3515[yyj3515] = "" } else { - yyv3510[yyj3510] = Capability(r.DecodeString()) + yyv3515[yyj3515] = Capability(r.DecodeString()) } } } } else { - yyj3510 := 0 - for ; !r.CheckBreak(); yyj3510++ { + yyj3515 := 0 + for ; !r.CheckBreak(); yyj3515++ { - if yyj3510 >= len(yyv3510) { - yyv3510 = append(yyv3510, "") // var yyz3510 Capability - yyc3510 = true + if yyj3515 >= len(yyv3515) { + yyv3515 = append(yyv3515, "") // var yyz3515 Capability + yyc3515 = true } - yyh3510.ElemContainerState(yyj3510) - if yyj3510 < len(yyv3510) { + yyh3515.ElemContainerState(yyj3515) + if yyj3515 < len(yyv3515) { if r.TryDecodeAsNil() { - yyv3510[yyj3510] = "" + yyv3515[yyj3515] = "" } else { - yyv3510[yyj3510] = Capability(r.DecodeString()) + yyv3515[yyj3515] = Capability(r.DecodeString()) } } else { @@ -43630,17 +43678,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj3510 < len(yyv3510) { - yyv3510 = yyv3510[:yyj3510] - yyc3510 = true - } else if yyj3510 == 0 && yyv3510 == nil { - yyv3510 = []Capability{} - yyc3510 = true + if yyj3515 < len(yyv3515) { + yyv3515 = yyv3515[:yyj3515] + yyc3515 = true + } else if yyj3515 == 0 && yyv3515 == nil { + yyv3515 = []Capability{} + yyc3515 = true } } - yyh3510.End() - if yyc3510 { - *v = yyv3510 + yyh3515.End() + if yyc3515 { + *v = yyv3515 } } @@ -43649,10 +43697,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3514 := range v { + for _, yyv3519 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3515 := &yyv3514 - yy3515.CodecEncodeSelf(e) + yy3520 := &yyv3519 + yy3520.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43662,83 +43710,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3516 := *v - yyh3516, yyl3516 := z.DecSliceHelperStart() - var yyc3516 bool - if yyl3516 == 0 { - if yyv3516 == nil { - yyv3516 = []ContainerPort{} - yyc3516 = true - } else if len(yyv3516) != 0 { - yyv3516 = yyv3516[:0] - yyc3516 = true + yyv3521 := *v + yyh3521, yyl3521 := z.DecSliceHelperStart() + var yyc3521 bool + if yyl3521 == 0 { + if yyv3521 == nil { + yyv3521 = []ContainerPort{} + yyc3521 = true + } else if len(yyv3521) != 0 { + yyv3521 = yyv3521[:0] + yyc3521 = true } - } else if yyl3516 > 0 { - var yyrr3516, yyrl3516 int - var yyrt3516 bool - if yyl3516 > cap(yyv3516) { + } else if yyl3521 > 0 { + var yyrr3521, yyrl3521 int + var yyrt3521 bool + if yyl3521 > cap(yyv3521) { - yyrg3516 := len(yyv3516) > 0 - yyv23516 := yyv3516 - yyrl3516, yyrt3516 = z.DecInferLen(yyl3516, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3516 { - if yyrl3516 <= cap(yyv3516) { - yyv3516 = yyv3516[:yyrl3516] + yyrg3521 := len(yyv3521) > 0 + yyv23521 := yyv3521 + yyrl3521, yyrt3521 = z.DecInferLen(yyl3521, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3521 { + if yyrl3521 <= cap(yyv3521) { + yyv3521 = yyv3521[:yyrl3521] } else { - yyv3516 = make([]ContainerPort, yyrl3516) + yyv3521 = make([]ContainerPort, yyrl3521) } } else { - yyv3516 = make([]ContainerPort, yyrl3516) + yyv3521 = make([]ContainerPort, yyrl3521) } - yyc3516 = true - yyrr3516 = len(yyv3516) - if yyrg3516 { - copy(yyv3516, yyv23516) + yyc3521 = true + yyrr3521 = len(yyv3521) + if yyrg3521 { + copy(yyv3521, yyv23521) } - } else if yyl3516 != len(yyv3516) { - yyv3516 = yyv3516[:yyl3516] - yyc3516 = true + } else if yyl3521 != len(yyv3521) { + yyv3521 = yyv3521[:yyl3521] + yyc3521 = true } - yyj3516 := 0 - for ; yyj3516 < yyrr3516; yyj3516++ { - yyh3516.ElemContainerState(yyj3516) + yyj3521 := 0 + for ; yyj3521 < yyrr3521; yyj3521++ { + yyh3521.ElemContainerState(yyj3521) if r.TryDecodeAsNil() { - yyv3516[yyj3516] = ContainerPort{} + yyv3521[yyj3521] = ContainerPort{} } else { - yyv3517 := &yyv3516[yyj3516] - yyv3517.CodecDecodeSelf(d) + yyv3522 := &yyv3521[yyj3521] + yyv3522.CodecDecodeSelf(d) } } - if yyrt3516 { - for ; yyj3516 < yyl3516; yyj3516++ { - yyv3516 = append(yyv3516, ContainerPort{}) - yyh3516.ElemContainerState(yyj3516) + if yyrt3521 { + for ; yyj3521 < yyl3521; yyj3521++ { + yyv3521 = append(yyv3521, ContainerPort{}) + yyh3521.ElemContainerState(yyj3521) if r.TryDecodeAsNil() { - yyv3516[yyj3516] = ContainerPort{} + yyv3521[yyj3521] = ContainerPort{} } else { - yyv3518 := &yyv3516[yyj3516] - yyv3518.CodecDecodeSelf(d) + yyv3523 := &yyv3521[yyj3521] + yyv3523.CodecDecodeSelf(d) } } } } else { - yyj3516 := 0 - for ; !r.CheckBreak(); yyj3516++ { + yyj3521 := 0 + for ; !r.CheckBreak(); yyj3521++ { - if yyj3516 >= len(yyv3516) { - yyv3516 = append(yyv3516, ContainerPort{}) // var yyz3516 ContainerPort - yyc3516 = true + if yyj3521 >= len(yyv3521) { + yyv3521 = append(yyv3521, ContainerPort{}) // var yyz3521 ContainerPort + yyc3521 = true } - yyh3516.ElemContainerState(yyj3516) - if yyj3516 < len(yyv3516) { + yyh3521.ElemContainerState(yyj3521) + if yyj3521 < len(yyv3521) { if r.TryDecodeAsNil() { - yyv3516[yyj3516] = ContainerPort{} + yyv3521[yyj3521] = ContainerPort{} } else { - yyv3519 := &yyv3516[yyj3516] - yyv3519.CodecDecodeSelf(d) + yyv3524 := &yyv3521[yyj3521] + yyv3524.CodecDecodeSelf(d) } } else { @@ -43746,17 +43794,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj3516 < len(yyv3516) { - yyv3516 = yyv3516[:yyj3516] - yyc3516 = true - } else if yyj3516 == 0 && yyv3516 == nil { - yyv3516 = []ContainerPort{} - yyc3516 = true + if yyj3521 < len(yyv3521) { + yyv3521 = yyv3521[:yyj3521] + yyc3521 = true + } else if yyj3521 == 0 && yyv3521 == nil { + yyv3521 = []ContainerPort{} + yyc3521 = true } } - yyh3516.End() - if yyc3516 { - *v = yyv3516 + yyh3521.End() + if yyc3521 { + *v = yyv3521 } } @@ -43765,10 +43813,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3520 := range v { + for _, yyv3525 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3521 := &yyv3520 - yy3521.CodecEncodeSelf(e) + yy3526 := &yyv3525 + yy3526.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43778,83 +43826,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3522 := *v - yyh3522, yyl3522 := z.DecSliceHelperStart() - var yyc3522 bool - if yyl3522 == 0 { - if yyv3522 == nil { - yyv3522 = []EnvVar{} - yyc3522 = true - } else if len(yyv3522) != 0 { - yyv3522 = yyv3522[:0] - yyc3522 = true + yyv3527 := *v + yyh3527, yyl3527 := z.DecSliceHelperStart() + var yyc3527 bool + if yyl3527 == 0 { + if yyv3527 == nil { + yyv3527 = []EnvVar{} + yyc3527 = true + } else if len(yyv3527) != 0 { + yyv3527 = yyv3527[:0] + yyc3527 = true } - } else if yyl3522 > 0 { - var yyrr3522, yyrl3522 int - var yyrt3522 bool - if yyl3522 > cap(yyv3522) { + } else if yyl3527 > 0 { + var yyrr3527, yyrl3527 int + var yyrt3527 bool + if yyl3527 > cap(yyv3527) { - yyrg3522 := len(yyv3522) > 0 - yyv23522 := yyv3522 - yyrl3522, yyrt3522 = z.DecInferLen(yyl3522, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3522 { - if yyrl3522 <= cap(yyv3522) { - yyv3522 = yyv3522[:yyrl3522] + yyrg3527 := len(yyv3527) > 0 + yyv23527 := yyv3527 + yyrl3527, yyrt3527 = z.DecInferLen(yyl3527, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3527 { + if yyrl3527 <= cap(yyv3527) { + yyv3527 = yyv3527[:yyrl3527] } else { - yyv3522 = make([]EnvVar, yyrl3522) + yyv3527 = make([]EnvVar, yyrl3527) } } else { - yyv3522 = make([]EnvVar, yyrl3522) + yyv3527 = make([]EnvVar, yyrl3527) } - yyc3522 = true - yyrr3522 = len(yyv3522) - if yyrg3522 { - copy(yyv3522, yyv23522) + yyc3527 = true + yyrr3527 = len(yyv3527) + if yyrg3527 { + copy(yyv3527, yyv23527) } - } else if yyl3522 != len(yyv3522) { - yyv3522 = yyv3522[:yyl3522] - yyc3522 = true + } else if yyl3527 != len(yyv3527) { + yyv3527 = yyv3527[:yyl3527] + yyc3527 = true } - yyj3522 := 0 - for ; yyj3522 < yyrr3522; yyj3522++ { - yyh3522.ElemContainerState(yyj3522) + yyj3527 := 0 + for ; yyj3527 < yyrr3527; yyj3527++ { + yyh3527.ElemContainerState(yyj3527) if r.TryDecodeAsNil() { - yyv3522[yyj3522] = EnvVar{} + yyv3527[yyj3527] = EnvVar{} } else { - yyv3523 := &yyv3522[yyj3522] - yyv3523.CodecDecodeSelf(d) + yyv3528 := &yyv3527[yyj3527] + yyv3528.CodecDecodeSelf(d) } } - if yyrt3522 { - for ; yyj3522 < yyl3522; yyj3522++ { - yyv3522 = append(yyv3522, EnvVar{}) - yyh3522.ElemContainerState(yyj3522) + if yyrt3527 { + for ; yyj3527 < yyl3527; yyj3527++ { + yyv3527 = append(yyv3527, EnvVar{}) + yyh3527.ElemContainerState(yyj3527) if r.TryDecodeAsNil() { - yyv3522[yyj3522] = EnvVar{} + yyv3527[yyj3527] = EnvVar{} } else { - yyv3524 := &yyv3522[yyj3522] - yyv3524.CodecDecodeSelf(d) + yyv3529 := &yyv3527[yyj3527] + yyv3529.CodecDecodeSelf(d) } } } } else { - yyj3522 := 0 - for ; !r.CheckBreak(); yyj3522++ { + yyj3527 := 0 + for ; !r.CheckBreak(); yyj3527++ { - if yyj3522 >= len(yyv3522) { - yyv3522 = append(yyv3522, EnvVar{}) // var yyz3522 EnvVar - yyc3522 = true + if yyj3527 >= len(yyv3527) { + yyv3527 = append(yyv3527, EnvVar{}) // var yyz3527 EnvVar + yyc3527 = true } - yyh3522.ElemContainerState(yyj3522) - if yyj3522 < len(yyv3522) { + yyh3527.ElemContainerState(yyj3527) + if yyj3527 < len(yyv3527) { if r.TryDecodeAsNil() { - yyv3522[yyj3522] = EnvVar{} + yyv3527[yyj3527] = EnvVar{} } else { - yyv3525 := &yyv3522[yyj3522] - yyv3525.CodecDecodeSelf(d) + yyv3530 := &yyv3527[yyj3527] + yyv3530.CodecDecodeSelf(d) } } else { @@ -43862,17 +43910,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj3522 < len(yyv3522) { - yyv3522 = yyv3522[:yyj3522] - yyc3522 = true - } else if yyj3522 == 0 && yyv3522 == nil { - yyv3522 = []EnvVar{} - yyc3522 = true + if yyj3527 < len(yyv3527) { + yyv3527 = yyv3527[:yyj3527] + yyc3527 = true + } else if yyj3527 == 0 && yyv3527 == nil { + yyv3527 = []EnvVar{} + yyc3527 = true } } - yyh3522.End() - if yyc3522 { - *v = yyv3522 + yyh3527.End() + if yyc3527 { + *v = yyv3527 } } @@ -43881,10 +43929,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3526 := range v { + for _, yyv3531 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3527 := &yyv3526 - yy3527.CodecEncodeSelf(e) + yy3532 := &yyv3531 + yy3532.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43894,83 +43942,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3528 := *v - yyh3528, yyl3528 := z.DecSliceHelperStart() - var yyc3528 bool - if yyl3528 == 0 { - if yyv3528 == nil { - yyv3528 = []VolumeMount{} - yyc3528 = true - } else if len(yyv3528) != 0 { - yyv3528 = yyv3528[:0] - yyc3528 = true + yyv3533 := *v + yyh3533, yyl3533 := z.DecSliceHelperStart() + var yyc3533 bool + if yyl3533 == 0 { + if yyv3533 == nil { + yyv3533 = []VolumeMount{} + yyc3533 = true + } else if len(yyv3533) != 0 { + yyv3533 = yyv3533[:0] + yyc3533 = true } - } else if yyl3528 > 0 { - var yyrr3528, yyrl3528 int - var yyrt3528 bool - if yyl3528 > cap(yyv3528) { + } else if yyl3533 > 0 { + var yyrr3533, yyrl3533 int + var yyrt3533 bool + if yyl3533 > cap(yyv3533) { - yyrg3528 := len(yyv3528) > 0 - yyv23528 := yyv3528 - yyrl3528, yyrt3528 = z.DecInferLen(yyl3528, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3528 { - if yyrl3528 <= cap(yyv3528) { - yyv3528 = yyv3528[:yyrl3528] + yyrg3533 := len(yyv3533) > 0 + yyv23533 := yyv3533 + yyrl3533, yyrt3533 = z.DecInferLen(yyl3533, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3533 { + if yyrl3533 <= cap(yyv3533) { + yyv3533 = yyv3533[:yyrl3533] } else { - yyv3528 = make([]VolumeMount, yyrl3528) + yyv3533 = make([]VolumeMount, yyrl3533) } } else { - yyv3528 = make([]VolumeMount, yyrl3528) + yyv3533 = make([]VolumeMount, yyrl3533) } - yyc3528 = true - yyrr3528 = len(yyv3528) - if yyrg3528 { - copy(yyv3528, yyv23528) + yyc3533 = true + yyrr3533 = len(yyv3533) + if yyrg3533 { + copy(yyv3533, yyv23533) } - } else if yyl3528 != len(yyv3528) { - yyv3528 = yyv3528[:yyl3528] - yyc3528 = true + } else if yyl3533 != len(yyv3533) { + yyv3533 = yyv3533[:yyl3533] + yyc3533 = true } - yyj3528 := 0 - for ; yyj3528 < yyrr3528; yyj3528++ { - yyh3528.ElemContainerState(yyj3528) + yyj3533 := 0 + for ; yyj3533 < yyrr3533; yyj3533++ { + yyh3533.ElemContainerState(yyj3533) if r.TryDecodeAsNil() { - yyv3528[yyj3528] = VolumeMount{} + yyv3533[yyj3533] = VolumeMount{} } else { - yyv3529 := &yyv3528[yyj3528] - yyv3529.CodecDecodeSelf(d) + yyv3534 := &yyv3533[yyj3533] + yyv3534.CodecDecodeSelf(d) } } - if yyrt3528 { - for ; yyj3528 < yyl3528; yyj3528++ { - yyv3528 = append(yyv3528, VolumeMount{}) - yyh3528.ElemContainerState(yyj3528) + if yyrt3533 { + for ; yyj3533 < yyl3533; yyj3533++ { + yyv3533 = append(yyv3533, VolumeMount{}) + yyh3533.ElemContainerState(yyj3533) if r.TryDecodeAsNil() { - yyv3528[yyj3528] = VolumeMount{} + yyv3533[yyj3533] = VolumeMount{} } else { - yyv3530 := &yyv3528[yyj3528] - yyv3530.CodecDecodeSelf(d) + yyv3535 := &yyv3533[yyj3533] + yyv3535.CodecDecodeSelf(d) } } } } else { - yyj3528 := 0 - for ; !r.CheckBreak(); yyj3528++ { + yyj3533 := 0 + for ; !r.CheckBreak(); yyj3533++ { - if yyj3528 >= len(yyv3528) { - yyv3528 = append(yyv3528, VolumeMount{}) // var yyz3528 VolumeMount - yyc3528 = true + if yyj3533 >= len(yyv3533) { + yyv3533 = append(yyv3533, VolumeMount{}) // var yyz3533 VolumeMount + yyc3533 = true } - yyh3528.ElemContainerState(yyj3528) - if yyj3528 < len(yyv3528) { + yyh3533.ElemContainerState(yyj3533) + if yyj3533 < len(yyv3533) { if r.TryDecodeAsNil() { - yyv3528[yyj3528] = VolumeMount{} + yyv3533[yyj3533] = VolumeMount{} } else { - yyv3531 := &yyv3528[yyj3528] - yyv3531.CodecDecodeSelf(d) + yyv3536 := &yyv3533[yyj3533] + yyv3536.CodecDecodeSelf(d) } } else { @@ -43978,17 +44026,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj3528 < len(yyv3528) { - yyv3528 = yyv3528[:yyj3528] - yyc3528 = true - } else if yyj3528 == 0 && yyv3528 == nil { - yyv3528 = []VolumeMount{} - yyc3528 = true + if yyj3533 < len(yyv3533) { + yyv3533 = yyv3533[:yyj3533] + yyc3533 = true + } else if yyj3533 == 0 && yyv3533 == nil { + yyv3533 = []VolumeMount{} + yyc3533 = true } } - yyh3528.End() - if yyc3528 { - *v = yyv3528 + yyh3533.End() + if yyc3533 { + *v = yyv3533 } } @@ -43997,10 +44045,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3532 := range v { + for _, yyv3537 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3533 := &yyv3532 - yy3533.CodecEncodeSelf(e) + yy3538 := &yyv3537 + yy3538.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44010,83 +44058,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3534 := *v - yyh3534, yyl3534 := z.DecSliceHelperStart() - var yyc3534 bool - if yyl3534 == 0 { - if yyv3534 == nil { - yyv3534 = []Volume{} - yyc3534 = true - } else if len(yyv3534) != 0 { - yyv3534 = yyv3534[:0] - yyc3534 = true + yyv3539 := *v + yyh3539, yyl3539 := z.DecSliceHelperStart() + var yyc3539 bool + if yyl3539 == 0 { + if yyv3539 == nil { + yyv3539 = []Volume{} + yyc3539 = true + } else if len(yyv3539) != 0 { + yyv3539 = yyv3539[:0] + yyc3539 = true } - } else if yyl3534 > 0 { - var yyrr3534, yyrl3534 int - var yyrt3534 bool - if yyl3534 > cap(yyv3534) { + } else if yyl3539 > 0 { + var yyrr3539, yyrl3539 int + var yyrt3539 bool + if yyl3539 > cap(yyv3539) { - yyrg3534 := len(yyv3534) > 0 - yyv23534 := yyv3534 - yyrl3534, yyrt3534 = z.DecInferLen(yyl3534, z.DecBasicHandle().MaxInitLen, 144) - if yyrt3534 { - if yyrl3534 <= cap(yyv3534) { - yyv3534 = yyv3534[:yyrl3534] + yyrg3539 := len(yyv3539) > 0 + yyv23539 := yyv3539 + yyrl3539, yyrt3539 = z.DecInferLen(yyl3539, z.DecBasicHandle().MaxInitLen, 144) + if yyrt3539 { + if yyrl3539 <= cap(yyv3539) { + yyv3539 = yyv3539[:yyrl3539] } else { - yyv3534 = make([]Volume, yyrl3534) + yyv3539 = make([]Volume, yyrl3539) } } else { - yyv3534 = make([]Volume, yyrl3534) + yyv3539 = make([]Volume, yyrl3539) } - yyc3534 = true - yyrr3534 = len(yyv3534) - if yyrg3534 { - copy(yyv3534, yyv23534) + yyc3539 = true + yyrr3539 = len(yyv3539) + if yyrg3539 { + copy(yyv3539, yyv23539) } - } else if yyl3534 != len(yyv3534) { - yyv3534 = yyv3534[:yyl3534] - yyc3534 = true + } else if yyl3539 != len(yyv3539) { + yyv3539 = yyv3539[:yyl3539] + yyc3539 = true } - yyj3534 := 0 - for ; yyj3534 < yyrr3534; yyj3534++ { - yyh3534.ElemContainerState(yyj3534) + yyj3539 := 0 + for ; yyj3539 < yyrr3539; yyj3539++ { + yyh3539.ElemContainerState(yyj3539) if r.TryDecodeAsNil() { - yyv3534[yyj3534] = Volume{} + yyv3539[yyj3539] = Volume{} } else { - yyv3535 := &yyv3534[yyj3534] - yyv3535.CodecDecodeSelf(d) + yyv3540 := &yyv3539[yyj3539] + yyv3540.CodecDecodeSelf(d) } } - if yyrt3534 { - for ; yyj3534 < yyl3534; yyj3534++ { - yyv3534 = append(yyv3534, Volume{}) - yyh3534.ElemContainerState(yyj3534) + if yyrt3539 { + for ; yyj3539 < yyl3539; yyj3539++ { + yyv3539 = append(yyv3539, Volume{}) + yyh3539.ElemContainerState(yyj3539) if r.TryDecodeAsNil() { - yyv3534[yyj3534] = Volume{} + yyv3539[yyj3539] = Volume{} } else { - yyv3536 := &yyv3534[yyj3534] - yyv3536.CodecDecodeSelf(d) + yyv3541 := &yyv3539[yyj3539] + yyv3541.CodecDecodeSelf(d) } } } } else { - yyj3534 := 0 - for ; !r.CheckBreak(); yyj3534++ { + yyj3539 := 0 + for ; !r.CheckBreak(); yyj3539++ { - if yyj3534 >= len(yyv3534) { - yyv3534 = append(yyv3534, Volume{}) // var yyz3534 Volume - yyc3534 = true + if yyj3539 >= len(yyv3539) { + yyv3539 = append(yyv3539, Volume{}) // var yyz3539 Volume + yyc3539 = true } - yyh3534.ElemContainerState(yyj3534) - if yyj3534 < len(yyv3534) { + yyh3539.ElemContainerState(yyj3539) + if yyj3539 < len(yyv3539) { if r.TryDecodeAsNil() { - yyv3534[yyj3534] = Volume{} + yyv3539[yyj3539] = Volume{} } else { - yyv3537 := &yyv3534[yyj3534] - yyv3537.CodecDecodeSelf(d) + yyv3542 := &yyv3539[yyj3539] + yyv3542.CodecDecodeSelf(d) } } else { @@ -44094,17 +44142,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj3534 < len(yyv3534) { - yyv3534 = yyv3534[:yyj3534] - yyc3534 = true - } else if yyj3534 == 0 && yyv3534 == nil { - yyv3534 = []Volume{} - yyc3534 = true + if yyj3539 < len(yyv3539) { + yyv3539 = yyv3539[:yyj3539] + yyc3539 = true + } else if yyj3539 == 0 && yyv3539 == nil { + yyv3539 = []Volume{} + yyc3539 = true } } - yyh3534.End() - if yyc3534 { - *v = yyv3534 + yyh3539.End() + if yyc3539 { + *v = yyv3539 } } @@ -44113,10 +44161,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3538 := range v { + for _, yyv3543 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3539 := &yyv3538 - yy3539.CodecEncodeSelf(e) + yy3544 := &yyv3543 + yy3544.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44126,83 +44174,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3540 := *v - yyh3540, yyl3540 := z.DecSliceHelperStart() - var yyc3540 bool - if yyl3540 == 0 { - if yyv3540 == nil { - yyv3540 = []Container{} - yyc3540 = true - } else if len(yyv3540) != 0 { - yyv3540 = yyv3540[:0] - yyc3540 = true + yyv3545 := *v + yyh3545, yyl3545 := z.DecSliceHelperStart() + var yyc3545 bool + if yyl3545 == 0 { + if yyv3545 == nil { + yyv3545 = []Container{} + yyc3545 = true + } else if len(yyv3545) != 0 { + yyv3545 = yyv3545[:0] + yyc3545 = true } - } else if yyl3540 > 0 { - var yyrr3540, yyrl3540 int - var yyrt3540 bool - if yyl3540 > cap(yyv3540) { + } else if yyl3545 > 0 { + var yyrr3545, yyrl3545 int + var yyrt3545 bool + if yyl3545 > cap(yyv3545) { - yyrg3540 := len(yyv3540) > 0 - yyv23540 := yyv3540 - yyrl3540, yyrt3540 = z.DecInferLen(yyl3540, z.DecBasicHandle().MaxInitLen, 256) - if yyrt3540 { - if yyrl3540 <= cap(yyv3540) { - yyv3540 = yyv3540[:yyrl3540] + yyrg3545 := len(yyv3545) > 0 + yyv23545 := yyv3545 + yyrl3545, yyrt3545 = z.DecInferLen(yyl3545, z.DecBasicHandle().MaxInitLen, 256) + if yyrt3545 { + if yyrl3545 <= cap(yyv3545) { + yyv3545 = yyv3545[:yyrl3545] } else { - yyv3540 = make([]Container, yyrl3540) + yyv3545 = make([]Container, yyrl3545) } } else { - yyv3540 = make([]Container, yyrl3540) + yyv3545 = make([]Container, yyrl3545) } - yyc3540 = true - yyrr3540 = len(yyv3540) - if yyrg3540 { - copy(yyv3540, yyv23540) + yyc3545 = true + yyrr3545 = len(yyv3545) + if yyrg3545 { + copy(yyv3545, yyv23545) } - } else if yyl3540 != len(yyv3540) { - yyv3540 = yyv3540[:yyl3540] - yyc3540 = true + } else if yyl3545 != len(yyv3545) { + yyv3545 = yyv3545[:yyl3545] + yyc3545 = true } - yyj3540 := 0 - for ; yyj3540 < yyrr3540; yyj3540++ { - yyh3540.ElemContainerState(yyj3540) + yyj3545 := 0 + for ; yyj3545 < yyrr3545; yyj3545++ { + yyh3545.ElemContainerState(yyj3545) if r.TryDecodeAsNil() { - yyv3540[yyj3540] = Container{} + yyv3545[yyj3545] = Container{} } else { - yyv3541 := &yyv3540[yyj3540] - yyv3541.CodecDecodeSelf(d) + yyv3546 := &yyv3545[yyj3545] + yyv3546.CodecDecodeSelf(d) } } - if yyrt3540 { - for ; yyj3540 < yyl3540; yyj3540++ { - yyv3540 = append(yyv3540, Container{}) - yyh3540.ElemContainerState(yyj3540) + if yyrt3545 { + for ; yyj3545 < yyl3545; yyj3545++ { + yyv3545 = append(yyv3545, Container{}) + yyh3545.ElemContainerState(yyj3545) if r.TryDecodeAsNil() { - yyv3540[yyj3540] = Container{} + yyv3545[yyj3545] = Container{} } else { - yyv3542 := &yyv3540[yyj3540] - yyv3542.CodecDecodeSelf(d) + yyv3547 := &yyv3545[yyj3545] + yyv3547.CodecDecodeSelf(d) } } } } else { - yyj3540 := 0 - for ; !r.CheckBreak(); yyj3540++ { + yyj3545 := 0 + for ; !r.CheckBreak(); yyj3545++ { - if yyj3540 >= len(yyv3540) { - yyv3540 = append(yyv3540, Container{}) // var yyz3540 Container - yyc3540 = true + if yyj3545 >= len(yyv3545) { + yyv3545 = append(yyv3545, Container{}) // var yyz3545 Container + yyc3545 = true } - yyh3540.ElemContainerState(yyj3540) - if yyj3540 < len(yyv3540) { + yyh3545.ElemContainerState(yyj3545) + if yyj3545 < len(yyv3545) { if r.TryDecodeAsNil() { - yyv3540[yyj3540] = Container{} + yyv3545[yyj3545] = Container{} } else { - yyv3543 := &yyv3540[yyj3540] - yyv3543.CodecDecodeSelf(d) + yyv3548 := &yyv3545[yyj3545] + yyv3548.CodecDecodeSelf(d) } } else { @@ -44210,17 +44258,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj3540 < len(yyv3540) { - yyv3540 = yyv3540[:yyj3540] - yyc3540 = true - } else if yyj3540 == 0 && yyv3540 == nil { - yyv3540 = []Container{} - yyc3540 = true + if yyj3545 < len(yyv3545) { + yyv3545 = yyv3545[:yyj3545] + yyc3545 = true + } else if yyj3545 == 0 && yyv3545 == nil { + yyv3545 = []Container{} + yyc3545 = true } } - yyh3540.End() - if yyc3540 { - *v = yyv3540 + yyh3545.End() + if yyc3545 { + *v = yyv3545 } } @@ -44229,10 +44277,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3544 := range v { + for _, yyv3549 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3545 := &yyv3544 - yy3545.CodecEncodeSelf(e) + yy3550 := &yyv3549 + yy3550.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44242,83 +44290,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3546 := *v - yyh3546, yyl3546 := z.DecSliceHelperStart() - var yyc3546 bool - if yyl3546 == 0 { - if yyv3546 == nil { - yyv3546 = []LocalObjectReference{} - yyc3546 = true - } else if len(yyv3546) != 0 { - yyv3546 = yyv3546[:0] - yyc3546 = true + yyv3551 := *v + yyh3551, yyl3551 := z.DecSliceHelperStart() + var yyc3551 bool + if yyl3551 == 0 { + if yyv3551 == nil { + yyv3551 = []LocalObjectReference{} + yyc3551 = true + } else if len(yyv3551) != 0 { + yyv3551 = yyv3551[:0] + yyc3551 = true } - } else if yyl3546 > 0 { - var yyrr3546, yyrl3546 int - var yyrt3546 bool - if yyl3546 > cap(yyv3546) { + } else if yyl3551 > 0 { + var yyrr3551, yyrl3551 int + var yyrt3551 bool + if yyl3551 > cap(yyv3551) { - yyrg3546 := len(yyv3546) > 0 - yyv23546 := yyv3546 - yyrl3546, yyrt3546 = z.DecInferLen(yyl3546, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3546 { - if yyrl3546 <= cap(yyv3546) { - yyv3546 = yyv3546[:yyrl3546] + yyrg3551 := len(yyv3551) > 0 + yyv23551 := yyv3551 + yyrl3551, yyrt3551 = z.DecInferLen(yyl3551, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3551 { + if yyrl3551 <= cap(yyv3551) { + yyv3551 = yyv3551[:yyrl3551] } else { - yyv3546 = make([]LocalObjectReference, yyrl3546) + yyv3551 = make([]LocalObjectReference, yyrl3551) } } else { - yyv3546 = make([]LocalObjectReference, yyrl3546) + yyv3551 = make([]LocalObjectReference, yyrl3551) } - yyc3546 = true - yyrr3546 = len(yyv3546) - if yyrg3546 { - copy(yyv3546, yyv23546) + yyc3551 = true + yyrr3551 = len(yyv3551) + if yyrg3551 { + copy(yyv3551, yyv23551) } - } else if yyl3546 != len(yyv3546) { - yyv3546 = yyv3546[:yyl3546] - yyc3546 = true + } else if yyl3551 != len(yyv3551) { + yyv3551 = yyv3551[:yyl3551] + yyc3551 = true } - yyj3546 := 0 - for ; yyj3546 < yyrr3546; yyj3546++ { - yyh3546.ElemContainerState(yyj3546) + yyj3551 := 0 + for ; yyj3551 < yyrr3551; yyj3551++ { + yyh3551.ElemContainerState(yyj3551) if r.TryDecodeAsNil() { - yyv3546[yyj3546] = LocalObjectReference{} + yyv3551[yyj3551] = LocalObjectReference{} } else { - yyv3547 := &yyv3546[yyj3546] - yyv3547.CodecDecodeSelf(d) + yyv3552 := &yyv3551[yyj3551] + yyv3552.CodecDecodeSelf(d) } } - if yyrt3546 { - for ; yyj3546 < yyl3546; yyj3546++ { - yyv3546 = append(yyv3546, LocalObjectReference{}) - yyh3546.ElemContainerState(yyj3546) + if yyrt3551 { + for ; yyj3551 < yyl3551; yyj3551++ { + yyv3551 = append(yyv3551, LocalObjectReference{}) + yyh3551.ElemContainerState(yyj3551) if r.TryDecodeAsNil() { - yyv3546[yyj3546] = LocalObjectReference{} + yyv3551[yyj3551] = LocalObjectReference{} } else { - yyv3548 := &yyv3546[yyj3546] - yyv3548.CodecDecodeSelf(d) + yyv3553 := &yyv3551[yyj3551] + yyv3553.CodecDecodeSelf(d) } } } } else { - yyj3546 := 0 - for ; !r.CheckBreak(); yyj3546++ { + yyj3551 := 0 + for ; !r.CheckBreak(); yyj3551++ { - if yyj3546 >= len(yyv3546) { - yyv3546 = append(yyv3546, LocalObjectReference{}) // var yyz3546 LocalObjectReference - yyc3546 = true + if yyj3551 >= len(yyv3551) { + yyv3551 = append(yyv3551, LocalObjectReference{}) // var yyz3551 LocalObjectReference + yyc3551 = true } - yyh3546.ElemContainerState(yyj3546) - if yyj3546 < len(yyv3546) { + yyh3551.ElemContainerState(yyj3551) + if yyj3551 < len(yyv3551) { if r.TryDecodeAsNil() { - yyv3546[yyj3546] = LocalObjectReference{} + yyv3551[yyj3551] = LocalObjectReference{} } else { - yyv3549 := &yyv3546[yyj3546] - yyv3549.CodecDecodeSelf(d) + yyv3554 := &yyv3551[yyj3551] + yyv3554.CodecDecodeSelf(d) } } else { @@ -44326,17 +44374,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj3546 < len(yyv3546) { - yyv3546 = yyv3546[:yyj3546] - yyc3546 = true - } else if yyj3546 == 0 && yyv3546 == nil { - yyv3546 = []LocalObjectReference{} - yyc3546 = true + if yyj3551 < len(yyv3551) { + yyv3551 = yyv3551[:yyj3551] + yyc3551 = true + } else if yyj3551 == 0 && yyv3551 == nil { + yyv3551 = []LocalObjectReference{} + yyc3551 = true } } - yyh3546.End() - if yyc3546 { - *v = yyv3546 + yyh3551.End() + if yyc3551 { + *v = yyv3551 } } @@ -44345,10 +44393,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3550 := range v { + for _, yyv3555 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3551 := &yyv3550 - yy3551.CodecEncodeSelf(e) + yy3556 := &yyv3555 + yy3556.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44358,83 +44406,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3552 := *v - yyh3552, yyl3552 := z.DecSliceHelperStart() - var yyc3552 bool - if yyl3552 == 0 { - if yyv3552 == nil { - yyv3552 = []PodCondition{} - yyc3552 = true - } else if len(yyv3552) != 0 { - yyv3552 = yyv3552[:0] - yyc3552 = true + yyv3557 := *v + yyh3557, yyl3557 := z.DecSliceHelperStart() + var yyc3557 bool + if yyl3557 == 0 { + if yyv3557 == nil { + yyv3557 = []PodCondition{} + yyc3557 = true + } else if len(yyv3557) != 0 { + yyv3557 = yyv3557[:0] + yyc3557 = true } - } else if yyl3552 > 0 { - var yyrr3552, yyrl3552 int - var yyrt3552 bool - if yyl3552 > cap(yyv3552) { + } else if yyl3557 > 0 { + var yyrr3557, yyrl3557 int + var yyrt3557 bool + if yyl3557 > cap(yyv3557) { - yyrg3552 := len(yyv3552) > 0 - yyv23552 := yyv3552 - yyrl3552, yyrt3552 = z.DecInferLen(yyl3552, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3552 { - if yyrl3552 <= cap(yyv3552) { - yyv3552 = yyv3552[:yyrl3552] + yyrg3557 := len(yyv3557) > 0 + yyv23557 := yyv3557 + yyrl3557, yyrt3557 = z.DecInferLen(yyl3557, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3557 { + if yyrl3557 <= cap(yyv3557) { + yyv3557 = yyv3557[:yyrl3557] } else { - yyv3552 = make([]PodCondition, yyrl3552) + yyv3557 = make([]PodCondition, yyrl3557) } } else { - yyv3552 = make([]PodCondition, yyrl3552) + yyv3557 = make([]PodCondition, yyrl3557) } - yyc3552 = true - yyrr3552 = len(yyv3552) - if yyrg3552 { - copy(yyv3552, yyv23552) + yyc3557 = true + yyrr3557 = len(yyv3557) + if yyrg3557 { + copy(yyv3557, yyv23557) } - } else if yyl3552 != len(yyv3552) { - yyv3552 = yyv3552[:yyl3552] - yyc3552 = true + } else if yyl3557 != len(yyv3557) { + yyv3557 = yyv3557[:yyl3557] + yyc3557 = true } - yyj3552 := 0 - for ; yyj3552 < yyrr3552; yyj3552++ { - yyh3552.ElemContainerState(yyj3552) + yyj3557 := 0 + for ; yyj3557 < yyrr3557; yyj3557++ { + yyh3557.ElemContainerState(yyj3557) if r.TryDecodeAsNil() { - yyv3552[yyj3552] = PodCondition{} + yyv3557[yyj3557] = PodCondition{} } else { - yyv3553 := &yyv3552[yyj3552] - yyv3553.CodecDecodeSelf(d) + yyv3558 := &yyv3557[yyj3557] + yyv3558.CodecDecodeSelf(d) } } - if yyrt3552 { - for ; yyj3552 < yyl3552; yyj3552++ { - yyv3552 = append(yyv3552, PodCondition{}) - yyh3552.ElemContainerState(yyj3552) + if yyrt3557 { + for ; yyj3557 < yyl3557; yyj3557++ { + yyv3557 = append(yyv3557, PodCondition{}) + yyh3557.ElemContainerState(yyj3557) if r.TryDecodeAsNil() { - yyv3552[yyj3552] = PodCondition{} + yyv3557[yyj3557] = PodCondition{} } else { - yyv3554 := &yyv3552[yyj3552] - yyv3554.CodecDecodeSelf(d) + yyv3559 := &yyv3557[yyj3557] + yyv3559.CodecDecodeSelf(d) } } } } else { - yyj3552 := 0 - for ; !r.CheckBreak(); yyj3552++ { + yyj3557 := 0 + for ; !r.CheckBreak(); yyj3557++ { - if yyj3552 >= len(yyv3552) { - yyv3552 = append(yyv3552, PodCondition{}) // var yyz3552 PodCondition - yyc3552 = true + if yyj3557 >= len(yyv3557) { + yyv3557 = append(yyv3557, PodCondition{}) // var yyz3557 PodCondition + yyc3557 = true } - yyh3552.ElemContainerState(yyj3552) - if yyj3552 < len(yyv3552) { + yyh3557.ElemContainerState(yyj3557) + if yyj3557 < len(yyv3557) { if r.TryDecodeAsNil() { - yyv3552[yyj3552] = PodCondition{} + yyv3557[yyj3557] = PodCondition{} } else { - yyv3555 := &yyv3552[yyj3552] - yyv3555.CodecDecodeSelf(d) + yyv3560 := &yyv3557[yyj3557] + yyv3560.CodecDecodeSelf(d) } } else { @@ -44442,17 +44490,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj3552 < len(yyv3552) { - yyv3552 = yyv3552[:yyj3552] - yyc3552 = true - } else if yyj3552 == 0 && yyv3552 == nil { - yyv3552 = []PodCondition{} - yyc3552 = true + if yyj3557 < len(yyv3557) { + yyv3557 = yyv3557[:yyj3557] + yyc3557 = true + } else if yyj3557 == 0 && yyv3557 == nil { + yyv3557 = []PodCondition{} + yyc3557 = true } } - yyh3552.End() - if yyc3552 { - *v = yyv3552 + yyh3557.End() + if yyc3557 { + *v = yyv3557 } } @@ -44461,10 +44509,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3556 := range v { + for _, yyv3561 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3557 := &yyv3556 - yy3557.CodecEncodeSelf(e) + yy3562 := &yyv3561 + yy3562.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44474,83 +44522,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3558 := *v - yyh3558, yyl3558 := z.DecSliceHelperStart() - var yyc3558 bool - if yyl3558 == 0 { - if yyv3558 == nil { - yyv3558 = []ContainerStatus{} - yyc3558 = true - } else if len(yyv3558) != 0 { - yyv3558 = yyv3558[:0] - yyc3558 = true + yyv3563 := *v + yyh3563, yyl3563 := z.DecSliceHelperStart() + var yyc3563 bool + if yyl3563 == 0 { + if yyv3563 == nil { + yyv3563 = []ContainerStatus{} + yyc3563 = true + } else if len(yyv3563) != 0 { + yyv3563 = yyv3563[:0] + yyc3563 = true } - } else if yyl3558 > 0 { - var yyrr3558, yyrl3558 int - var yyrt3558 bool - if yyl3558 > cap(yyv3558) { + } else if yyl3563 > 0 { + var yyrr3563, yyrl3563 int + var yyrt3563 bool + if yyl3563 > cap(yyv3563) { - yyrg3558 := len(yyv3558) > 0 - yyv23558 := yyv3558 - yyrl3558, yyrt3558 = z.DecInferLen(yyl3558, z.DecBasicHandle().MaxInitLen, 120) - if yyrt3558 { - if yyrl3558 <= cap(yyv3558) { - yyv3558 = yyv3558[:yyrl3558] + yyrg3563 := len(yyv3563) > 0 + yyv23563 := yyv3563 + yyrl3563, yyrt3563 = z.DecInferLen(yyl3563, z.DecBasicHandle().MaxInitLen, 120) + if yyrt3563 { + if yyrl3563 <= cap(yyv3563) { + yyv3563 = yyv3563[:yyrl3563] } else { - yyv3558 = make([]ContainerStatus, yyrl3558) + yyv3563 = make([]ContainerStatus, yyrl3563) } } else { - yyv3558 = make([]ContainerStatus, yyrl3558) + yyv3563 = make([]ContainerStatus, yyrl3563) } - yyc3558 = true - yyrr3558 = len(yyv3558) - if yyrg3558 { - copy(yyv3558, yyv23558) + yyc3563 = true + yyrr3563 = len(yyv3563) + if yyrg3563 { + copy(yyv3563, yyv23563) } - } else if yyl3558 != len(yyv3558) { - yyv3558 = yyv3558[:yyl3558] - yyc3558 = true + } else if yyl3563 != len(yyv3563) { + yyv3563 = yyv3563[:yyl3563] + yyc3563 = true } - yyj3558 := 0 - for ; yyj3558 < yyrr3558; yyj3558++ { - yyh3558.ElemContainerState(yyj3558) + yyj3563 := 0 + for ; yyj3563 < yyrr3563; yyj3563++ { + yyh3563.ElemContainerState(yyj3563) if r.TryDecodeAsNil() { - yyv3558[yyj3558] = ContainerStatus{} + yyv3563[yyj3563] = ContainerStatus{} } else { - yyv3559 := &yyv3558[yyj3558] - yyv3559.CodecDecodeSelf(d) + yyv3564 := &yyv3563[yyj3563] + yyv3564.CodecDecodeSelf(d) } } - if yyrt3558 { - for ; yyj3558 < yyl3558; yyj3558++ { - yyv3558 = append(yyv3558, ContainerStatus{}) - yyh3558.ElemContainerState(yyj3558) + if yyrt3563 { + for ; yyj3563 < yyl3563; yyj3563++ { + yyv3563 = append(yyv3563, ContainerStatus{}) + yyh3563.ElemContainerState(yyj3563) if r.TryDecodeAsNil() { - yyv3558[yyj3558] = ContainerStatus{} + yyv3563[yyj3563] = ContainerStatus{} } else { - yyv3560 := &yyv3558[yyj3558] - yyv3560.CodecDecodeSelf(d) + yyv3565 := &yyv3563[yyj3563] + yyv3565.CodecDecodeSelf(d) } } } } else { - yyj3558 := 0 - for ; !r.CheckBreak(); yyj3558++ { + yyj3563 := 0 + for ; !r.CheckBreak(); yyj3563++ { - if yyj3558 >= len(yyv3558) { - yyv3558 = append(yyv3558, ContainerStatus{}) // var yyz3558 ContainerStatus - yyc3558 = true + if yyj3563 >= len(yyv3563) { + yyv3563 = append(yyv3563, ContainerStatus{}) // var yyz3563 ContainerStatus + yyc3563 = true } - yyh3558.ElemContainerState(yyj3558) - if yyj3558 < len(yyv3558) { + yyh3563.ElemContainerState(yyj3563) + if yyj3563 < len(yyv3563) { if r.TryDecodeAsNil() { - yyv3558[yyj3558] = ContainerStatus{} + yyv3563[yyj3563] = ContainerStatus{} } else { - yyv3561 := &yyv3558[yyj3558] - yyv3561.CodecDecodeSelf(d) + yyv3566 := &yyv3563[yyj3563] + yyv3566.CodecDecodeSelf(d) } } else { @@ -44558,17 +44606,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj3558 < len(yyv3558) { - yyv3558 = yyv3558[:yyj3558] - yyc3558 = true - } else if yyj3558 == 0 && yyv3558 == nil { - yyv3558 = []ContainerStatus{} - yyc3558 = true + if yyj3563 < len(yyv3563) { + yyv3563 = yyv3563[:yyj3563] + yyc3563 = true + } else if yyj3563 == 0 && yyv3563 == nil { + yyv3563 = []ContainerStatus{} + yyc3563 = true } } - yyh3558.End() - if yyc3558 { - *v = yyv3558 + yyh3563.End() + if yyc3563 { + *v = yyv3563 } } @@ -44577,10 +44625,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3562 := range v { + for _, yyv3567 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3563 := &yyv3562 - yy3563.CodecEncodeSelf(e) + yy3568 := &yyv3567 + yy3568.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44590,83 +44638,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3564 := *v - yyh3564, yyl3564 := z.DecSliceHelperStart() - var yyc3564 bool - if yyl3564 == 0 { - if yyv3564 == nil { - yyv3564 = []Pod{} - yyc3564 = true - } else if len(yyv3564) != 0 { - yyv3564 = yyv3564[:0] - yyc3564 = true + yyv3569 := *v + yyh3569, yyl3569 := z.DecSliceHelperStart() + var yyc3569 bool + if yyl3569 == 0 { + if yyv3569 == nil { + yyv3569 = []Pod{} + yyc3569 = true + } else if len(yyv3569) != 0 { + yyv3569 = yyv3569[:0] + yyc3569 = true } - } else if yyl3564 > 0 { - var yyrr3564, yyrl3564 int - var yyrt3564 bool - if yyl3564 > cap(yyv3564) { + } else if yyl3569 > 0 { + var yyrr3569, yyrl3569 int + var yyrt3569 bool + if yyl3569 > cap(yyv3569) { - yyrg3564 := len(yyv3564) > 0 - yyv23564 := yyv3564 - yyrl3564, yyrt3564 = z.DecInferLen(yyl3564, z.DecBasicHandle().MaxInitLen, 520) - if yyrt3564 { - if yyrl3564 <= cap(yyv3564) { - yyv3564 = yyv3564[:yyrl3564] + yyrg3569 := len(yyv3569) > 0 + yyv23569 := yyv3569 + yyrl3569, yyrt3569 = z.DecInferLen(yyl3569, z.DecBasicHandle().MaxInitLen, 520) + if yyrt3569 { + if yyrl3569 <= cap(yyv3569) { + yyv3569 = yyv3569[:yyrl3569] } else { - yyv3564 = make([]Pod, yyrl3564) + yyv3569 = make([]Pod, yyrl3569) } } else { - yyv3564 = make([]Pod, yyrl3564) + yyv3569 = make([]Pod, yyrl3569) } - yyc3564 = true - yyrr3564 = len(yyv3564) - if yyrg3564 { - copy(yyv3564, yyv23564) + yyc3569 = true + yyrr3569 = len(yyv3569) + if yyrg3569 { + copy(yyv3569, yyv23569) } - } else if yyl3564 != len(yyv3564) { - yyv3564 = yyv3564[:yyl3564] - yyc3564 = true + } else if yyl3569 != len(yyv3569) { + yyv3569 = yyv3569[:yyl3569] + yyc3569 = true } - yyj3564 := 0 - for ; yyj3564 < yyrr3564; yyj3564++ { - yyh3564.ElemContainerState(yyj3564) + yyj3569 := 0 + for ; yyj3569 < yyrr3569; yyj3569++ { + yyh3569.ElemContainerState(yyj3569) if r.TryDecodeAsNil() { - yyv3564[yyj3564] = Pod{} + yyv3569[yyj3569] = Pod{} } else { - yyv3565 := &yyv3564[yyj3564] - yyv3565.CodecDecodeSelf(d) + yyv3570 := &yyv3569[yyj3569] + yyv3570.CodecDecodeSelf(d) } } - if yyrt3564 { - for ; yyj3564 < yyl3564; yyj3564++ { - yyv3564 = append(yyv3564, Pod{}) - yyh3564.ElemContainerState(yyj3564) + if yyrt3569 { + for ; yyj3569 < yyl3569; yyj3569++ { + yyv3569 = append(yyv3569, Pod{}) + yyh3569.ElemContainerState(yyj3569) if r.TryDecodeAsNil() { - yyv3564[yyj3564] = Pod{} + yyv3569[yyj3569] = Pod{} } else { - yyv3566 := &yyv3564[yyj3564] - yyv3566.CodecDecodeSelf(d) + yyv3571 := &yyv3569[yyj3569] + yyv3571.CodecDecodeSelf(d) } } } } else { - yyj3564 := 0 - for ; !r.CheckBreak(); yyj3564++ { + yyj3569 := 0 + for ; !r.CheckBreak(); yyj3569++ { - if yyj3564 >= len(yyv3564) { - yyv3564 = append(yyv3564, Pod{}) // var yyz3564 Pod - yyc3564 = true + if yyj3569 >= len(yyv3569) { + yyv3569 = append(yyv3569, Pod{}) // var yyz3569 Pod + yyc3569 = true } - yyh3564.ElemContainerState(yyj3564) - if yyj3564 < len(yyv3564) { + yyh3569.ElemContainerState(yyj3569) + if yyj3569 < len(yyv3569) { if r.TryDecodeAsNil() { - yyv3564[yyj3564] = Pod{} + yyv3569[yyj3569] = Pod{} } else { - yyv3567 := &yyv3564[yyj3564] - yyv3567.CodecDecodeSelf(d) + yyv3572 := &yyv3569[yyj3569] + yyv3572.CodecDecodeSelf(d) } } else { @@ -44674,17 +44722,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj3564 < len(yyv3564) { - yyv3564 = yyv3564[:yyj3564] - yyc3564 = true - } else if yyj3564 == 0 && yyv3564 == nil { - yyv3564 = []Pod{} - yyc3564 = true + if yyj3569 < len(yyv3569) { + yyv3569 = yyv3569[:yyj3569] + yyc3569 = true + } else if yyj3569 == 0 && yyv3569 == nil { + yyv3569 = []Pod{} + yyc3569 = true } } - yyh3564.End() - if yyc3564 { - *v = yyv3564 + yyh3569.End() + if yyc3569 { + *v = yyv3569 } } @@ -44693,10 +44741,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3568 := range v { + for _, yyv3573 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3569 := &yyv3568 - yy3569.CodecEncodeSelf(e) + yy3574 := &yyv3573 + yy3574.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44706,83 +44754,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3570 := *v - yyh3570, yyl3570 := z.DecSliceHelperStart() - var yyc3570 bool - if yyl3570 == 0 { - if yyv3570 == nil { - yyv3570 = []PodTemplate{} - yyc3570 = true - } else if len(yyv3570) != 0 { - yyv3570 = yyv3570[:0] - yyc3570 = true + yyv3575 := *v + yyh3575, yyl3575 := z.DecSliceHelperStart() + var yyc3575 bool + if yyl3575 == 0 { + if yyv3575 == nil { + yyv3575 = []PodTemplate{} + yyc3575 = true + } else if len(yyv3575) != 0 { + yyv3575 = yyv3575[:0] + yyc3575 = true } - } else if yyl3570 > 0 { - var yyrr3570, yyrl3570 int - var yyrt3570 bool - if yyl3570 > cap(yyv3570) { + } else if yyl3575 > 0 { + var yyrr3575, yyrl3575 int + var yyrt3575 bool + if yyl3575 > cap(yyv3575) { - yyrg3570 := len(yyv3570) > 0 - yyv23570 := yyv3570 - yyrl3570, yyrt3570 = z.DecInferLen(yyl3570, z.DecBasicHandle().MaxInitLen, 544) - if yyrt3570 { - if yyrl3570 <= cap(yyv3570) { - yyv3570 = yyv3570[:yyrl3570] + yyrg3575 := len(yyv3575) > 0 + yyv23575 := yyv3575 + yyrl3575, yyrt3575 = z.DecInferLen(yyl3575, z.DecBasicHandle().MaxInitLen, 544) + if yyrt3575 { + if yyrl3575 <= cap(yyv3575) { + yyv3575 = yyv3575[:yyrl3575] } else { - yyv3570 = make([]PodTemplate, yyrl3570) + yyv3575 = make([]PodTemplate, yyrl3575) } } else { - yyv3570 = make([]PodTemplate, yyrl3570) + yyv3575 = make([]PodTemplate, yyrl3575) } - yyc3570 = true - yyrr3570 = len(yyv3570) - if yyrg3570 { - copy(yyv3570, yyv23570) + yyc3575 = true + yyrr3575 = len(yyv3575) + if yyrg3575 { + copy(yyv3575, yyv23575) } - } else if yyl3570 != len(yyv3570) { - yyv3570 = yyv3570[:yyl3570] - yyc3570 = true + } else if yyl3575 != len(yyv3575) { + yyv3575 = yyv3575[:yyl3575] + yyc3575 = true } - yyj3570 := 0 - for ; yyj3570 < yyrr3570; yyj3570++ { - yyh3570.ElemContainerState(yyj3570) + yyj3575 := 0 + for ; yyj3575 < yyrr3575; yyj3575++ { + yyh3575.ElemContainerState(yyj3575) if r.TryDecodeAsNil() { - yyv3570[yyj3570] = PodTemplate{} + yyv3575[yyj3575] = PodTemplate{} } else { - yyv3571 := &yyv3570[yyj3570] - yyv3571.CodecDecodeSelf(d) + yyv3576 := &yyv3575[yyj3575] + yyv3576.CodecDecodeSelf(d) } } - if yyrt3570 { - for ; yyj3570 < yyl3570; yyj3570++ { - yyv3570 = append(yyv3570, PodTemplate{}) - yyh3570.ElemContainerState(yyj3570) + if yyrt3575 { + for ; yyj3575 < yyl3575; yyj3575++ { + yyv3575 = append(yyv3575, PodTemplate{}) + yyh3575.ElemContainerState(yyj3575) if r.TryDecodeAsNil() { - yyv3570[yyj3570] = PodTemplate{} + yyv3575[yyj3575] = PodTemplate{} } else { - yyv3572 := &yyv3570[yyj3570] - yyv3572.CodecDecodeSelf(d) + yyv3577 := &yyv3575[yyj3575] + yyv3577.CodecDecodeSelf(d) } } } } else { - yyj3570 := 0 - for ; !r.CheckBreak(); yyj3570++ { + yyj3575 := 0 + for ; !r.CheckBreak(); yyj3575++ { - if yyj3570 >= len(yyv3570) { - yyv3570 = append(yyv3570, PodTemplate{}) // var yyz3570 PodTemplate - yyc3570 = true + if yyj3575 >= len(yyv3575) { + yyv3575 = append(yyv3575, PodTemplate{}) // var yyz3575 PodTemplate + yyc3575 = true } - yyh3570.ElemContainerState(yyj3570) - if yyj3570 < len(yyv3570) { + yyh3575.ElemContainerState(yyj3575) + if yyj3575 < len(yyv3575) { if r.TryDecodeAsNil() { - yyv3570[yyj3570] = PodTemplate{} + yyv3575[yyj3575] = PodTemplate{} } else { - yyv3573 := &yyv3570[yyj3570] - yyv3573.CodecDecodeSelf(d) + yyv3578 := &yyv3575[yyj3575] + yyv3578.CodecDecodeSelf(d) } } else { @@ -44790,17 +44838,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj3570 < len(yyv3570) { - yyv3570 = yyv3570[:yyj3570] - yyc3570 = true - } else if yyj3570 == 0 && yyv3570 == nil { - yyv3570 = []PodTemplate{} - yyc3570 = true + if yyj3575 < len(yyv3575) { + yyv3575 = yyv3575[:yyj3575] + yyc3575 = true + } else if yyj3575 == 0 && yyv3575 == nil { + yyv3575 = []PodTemplate{} + yyc3575 = true } } - yyh3570.End() - if yyc3570 { - *v = yyv3570 + yyh3575.End() + if yyc3575 { + *v = yyv3575 } } @@ -44809,10 +44857,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3574 := range v { + for _, yyv3579 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3575 := &yyv3574 - yy3575.CodecEncodeSelf(e) + yy3580 := &yyv3579 + yy3580.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44822,83 +44870,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3576 := *v - yyh3576, yyl3576 := z.DecSliceHelperStart() - var yyc3576 bool - if yyl3576 == 0 { - if yyv3576 == nil { - yyv3576 = []ReplicationController{} - yyc3576 = true - } else if len(yyv3576) != 0 { - yyv3576 = yyv3576[:0] - yyc3576 = true + yyv3581 := *v + yyh3581, yyl3581 := z.DecSliceHelperStart() + var yyc3581 bool + if yyl3581 == 0 { + if yyv3581 == nil { + yyv3581 = []ReplicationController{} + yyc3581 = true + } else if len(yyv3581) != 0 { + yyv3581 = yyv3581[:0] + yyc3581 = true } - } else if yyl3576 > 0 { - var yyrr3576, yyrl3576 int - var yyrt3576 bool - if yyl3576 > cap(yyv3576) { + } else if yyl3581 > 0 { + var yyrr3581, yyrl3581 int + var yyrt3581 bool + if yyl3581 > cap(yyv3581) { - yyrg3576 := len(yyv3576) > 0 - yyv23576 := yyv3576 - yyrl3576, yyrt3576 = z.DecInferLen(yyl3576, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3576 { - if yyrl3576 <= cap(yyv3576) { - yyv3576 = yyv3576[:yyrl3576] + yyrg3581 := len(yyv3581) > 0 + yyv23581 := yyv3581 + yyrl3581, yyrt3581 = z.DecInferLen(yyl3581, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3581 { + if yyrl3581 <= cap(yyv3581) { + yyv3581 = yyv3581[:yyrl3581] } else { - yyv3576 = make([]ReplicationController, yyrl3576) + yyv3581 = make([]ReplicationController, yyrl3581) } } else { - yyv3576 = make([]ReplicationController, yyrl3576) + yyv3581 = make([]ReplicationController, yyrl3581) } - yyc3576 = true - yyrr3576 = len(yyv3576) - if yyrg3576 { - copy(yyv3576, yyv23576) + yyc3581 = true + yyrr3581 = len(yyv3581) + if yyrg3581 { + copy(yyv3581, yyv23581) } - } else if yyl3576 != len(yyv3576) { - yyv3576 = yyv3576[:yyl3576] - yyc3576 = true + } else if yyl3581 != len(yyv3581) { + yyv3581 = yyv3581[:yyl3581] + yyc3581 = true } - yyj3576 := 0 - for ; yyj3576 < yyrr3576; yyj3576++ { - yyh3576.ElemContainerState(yyj3576) + yyj3581 := 0 + for ; yyj3581 < yyrr3581; yyj3581++ { + yyh3581.ElemContainerState(yyj3581) if r.TryDecodeAsNil() { - yyv3576[yyj3576] = ReplicationController{} + yyv3581[yyj3581] = ReplicationController{} } else { - yyv3577 := &yyv3576[yyj3576] - yyv3577.CodecDecodeSelf(d) + yyv3582 := &yyv3581[yyj3581] + yyv3582.CodecDecodeSelf(d) } } - if yyrt3576 { - for ; yyj3576 < yyl3576; yyj3576++ { - yyv3576 = append(yyv3576, ReplicationController{}) - yyh3576.ElemContainerState(yyj3576) + if yyrt3581 { + for ; yyj3581 < yyl3581; yyj3581++ { + yyv3581 = append(yyv3581, ReplicationController{}) + yyh3581.ElemContainerState(yyj3581) if r.TryDecodeAsNil() { - yyv3576[yyj3576] = ReplicationController{} + yyv3581[yyj3581] = ReplicationController{} } else { - yyv3578 := &yyv3576[yyj3576] - yyv3578.CodecDecodeSelf(d) + yyv3583 := &yyv3581[yyj3581] + yyv3583.CodecDecodeSelf(d) } } } } else { - yyj3576 := 0 - for ; !r.CheckBreak(); yyj3576++ { + yyj3581 := 0 + for ; !r.CheckBreak(); yyj3581++ { - if yyj3576 >= len(yyv3576) { - yyv3576 = append(yyv3576, ReplicationController{}) // var yyz3576 ReplicationController - yyc3576 = true + if yyj3581 >= len(yyv3581) { + yyv3581 = append(yyv3581, ReplicationController{}) // var yyz3581 ReplicationController + yyc3581 = true } - yyh3576.ElemContainerState(yyj3576) - if yyj3576 < len(yyv3576) { + yyh3581.ElemContainerState(yyj3581) + if yyj3581 < len(yyv3581) { if r.TryDecodeAsNil() { - yyv3576[yyj3576] = ReplicationController{} + yyv3581[yyj3581] = ReplicationController{} } else { - yyv3579 := &yyv3576[yyj3576] - yyv3579.CodecDecodeSelf(d) + yyv3584 := &yyv3581[yyj3581] + yyv3584.CodecDecodeSelf(d) } } else { @@ -44906,17 +44954,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj3576 < len(yyv3576) { - yyv3576 = yyv3576[:yyj3576] - yyc3576 = true - } else if yyj3576 == 0 && yyv3576 == nil { - yyv3576 = []ReplicationController{} - yyc3576 = true + if yyj3581 < len(yyv3581) { + yyv3581 = yyv3581[:yyj3581] + yyc3581 = true + } else if yyj3581 == 0 && yyv3581 == nil { + yyv3581 = []ReplicationController{} + yyc3581 = true } } - yyh3576.End() - if yyc3576 { - *v = yyv3576 + yyh3581.End() + if yyc3581 { + *v = yyv3581 } } @@ -44925,10 +44973,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3580 := range v { + for _, yyv3585 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3581 := &yyv3580 - yy3581.CodecEncodeSelf(e) + yy3586 := &yyv3585 + yy3586.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44938,83 +44986,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3582 := *v - yyh3582, yyl3582 := z.DecSliceHelperStart() - var yyc3582 bool - if yyl3582 == 0 { - if yyv3582 == nil { - yyv3582 = []LoadBalancerIngress{} - yyc3582 = true - } else if len(yyv3582) != 0 { - yyv3582 = yyv3582[:0] - yyc3582 = true + yyv3587 := *v + yyh3587, yyl3587 := z.DecSliceHelperStart() + var yyc3587 bool + if yyl3587 == 0 { + if yyv3587 == nil { + yyv3587 = []LoadBalancerIngress{} + yyc3587 = true + } else if len(yyv3587) != 0 { + yyv3587 = yyv3587[:0] + yyc3587 = true } - } else if yyl3582 > 0 { - var yyrr3582, yyrl3582 int - var yyrt3582 bool - if yyl3582 > cap(yyv3582) { + } else if yyl3587 > 0 { + var yyrr3587, yyrl3587 int + var yyrt3587 bool + if yyl3587 > cap(yyv3587) { - yyrg3582 := len(yyv3582) > 0 - yyv23582 := yyv3582 - yyrl3582, yyrt3582 = z.DecInferLen(yyl3582, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3582 { - if yyrl3582 <= cap(yyv3582) { - yyv3582 = yyv3582[:yyrl3582] + yyrg3587 := len(yyv3587) > 0 + yyv23587 := yyv3587 + yyrl3587, yyrt3587 = z.DecInferLen(yyl3587, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3587 { + if yyrl3587 <= cap(yyv3587) { + yyv3587 = yyv3587[:yyrl3587] } else { - yyv3582 = make([]LoadBalancerIngress, yyrl3582) + yyv3587 = make([]LoadBalancerIngress, yyrl3587) } } else { - yyv3582 = make([]LoadBalancerIngress, yyrl3582) + yyv3587 = make([]LoadBalancerIngress, yyrl3587) } - yyc3582 = true - yyrr3582 = len(yyv3582) - if yyrg3582 { - copy(yyv3582, yyv23582) + yyc3587 = true + yyrr3587 = len(yyv3587) + if yyrg3587 { + copy(yyv3587, yyv23587) } - } else if yyl3582 != len(yyv3582) { - yyv3582 = yyv3582[:yyl3582] - yyc3582 = true + } else if yyl3587 != len(yyv3587) { + yyv3587 = yyv3587[:yyl3587] + yyc3587 = true } - yyj3582 := 0 - for ; yyj3582 < yyrr3582; yyj3582++ { - yyh3582.ElemContainerState(yyj3582) + yyj3587 := 0 + for ; yyj3587 < yyrr3587; yyj3587++ { + yyh3587.ElemContainerState(yyj3587) if r.TryDecodeAsNil() { - yyv3582[yyj3582] = LoadBalancerIngress{} + yyv3587[yyj3587] = LoadBalancerIngress{} } else { - yyv3583 := &yyv3582[yyj3582] - yyv3583.CodecDecodeSelf(d) + yyv3588 := &yyv3587[yyj3587] + yyv3588.CodecDecodeSelf(d) } } - if yyrt3582 { - for ; yyj3582 < yyl3582; yyj3582++ { - yyv3582 = append(yyv3582, LoadBalancerIngress{}) - yyh3582.ElemContainerState(yyj3582) + if yyrt3587 { + for ; yyj3587 < yyl3587; yyj3587++ { + yyv3587 = append(yyv3587, LoadBalancerIngress{}) + yyh3587.ElemContainerState(yyj3587) if r.TryDecodeAsNil() { - yyv3582[yyj3582] = LoadBalancerIngress{} + yyv3587[yyj3587] = LoadBalancerIngress{} } else { - yyv3584 := &yyv3582[yyj3582] - yyv3584.CodecDecodeSelf(d) + yyv3589 := &yyv3587[yyj3587] + yyv3589.CodecDecodeSelf(d) } } } } else { - yyj3582 := 0 - for ; !r.CheckBreak(); yyj3582++ { + yyj3587 := 0 + for ; !r.CheckBreak(); yyj3587++ { - if yyj3582 >= len(yyv3582) { - yyv3582 = append(yyv3582, LoadBalancerIngress{}) // var yyz3582 LoadBalancerIngress - yyc3582 = true + if yyj3587 >= len(yyv3587) { + yyv3587 = append(yyv3587, LoadBalancerIngress{}) // var yyz3587 LoadBalancerIngress + yyc3587 = true } - yyh3582.ElemContainerState(yyj3582) - if yyj3582 < len(yyv3582) { + yyh3587.ElemContainerState(yyj3587) + if yyj3587 < len(yyv3587) { if r.TryDecodeAsNil() { - yyv3582[yyj3582] = LoadBalancerIngress{} + yyv3587[yyj3587] = LoadBalancerIngress{} } else { - yyv3585 := &yyv3582[yyj3582] - yyv3585.CodecDecodeSelf(d) + yyv3590 := &yyv3587[yyj3587] + yyv3590.CodecDecodeSelf(d) } } else { @@ -45022,17 +45070,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj3582 < len(yyv3582) { - yyv3582 = yyv3582[:yyj3582] - yyc3582 = true - } else if yyj3582 == 0 && yyv3582 == nil { - yyv3582 = []LoadBalancerIngress{} - yyc3582 = true + if yyj3587 < len(yyv3587) { + yyv3587 = yyv3587[:yyj3587] + yyc3587 = true + } else if yyj3587 == 0 && yyv3587 == nil { + yyv3587 = []LoadBalancerIngress{} + yyc3587 = true } } - yyh3582.End() - if yyc3582 { - *v = yyv3582 + yyh3587.End() + if yyc3587 { + *v = yyv3587 } } @@ -45041,10 +45089,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3586 := range v { + for _, yyv3591 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3587 := &yyv3586 - yy3587.CodecEncodeSelf(e) + yy3592 := &yyv3591 + yy3592.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45054,83 +45102,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3588 := *v - yyh3588, yyl3588 := z.DecSliceHelperStart() - var yyc3588 bool - if yyl3588 == 0 { - if yyv3588 == nil { - yyv3588 = []ServicePort{} - yyc3588 = true - } else if len(yyv3588) != 0 { - yyv3588 = yyv3588[:0] - yyc3588 = true + yyv3593 := *v + yyh3593, yyl3593 := z.DecSliceHelperStart() + var yyc3593 bool + if yyl3593 == 0 { + if yyv3593 == nil { + yyv3593 = []ServicePort{} + yyc3593 = true + } else if len(yyv3593) != 0 { + yyv3593 = yyv3593[:0] + yyc3593 = true } - } else if yyl3588 > 0 { - var yyrr3588, yyrl3588 int - var yyrt3588 bool - if yyl3588 > cap(yyv3588) { + } else if yyl3593 > 0 { + var yyrr3593, yyrl3593 int + var yyrt3593 bool + if yyl3593 > cap(yyv3593) { - yyrg3588 := len(yyv3588) > 0 - yyv23588 := yyv3588 - yyrl3588, yyrt3588 = z.DecInferLen(yyl3588, z.DecBasicHandle().MaxInitLen, 80) - if yyrt3588 { - if yyrl3588 <= cap(yyv3588) { - yyv3588 = yyv3588[:yyrl3588] + yyrg3593 := len(yyv3593) > 0 + yyv23593 := yyv3593 + yyrl3593, yyrt3593 = z.DecInferLen(yyl3593, z.DecBasicHandle().MaxInitLen, 80) + if yyrt3593 { + if yyrl3593 <= cap(yyv3593) { + yyv3593 = yyv3593[:yyrl3593] } else { - yyv3588 = make([]ServicePort, yyrl3588) + yyv3593 = make([]ServicePort, yyrl3593) } } else { - yyv3588 = make([]ServicePort, yyrl3588) + yyv3593 = make([]ServicePort, yyrl3593) } - yyc3588 = true - yyrr3588 = len(yyv3588) - if yyrg3588 { - copy(yyv3588, yyv23588) + yyc3593 = true + yyrr3593 = len(yyv3593) + if yyrg3593 { + copy(yyv3593, yyv23593) } - } else if yyl3588 != len(yyv3588) { - yyv3588 = yyv3588[:yyl3588] - yyc3588 = true + } else if yyl3593 != len(yyv3593) { + yyv3593 = yyv3593[:yyl3593] + yyc3593 = true } - yyj3588 := 0 - for ; yyj3588 < yyrr3588; yyj3588++ { - yyh3588.ElemContainerState(yyj3588) + yyj3593 := 0 + for ; yyj3593 < yyrr3593; yyj3593++ { + yyh3593.ElemContainerState(yyj3593) if r.TryDecodeAsNil() { - yyv3588[yyj3588] = ServicePort{} + yyv3593[yyj3593] = ServicePort{} } else { - yyv3589 := &yyv3588[yyj3588] - yyv3589.CodecDecodeSelf(d) + yyv3594 := &yyv3593[yyj3593] + yyv3594.CodecDecodeSelf(d) } } - if yyrt3588 { - for ; yyj3588 < yyl3588; yyj3588++ { - yyv3588 = append(yyv3588, ServicePort{}) - yyh3588.ElemContainerState(yyj3588) + if yyrt3593 { + for ; yyj3593 < yyl3593; yyj3593++ { + yyv3593 = append(yyv3593, ServicePort{}) + yyh3593.ElemContainerState(yyj3593) if r.TryDecodeAsNil() { - yyv3588[yyj3588] = ServicePort{} + yyv3593[yyj3593] = ServicePort{} } else { - yyv3590 := &yyv3588[yyj3588] - yyv3590.CodecDecodeSelf(d) + yyv3595 := &yyv3593[yyj3593] + yyv3595.CodecDecodeSelf(d) } } } } else { - yyj3588 := 0 - for ; !r.CheckBreak(); yyj3588++ { + yyj3593 := 0 + for ; !r.CheckBreak(); yyj3593++ { - if yyj3588 >= len(yyv3588) { - yyv3588 = append(yyv3588, ServicePort{}) // var yyz3588 ServicePort - yyc3588 = true + if yyj3593 >= len(yyv3593) { + yyv3593 = append(yyv3593, ServicePort{}) // var yyz3593 ServicePort + yyc3593 = true } - yyh3588.ElemContainerState(yyj3588) - if yyj3588 < len(yyv3588) { + yyh3593.ElemContainerState(yyj3593) + if yyj3593 < len(yyv3593) { if r.TryDecodeAsNil() { - yyv3588[yyj3588] = ServicePort{} + yyv3593[yyj3593] = ServicePort{} } else { - yyv3591 := &yyv3588[yyj3588] - yyv3591.CodecDecodeSelf(d) + yyv3596 := &yyv3593[yyj3593] + yyv3596.CodecDecodeSelf(d) } } else { @@ -45138,17 +45186,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj3588 < len(yyv3588) { - yyv3588 = yyv3588[:yyj3588] - yyc3588 = true - } else if yyj3588 == 0 && yyv3588 == nil { - yyv3588 = []ServicePort{} - yyc3588 = true + if yyj3593 < len(yyv3593) { + yyv3593 = yyv3593[:yyj3593] + yyc3593 = true + } else if yyj3593 == 0 && yyv3593 == nil { + yyv3593 = []ServicePort{} + yyc3593 = true } } - yyh3588.End() - if yyc3588 { - *v = yyv3588 + yyh3593.End() + if yyc3593 { + *v = yyv3593 } } @@ -45157,10 +45205,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3592 := range v { + for _, yyv3597 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3593 := &yyv3592 - yy3593.CodecEncodeSelf(e) + yy3598 := &yyv3597 + yy3598.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45170,83 +45218,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3594 := *v - yyh3594, yyl3594 := z.DecSliceHelperStart() - var yyc3594 bool - if yyl3594 == 0 { - if yyv3594 == nil { - yyv3594 = []Service{} - yyc3594 = true - } else if len(yyv3594) != 0 { - yyv3594 = yyv3594[:0] - yyc3594 = true + yyv3599 := *v + yyh3599, yyl3599 := z.DecSliceHelperStart() + var yyc3599 bool + if yyl3599 == 0 { + if yyv3599 == nil { + yyv3599 = []Service{} + yyc3599 = true + } else if len(yyv3599) != 0 { + yyv3599 = yyv3599[:0] + yyc3599 = true } - } else if yyl3594 > 0 { - var yyrr3594, yyrl3594 int - var yyrt3594 bool - if yyl3594 > cap(yyv3594) { + } else if yyl3599 > 0 { + var yyrr3599, yyrl3599 int + var yyrt3599 bool + if yyl3599 > cap(yyv3599) { - yyrg3594 := len(yyv3594) > 0 - yyv23594 := yyv3594 - yyrl3594, yyrt3594 = z.DecInferLen(yyl3594, z.DecBasicHandle().MaxInitLen, 360) - if yyrt3594 { - if yyrl3594 <= cap(yyv3594) { - yyv3594 = yyv3594[:yyrl3594] + yyrg3599 := len(yyv3599) > 0 + yyv23599 := yyv3599 + yyrl3599, yyrt3599 = z.DecInferLen(yyl3599, z.DecBasicHandle().MaxInitLen, 360) + if yyrt3599 { + if yyrl3599 <= cap(yyv3599) { + yyv3599 = yyv3599[:yyrl3599] } else { - yyv3594 = make([]Service, yyrl3594) + yyv3599 = make([]Service, yyrl3599) } } else { - yyv3594 = make([]Service, yyrl3594) + yyv3599 = make([]Service, yyrl3599) } - yyc3594 = true - yyrr3594 = len(yyv3594) - if yyrg3594 { - copy(yyv3594, yyv23594) + yyc3599 = true + yyrr3599 = len(yyv3599) + if yyrg3599 { + copy(yyv3599, yyv23599) } - } else if yyl3594 != len(yyv3594) { - yyv3594 = yyv3594[:yyl3594] - yyc3594 = true + } else if yyl3599 != len(yyv3599) { + yyv3599 = yyv3599[:yyl3599] + yyc3599 = true } - yyj3594 := 0 - for ; yyj3594 < yyrr3594; yyj3594++ { - yyh3594.ElemContainerState(yyj3594) + yyj3599 := 0 + for ; yyj3599 < yyrr3599; yyj3599++ { + yyh3599.ElemContainerState(yyj3599) if r.TryDecodeAsNil() { - yyv3594[yyj3594] = Service{} + yyv3599[yyj3599] = Service{} } else { - yyv3595 := &yyv3594[yyj3594] - yyv3595.CodecDecodeSelf(d) + yyv3600 := &yyv3599[yyj3599] + yyv3600.CodecDecodeSelf(d) } } - if yyrt3594 { - for ; yyj3594 < yyl3594; yyj3594++ { - yyv3594 = append(yyv3594, Service{}) - yyh3594.ElemContainerState(yyj3594) + if yyrt3599 { + for ; yyj3599 < yyl3599; yyj3599++ { + yyv3599 = append(yyv3599, Service{}) + yyh3599.ElemContainerState(yyj3599) if r.TryDecodeAsNil() { - yyv3594[yyj3594] = Service{} + yyv3599[yyj3599] = Service{} } else { - yyv3596 := &yyv3594[yyj3594] - yyv3596.CodecDecodeSelf(d) + yyv3601 := &yyv3599[yyj3599] + yyv3601.CodecDecodeSelf(d) } } } } else { - yyj3594 := 0 - for ; !r.CheckBreak(); yyj3594++ { + yyj3599 := 0 + for ; !r.CheckBreak(); yyj3599++ { - if yyj3594 >= len(yyv3594) { - yyv3594 = append(yyv3594, Service{}) // var yyz3594 Service - yyc3594 = true + if yyj3599 >= len(yyv3599) { + yyv3599 = append(yyv3599, Service{}) // var yyz3599 Service + yyc3599 = true } - yyh3594.ElemContainerState(yyj3594) - if yyj3594 < len(yyv3594) { + yyh3599.ElemContainerState(yyj3599) + if yyj3599 < len(yyv3599) { if r.TryDecodeAsNil() { - yyv3594[yyj3594] = Service{} + yyv3599[yyj3599] = Service{} } else { - yyv3597 := &yyv3594[yyj3594] - yyv3597.CodecDecodeSelf(d) + yyv3602 := &yyv3599[yyj3599] + yyv3602.CodecDecodeSelf(d) } } else { @@ -45254,17 +45302,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj3594 < len(yyv3594) { - yyv3594 = yyv3594[:yyj3594] - yyc3594 = true - } else if yyj3594 == 0 && yyv3594 == nil { - yyv3594 = []Service{} - yyc3594 = true + if yyj3599 < len(yyv3599) { + yyv3599 = yyv3599[:yyj3599] + yyc3599 = true + } else if yyj3599 == 0 && yyv3599 == nil { + yyv3599 = []Service{} + yyc3599 = true } } - yyh3594.End() - if yyc3594 { - *v = yyv3594 + yyh3599.End() + if yyc3599 { + *v = yyv3599 } } @@ -45273,10 +45321,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3598 := range v { + for _, yyv3603 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3599 := &yyv3598 - yy3599.CodecEncodeSelf(e) + yy3604 := &yyv3603 + yy3604.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45286,83 +45334,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3600 := *v - yyh3600, yyl3600 := z.DecSliceHelperStart() - var yyc3600 bool - if yyl3600 == 0 { - if yyv3600 == nil { - yyv3600 = []ObjectReference{} - yyc3600 = true - } else if len(yyv3600) != 0 { - yyv3600 = yyv3600[:0] - yyc3600 = true + yyv3605 := *v + yyh3605, yyl3605 := z.DecSliceHelperStart() + var yyc3605 bool + if yyl3605 == 0 { + if yyv3605 == nil { + yyv3605 = []ObjectReference{} + yyc3605 = true + } else if len(yyv3605) != 0 { + yyv3605 = yyv3605[:0] + yyc3605 = true } - } else if yyl3600 > 0 { - var yyrr3600, yyrl3600 int - var yyrt3600 bool - if yyl3600 > cap(yyv3600) { + } else if yyl3605 > 0 { + var yyrr3605, yyrl3605 int + var yyrt3605 bool + if yyl3605 > cap(yyv3605) { - yyrg3600 := len(yyv3600) > 0 - yyv23600 := yyv3600 - yyrl3600, yyrt3600 = z.DecInferLen(yyl3600, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3600 { - if yyrl3600 <= cap(yyv3600) { - yyv3600 = yyv3600[:yyrl3600] + yyrg3605 := len(yyv3605) > 0 + yyv23605 := yyv3605 + yyrl3605, yyrt3605 = z.DecInferLen(yyl3605, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3605 { + if yyrl3605 <= cap(yyv3605) { + yyv3605 = yyv3605[:yyrl3605] } else { - yyv3600 = make([]ObjectReference, yyrl3600) + yyv3605 = make([]ObjectReference, yyrl3605) } } else { - yyv3600 = make([]ObjectReference, yyrl3600) + yyv3605 = make([]ObjectReference, yyrl3605) } - yyc3600 = true - yyrr3600 = len(yyv3600) - if yyrg3600 { - copy(yyv3600, yyv23600) + yyc3605 = true + yyrr3605 = len(yyv3605) + if yyrg3605 { + copy(yyv3605, yyv23605) } - } else if yyl3600 != len(yyv3600) { - yyv3600 = yyv3600[:yyl3600] - yyc3600 = true + } else if yyl3605 != len(yyv3605) { + yyv3605 = yyv3605[:yyl3605] + yyc3605 = true } - yyj3600 := 0 - for ; yyj3600 < yyrr3600; yyj3600++ { - yyh3600.ElemContainerState(yyj3600) + yyj3605 := 0 + for ; yyj3605 < yyrr3605; yyj3605++ { + yyh3605.ElemContainerState(yyj3605) if r.TryDecodeAsNil() { - yyv3600[yyj3600] = ObjectReference{} + yyv3605[yyj3605] = ObjectReference{} } else { - yyv3601 := &yyv3600[yyj3600] - yyv3601.CodecDecodeSelf(d) + yyv3606 := &yyv3605[yyj3605] + yyv3606.CodecDecodeSelf(d) } } - if yyrt3600 { - for ; yyj3600 < yyl3600; yyj3600++ { - yyv3600 = append(yyv3600, ObjectReference{}) - yyh3600.ElemContainerState(yyj3600) + if yyrt3605 { + for ; yyj3605 < yyl3605; yyj3605++ { + yyv3605 = append(yyv3605, ObjectReference{}) + yyh3605.ElemContainerState(yyj3605) if r.TryDecodeAsNil() { - yyv3600[yyj3600] = ObjectReference{} + yyv3605[yyj3605] = ObjectReference{} } else { - yyv3602 := &yyv3600[yyj3600] - yyv3602.CodecDecodeSelf(d) + yyv3607 := &yyv3605[yyj3605] + yyv3607.CodecDecodeSelf(d) } } } } else { - yyj3600 := 0 - for ; !r.CheckBreak(); yyj3600++ { + yyj3605 := 0 + for ; !r.CheckBreak(); yyj3605++ { - if yyj3600 >= len(yyv3600) { - yyv3600 = append(yyv3600, ObjectReference{}) // var yyz3600 ObjectReference - yyc3600 = true + if yyj3605 >= len(yyv3605) { + yyv3605 = append(yyv3605, ObjectReference{}) // var yyz3605 ObjectReference + yyc3605 = true } - yyh3600.ElemContainerState(yyj3600) - if yyj3600 < len(yyv3600) { + yyh3605.ElemContainerState(yyj3605) + if yyj3605 < len(yyv3605) { if r.TryDecodeAsNil() { - yyv3600[yyj3600] = ObjectReference{} + yyv3605[yyj3605] = ObjectReference{} } else { - yyv3603 := &yyv3600[yyj3600] - yyv3603.CodecDecodeSelf(d) + yyv3608 := &yyv3605[yyj3605] + yyv3608.CodecDecodeSelf(d) } } else { @@ -45370,17 +45418,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj3600 < len(yyv3600) { - yyv3600 = yyv3600[:yyj3600] - yyc3600 = true - } else if yyj3600 == 0 && yyv3600 == nil { - yyv3600 = []ObjectReference{} - yyc3600 = true + if yyj3605 < len(yyv3605) { + yyv3605 = yyv3605[:yyj3605] + yyc3605 = true + } else if yyj3605 == 0 && yyv3605 == nil { + yyv3605 = []ObjectReference{} + yyc3605 = true } } - yyh3600.End() - if yyc3600 { - *v = yyv3600 + yyh3605.End() + if yyc3605 { + *v = yyv3605 } } @@ -45389,10 +45437,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3604 := range v { + for _, yyv3609 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3605 := &yyv3604 - yy3605.CodecEncodeSelf(e) + yy3610 := &yyv3609 + yy3610.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45402,83 +45450,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3606 := *v - yyh3606, yyl3606 := z.DecSliceHelperStart() - var yyc3606 bool - if yyl3606 == 0 { - if yyv3606 == nil { - yyv3606 = []ServiceAccount{} - yyc3606 = true - } else if len(yyv3606) != 0 { - yyv3606 = yyv3606[:0] - yyc3606 = true + yyv3611 := *v + yyh3611, yyl3611 := z.DecSliceHelperStart() + var yyc3611 bool + if yyl3611 == 0 { + if yyv3611 == nil { + yyv3611 = []ServiceAccount{} + yyc3611 = true + } else if len(yyv3611) != 0 { + yyv3611 = yyv3611[:0] + yyc3611 = true } - } else if yyl3606 > 0 { - var yyrr3606, yyrl3606 int - var yyrt3606 bool - if yyl3606 > cap(yyv3606) { + } else if yyl3611 > 0 { + var yyrr3611, yyrl3611 int + var yyrt3611 bool + if yyl3611 > cap(yyv3611) { - yyrg3606 := len(yyv3606) > 0 - yyv23606 := yyv3606 - yyrl3606, yyrt3606 = z.DecInferLen(yyl3606, z.DecBasicHandle().MaxInitLen, 240) - if yyrt3606 { - if yyrl3606 <= cap(yyv3606) { - yyv3606 = yyv3606[:yyrl3606] + yyrg3611 := len(yyv3611) > 0 + yyv23611 := yyv3611 + yyrl3611, yyrt3611 = z.DecInferLen(yyl3611, z.DecBasicHandle().MaxInitLen, 240) + if yyrt3611 { + if yyrl3611 <= cap(yyv3611) { + yyv3611 = yyv3611[:yyrl3611] } else { - yyv3606 = make([]ServiceAccount, yyrl3606) + yyv3611 = make([]ServiceAccount, yyrl3611) } } else { - yyv3606 = make([]ServiceAccount, yyrl3606) + yyv3611 = make([]ServiceAccount, yyrl3611) } - yyc3606 = true - yyrr3606 = len(yyv3606) - if yyrg3606 { - copy(yyv3606, yyv23606) + yyc3611 = true + yyrr3611 = len(yyv3611) + if yyrg3611 { + copy(yyv3611, yyv23611) } - } else if yyl3606 != len(yyv3606) { - yyv3606 = yyv3606[:yyl3606] - yyc3606 = true + } else if yyl3611 != len(yyv3611) { + yyv3611 = yyv3611[:yyl3611] + yyc3611 = true } - yyj3606 := 0 - for ; yyj3606 < yyrr3606; yyj3606++ { - yyh3606.ElemContainerState(yyj3606) + yyj3611 := 0 + for ; yyj3611 < yyrr3611; yyj3611++ { + yyh3611.ElemContainerState(yyj3611) if r.TryDecodeAsNil() { - yyv3606[yyj3606] = ServiceAccount{} + yyv3611[yyj3611] = ServiceAccount{} } else { - yyv3607 := &yyv3606[yyj3606] - yyv3607.CodecDecodeSelf(d) + yyv3612 := &yyv3611[yyj3611] + yyv3612.CodecDecodeSelf(d) } } - if yyrt3606 { - for ; yyj3606 < yyl3606; yyj3606++ { - yyv3606 = append(yyv3606, ServiceAccount{}) - yyh3606.ElemContainerState(yyj3606) + if yyrt3611 { + for ; yyj3611 < yyl3611; yyj3611++ { + yyv3611 = append(yyv3611, ServiceAccount{}) + yyh3611.ElemContainerState(yyj3611) if r.TryDecodeAsNil() { - yyv3606[yyj3606] = ServiceAccount{} + yyv3611[yyj3611] = ServiceAccount{} } else { - yyv3608 := &yyv3606[yyj3606] - yyv3608.CodecDecodeSelf(d) + yyv3613 := &yyv3611[yyj3611] + yyv3613.CodecDecodeSelf(d) } } } } else { - yyj3606 := 0 - for ; !r.CheckBreak(); yyj3606++ { + yyj3611 := 0 + for ; !r.CheckBreak(); yyj3611++ { - if yyj3606 >= len(yyv3606) { - yyv3606 = append(yyv3606, ServiceAccount{}) // var yyz3606 ServiceAccount - yyc3606 = true + if yyj3611 >= len(yyv3611) { + yyv3611 = append(yyv3611, ServiceAccount{}) // var yyz3611 ServiceAccount + yyc3611 = true } - yyh3606.ElemContainerState(yyj3606) - if yyj3606 < len(yyv3606) { + yyh3611.ElemContainerState(yyj3611) + if yyj3611 < len(yyv3611) { if r.TryDecodeAsNil() { - yyv3606[yyj3606] = ServiceAccount{} + yyv3611[yyj3611] = ServiceAccount{} } else { - yyv3609 := &yyv3606[yyj3606] - yyv3609.CodecDecodeSelf(d) + yyv3614 := &yyv3611[yyj3611] + yyv3614.CodecDecodeSelf(d) } } else { @@ -45486,17 +45534,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj3606 < len(yyv3606) { - yyv3606 = yyv3606[:yyj3606] - yyc3606 = true - } else if yyj3606 == 0 && yyv3606 == nil { - yyv3606 = []ServiceAccount{} - yyc3606 = true + if yyj3611 < len(yyv3611) { + yyv3611 = yyv3611[:yyj3611] + yyc3611 = true + } else if yyj3611 == 0 && yyv3611 == nil { + yyv3611 = []ServiceAccount{} + yyc3611 = true } } - yyh3606.End() - if yyc3606 { - *v = yyv3606 + yyh3611.End() + if yyc3611 { + *v = yyv3611 } } @@ -45505,10 +45553,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3610 := range v { + for _, yyv3615 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3611 := &yyv3610 - yy3611.CodecEncodeSelf(e) + yy3616 := &yyv3615 + yy3616.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45518,83 +45566,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3612 := *v - yyh3612, yyl3612 := z.DecSliceHelperStart() - var yyc3612 bool - if yyl3612 == 0 { - if yyv3612 == nil { - yyv3612 = []EndpointSubset{} - yyc3612 = true - } else if len(yyv3612) != 0 { - yyv3612 = yyv3612[:0] - yyc3612 = true + yyv3617 := *v + yyh3617, yyl3617 := z.DecSliceHelperStart() + var yyc3617 bool + if yyl3617 == 0 { + if yyv3617 == nil { + yyv3617 = []EndpointSubset{} + yyc3617 = true + } else if len(yyv3617) != 0 { + yyv3617 = yyv3617[:0] + yyc3617 = true } - } else if yyl3612 > 0 { - var yyrr3612, yyrl3612 int - var yyrt3612 bool - if yyl3612 > cap(yyv3612) { + } else if yyl3617 > 0 { + var yyrr3617, yyrl3617 int + var yyrt3617 bool + if yyl3617 > cap(yyv3617) { - yyrg3612 := len(yyv3612) > 0 - yyv23612 := yyv3612 - yyrl3612, yyrt3612 = z.DecInferLen(yyl3612, z.DecBasicHandle().MaxInitLen, 72) - if yyrt3612 { - if yyrl3612 <= cap(yyv3612) { - yyv3612 = yyv3612[:yyrl3612] + yyrg3617 := len(yyv3617) > 0 + yyv23617 := yyv3617 + yyrl3617, yyrt3617 = z.DecInferLen(yyl3617, z.DecBasicHandle().MaxInitLen, 72) + if yyrt3617 { + if yyrl3617 <= cap(yyv3617) { + yyv3617 = yyv3617[:yyrl3617] } else { - yyv3612 = make([]EndpointSubset, yyrl3612) + yyv3617 = make([]EndpointSubset, yyrl3617) } } else { - yyv3612 = make([]EndpointSubset, yyrl3612) + yyv3617 = make([]EndpointSubset, yyrl3617) } - yyc3612 = true - yyrr3612 = len(yyv3612) - if yyrg3612 { - copy(yyv3612, yyv23612) + yyc3617 = true + yyrr3617 = len(yyv3617) + if yyrg3617 { + copy(yyv3617, yyv23617) } - } else if yyl3612 != len(yyv3612) { - yyv3612 = yyv3612[:yyl3612] - yyc3612 = true + } else if yyl3617 != len(yyv3617) { + yyv3617 = yyv3617[:yyl3617] + yyc3617 = true } - yyj3612 := 0 - for ; yyj3612 < yyrr3612; yyj3612++ { - yyh3612.ElemContainerState(yyj3612) + yyj3617 := 0 + for ; yyj3617 < yyrr3617; yyj3617++ { + yyh3617.ElemContainerState(yyj3617) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = EndpointSubset{} + yyv3617[yyj3617] = EndpointSubset{} } else { - yyv3613 := &yyv3612[yyj3612] - yyv3613.CodecDecodeSelf(d) + yyv3618 := &yyv3617[yyj3617] + yyv3618.CodecDecodeSelf(d) } } - if yyrt3612 { - for ; yyj3612 < yyl3612; yyj3612++ { - yyv3612 = append(yyv3612, EndpointSubset{}) - yyh3612.ElemContainerState(yyj3612) + if yyrt3617 { + for ; yyj3617 < yyl3617; yyj3617++ { + yyv3617 = append(yyv3617, EndpointSubset{}) + yyh3617.ElemContainerState(yyj3617) if r.TryDecodeAsNil() { - yyv3612[yyj3612] = EndpointSubset{} + yyv3617[yyj3617] = EndpointSubset{} } else { - yyv3614 := &yyv3612[yyj3612] - yyv3614.CodecDecodeSelf(d) + yyv3619 := &yyv3617[yyj3617] + yyv3619.CodecDecodeSelf(d) } } } } else { - yyj3612 := 0 - for ; !r.CheckBreak(); yyj3612++ { + yyj3617 := 0 + for ; !r.CheckBreak(); yyj3617++ { - if yyj3612 >= len(yyv3612) { - yyv3612 = append(yyv3612, EndpointSubset{}) // var yyz3612 EndpointSubset - yyc3612 = true + if yyj3617 >= len(yyv3617) { + yyv3617 = append(yyv3617, EndpointSubset{}) // var yyz3617 EndpointSubset + yyc3617 = true } - yyh3612.ElemContainerState(yyj3612) - if yyj3612 < len(yyv3612) { + yyh3617.ElemContainerState(yyj3617) + if yyj3617 < len(yyv3617) { if r.TryDecodeAsNil() { - yyv3612[yyj3612] = EndpointSubset{} + yyv3617[yyj3617] = EndpointSubset{} } else { - yyv3615 := &yyv3612[yyj3612] - yyv3615.CodecDecodeSelf(d) + yyv3620 := &yyv3617[yyj3617] + yyv3620.CodecDecodeSelf(d) } } else { @@ -45602,17 +45650,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj3612 < len(yyv3612) { - yyv3612 = yyv3612[:yyj3612] - yyc3612 = true - } else if yyj3612 == 0 && yyv3612 == nil { - yyv3612 = []EndpointSubset{} - yyc3612 = true + if yyj3617 < len(yyv3617) { + yyv3617 = yyv3617[:yyj3617] + yyc3617 = true + } else if yyj3617 == 0 && yyv3617 == nil { + yyv3617 = []EndpointSubset{} + yyc3617 = true } } - yyh3612.End() - if yyc3612 { - *v = yyv3612 + yyh3617.End() + if yyc3617 { + *v = yyv3617 } } @@ -45621,10 +45669,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3616 := range v { + for _, yyv3621 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3617 := &yyv3616 - yy3617.CodecEncodeSelf(e) + yy3622 := &yyv3621 + yy3622.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45634,83 +45682,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3618 := *v - yyh3618, yyl3618 := z.DecSliceHelperStart() - var yyc3618 bool - if yyl3618 == 0 { - if yyv3618 == nil { - yyv3618 = []EndpointAddress{} - yyc3618 = true - } else if len(yyv3618) != 0 { - yyv3618 = yyv3618[:0] - yyc3618 = true + yyv3623 := *v + yyh3623, yyl3623 := z.DecSliceHelperStart() + var yyc3623 bool + if yyl3623 == 0 { + if yyv3623 == nil { + yyv3623 = []EndpointAddress{} + yyc3623 = true + } else if len(yyv3623) != 0 { + yyv3623 = yyv3623[:0] + yyc3623 = true } - } else if yyl3618 > 0 { - var yyrr3618, yyrl3618 int - var yyrt3618 bool - if yyl3618 > cap(yyv3618) { + } else if yyl3623 > 0 { + var yyrr3623, yyrl3623 int + var yyrt3623 bool + if yyl3623 > cap(yyv3623) { - yyrg3618 := len(yyv3618) > 0 - yyv23618 := yyv3618 - yyrl3618, yyrt3618 = z.DecInferLen(yyl3618, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3618 { - if yyrl3618 <= cap(yyv3618) { - yyv3618 = yyv3618[:yyrl3618] + yyrg3623 := len(yyv3623) > 0 + yyv23623 := yyv3623 + yyrl3623, yyrt3623 = z.DecInferLen(yyl3623, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3623 { + if yyrl3623 <= cap(yyv3623) { + yyv3623 = yyv3623[:yyrl3623] } else { - yyv3618 = make([]EndpointAddress, yyrl3618) + yyv3623 = make([]EndpointAddress, yyrl3623) } } else { - yyv3618 = make([]EndpointAddress, yyrl3618) + yyv3623 = make([]EndpointAddress, yyrl3623) } - yyc3618 = true - yyrr3618 = len(yyv3618) - if yyrg3618 { - copy(yyv3618, yyv23618) + yyc3623 = true + yyrr3623 = len(yyv3623) + if yyrg3623 { + copy(yyv3623, yyv23623) } - } else if yyl3618 != len(yyv3618) { - yyv3618 = yyv3618[:yyl3618] - yyc3618 = true + } else if yyl3623 != len(yyv3623) { + yyv3623 = yyv3623[:yyl3623] + yyc3623 = true } - yyj3618 := 0 - for ; yyj3618 < yyrr3618; yyj3618++ { - yyh3618.ElemContainerState(yyj3618) + yyj3623 := 0 + for ; yyj3623 < yyrr3623; yyj3623++ { + yyh3623.ElemContainerState(yyj3623) if r.TryDecodeAsNil() { - yyv3618[yyj3618] = EndpointAddress{} + yyv3623[yyj3623] = EndpointAddress{} } else { - yyv3619 := &yyv3618[yyj3618] - yyv3619.CodecDecodeSelf(d) + yyv3624 := &yyv3623[yyj3623] + yyv3624.CodecDecodeSelf(d) } } - if yyrt3618 { - for ; yyj3618 < yyl3618; yyj3618++ { - yyv3618 = append(yyv3618, EndpointAddress{}) - yyh3618.ElemContainerState(yyj3618) + if yyrt3623 { + for ; yyj3623 < yyl3623; yyj3623++ { + yyv3623 = append(yyv3623, EndpointAddress{}) + yyh3623.ElemContainerState(yyj3623) if r.TryDecodeAsNil() { - yyv3618[yyj3618] = EndpointAddress{} + yyv3623[yyj3623] = EndpointAddress{} } else { - yyv3620 := &yyv3618[yyj3618] - yyv3620.CodecDecodeSelf(d) + yyv3625 := &yyv3623[yyj3623] + yyv3625.CodecDecodeSelf(d) } } } } else { - yyj3618 := 0 - for ; !r.CheckBreak(); yyj3618++ { + yyj3623 := 0 + for ; !r.CheckBreak(); yyj3623++ { - if yyj3618 >= len(yyv3618) { - yyv3618 = append(yyv3618, EndpointAddress{}) // var yyz3618 EndpointAddress - yyc3618 = true + if yyj3623 >= len(yyv3623) { + yyv3623 = append(yyv3623, EndpointAddress{}) // var yyz3623 EndpointAddress + yyc3623 = true } - yyh3618.ElemContainerState(yyj3618) - if yyj3618 < len(yyv3618) { + yyh3623.ElemContainerState(yyj3623) + if yyj3623 < len(yyv3623) { if r.TryDecodeAsNil() { - yyv3618[yyj3618] = EndpointAddress{} + yyv3623[yyj3623] = EndpointAddress{} } else { - yyv3621 := &yyv3618[yyj3618] - yyv3621.CodecDecodeSelf(d) + yyv3626 := &yyv3623[yyj3623] + yyv3626.CodecDecodeSelf(d) } } else { @@ -45718,17 +45766,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj3618 < len(yyv3618) { - yyv3618 = yyv3618[:yyj3618] - yyc3618 = true - } else if yyj3618 == 0 && yyv3618 == nil { - yyv3618 = []EndpointAddress{} - yyc3618 = true + if yyj3623 < len(yyv3623) { + yyv3623 = yyv3623[:yyj3623] + yyc3623 = true + } else if yyj3623 == 0 && yyv3623 == nil { + yyv3623 = []EndpointAddress{} + yyc3623 = true } } - yyh3618.End() - if yyc3618 { - *v = yyv3618 + yyh3623.End() + if yyc3623 { + *v = yyv3623 } } @@ -45737,10 +45785,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3622 := range v { + for _, yyv3627 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3623 := &yyv3622 - yy3623.CodecEncodeSelf(e) + yy3628 := &yyv3627 + yy3628.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45750,83 +45798,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3624 := *v - yyh3624, yyl3624 := z.DecSliceHelperStart() - var yyc3624 bool - if yyl3624 == 0 { - if yyv3624 == nil { - yyv3624 = []EndpointPort{} - yyc3624 = true - } else if len(yyv3624) != 0 { - yyv3624 = yyv3624[:0] - yyc3624 = true + yyv3629 := *v + yyh3629, yyl3629 := z.DecSliceHelperStart() + var yyc3629 bool + if yyl3629 == 0 { + if yyv3629 == nil { + yyv3629 = []EndpointPort{} + yyc3629 = true + } else if len(yyv3629) != 0 { + yyv3629 = yyv3629[:0] + yyc3629 = true } - } else if yyl3624 > 0 { - var yyrr3624, yyrl3624 int - var yyrt3624 bool - if yyl3624 > cap(yyv3624) { + } else if yyl3629 > 0 { + var yyrr3629, yyrl3629 int + var yyrt3629 bool + if yyl3629 > cap(yyv3629) { - yyrg3624 := len(yyv3624) > 0 - yyv23624 := yyv3624 - yyrl3624, yyrt3624 = z.DecInferLen(yyl3624, z.DecBasicHandle().MaxInitLen, 40) - if yyrt3624 { - if yyrl3624 <= cap(yyv3624) { - yyv3624 = yyv3624[:yyrl3624] + yyrg3629 := len(yyv3629) > 0 + yyv23629 := yyv3629 + yyrl3629, yyrt3629 = z.DecInferLen(yyl3629, z.DecBasicHandle().MaxInitLen, 40) + if yyrt3629 { + if yyrl3629 <= cap(yyv3629) { + yyv3629 = yyv3629[:yyrl3629] } else { - yyv3624 = make([]EndpointPort, yyrl3624) + yyv3629 = make([]EndpointPort, yyrl3629) } } else { - yyv3624 = make([]EndpointPort, yyrl3624) + yyv3629 = make([]EndpointPort, yyrl3629) } - yyc3624 = true - yyrr3624 = len(yyv3624) - if yyrg3624 { - copy(yyv3624, yyv23624) + yyc3629 = true + yyrr3629 = len(yyv3629) + if yyrg3629 { + copy(yyv3629, yyv23629) } - } else if yyl3624 != len(yyv3624) { - yyv3624 = yyv3624[:yyl3624] - yyc3624 = true + } else if yyl3629 != len(yyv3629) { + yyv3629 = yyv3629[:yyl3629] + yyc3629 = true } - yyj3624 := 0 - for ; yyj3624 < yyrr3624; yyj3624++ { - yyh3624.ElemContainerState(yyj3624) + yyj3629 := 0 + for ; yyj3629 < yyrr3629; yyj3629++ { + yyh3629.ElemContainerState(yyj3629) if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EndpointPort{} + yyv3629[yyj3629] = EndpointPort{} } else { - yyv3625 := &yyv3624[yyj3624] - yyv3625.CodecDecodeSelf(d) + yyv3630 := &yyv3629[yyj3629] + yyv3630.CodecDecodeSelf(d) } } - if yyrt3624 { - for ; yyj3624 < yyl3624; yyj3624++ { - yyv3624 = append(yyv3624, EndpointPort{}) - yyh3624.ElemContainerState(yyj3624) + if yyrt3629 { + for ; yyj3629 < yyl3629; yyj3629++ { + yyv3629 = append(yyv3629, EndpointPort{}) + yyh3629.ElemContainerState(yyj3629) if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EndpointPort{} + yyv3629[yyj3629] = EndpointPort{} } else { - yyv3626 := &yyv3624[yyj3624] - yyv3626.CodecDecodeSelf(d) + yyv3631 := &yyv3629[yyj3629] + yyv3631.CodecDecodeSelf(d) } } } } else { - yyj3624 := 0 - for ; !r.CheckBreak(); yyj3624++ { + yyj3629 := 0 + for ; !r.CheckBreak(); yyj3629++ { - if yyj3624 >= len(yyv3624) { - yyv3624 = append(yyv3624, EndpointPort{}) // var yyz3624 EndpointPort - yyc3624 = true + if yyj3629 >= len(yyv3629) { + yyv3629 = append(yyv3629, EndpointPort{}) // var yyz3629 EndpointPort + yyc3629 = true } - yyh3624.ElemContainerState(yyj3624) - if yyj3624 < len(yyv3624) { + yyh3629.ElemContainerState(yyj3629) + if yyj3629 < len(yyv3629) { if r.TryDecodeAsNil() { - yyv3624[yyj3624] = EndpointPort{} + yyv3629[yyj3629] = EndpointPort{} } else { - yyv3627 := &yyv3624[yyj3624] - yyv3627.CodecDecodeSelf(d) + yyv3632 := &yyv3629[yyj3629] + yyv3632.CodecDecodeSelf(d) } } else { @@ -45834,17 +45882,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj3624 < len(yyv3624) { - yyv3624 = yyv3624[:yyj3624] - yyc3624 = true - } else if yyj3624 == 0 && yyv3624 == nil { - yyv3624 = []EndpointPort{} - yyc3624 = true + if yyj3629 < len(yyv3629) { + yyv3629 = yyv3629[:yyj3629] + yyc3629 = true + } else if yyj3629 == 0 && yyv3629 == nil { + yyv3629 = []EndpointPort{} + yyc3629 = true } } - yyh3624.End() - if yyc3624 { - *v = yyv3624 + yyh3629.End() + if yyc3629 { + *v = yyv3629 } } @@ -45853,10 +45901,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3628 := range v { + for _, yyv3633 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3629 := &yyv3628 - yy3629.CodecEncodeSelf(e) + yy3634 := &yyv3633 + yy3634.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45866,83 +45914,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3630 := *v - yyh3630, yyl3630 := z.DecSliceHelperStart() - var yyc3630 bool - if yyl3630 == 0 { - if yyv3630 == nil { - yyv3630 = []Endpoints{} - yyc3630 = true - } else if len(yyv3630) != 0 { - yyv3630 = yyv3630[:0] - yyc3630 = true + yyv3635 := *v + yyh3635, yyl3635 := z.DecSliceHelperStart() + var yyc3635 bool + if yyl3635 == 0 { + if yyv3635 == nil { + yyv3635 = []Endpoints{} + yyc3635 = true + } else if len(yyv3635) != 0 { + yyv3635 = yyv3635[:0] + yyc3635 = true } - } else if yyl3630 > 0 { - var yyrr3630, yyrl3630 int - var yyrt3630 bool - if yyl3630 > cap(yyv3630) { + } else if yyl3635 > 0 { + var yyrr3635, yyrl3635 int + var yyrt3635 bool + if yyl3635 > cap(yyv3635) { - yyrg3630 := len(yyv3630) > 0 - yyv23630 := yyv3630 - yyrl3630, yyrt3630 = z.DecInferLen(yyl3630, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3630 { - if yyrl3630 <= cap(yyv3630) { - yyv3630 = yyv3630[:yyrl3630] + yyrg3635 := len(yyv3635) > 0 + yyv23635 := yyv3635 + yyrl3635, yyrt3635 = z.DecInferLen(yyl3635, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3635 { + if yyrl3635 <= cap(yyv3635) { + yyv3635 = yyv3635[:yyrl3635] } else { - yyv3630 = make([]Endpoints, yyrl3630) + yyv3635 = make([]Endpoints, yyrl3635) } } else { - yyv3630 = make([]Endpoints, yyrl3630) + yyv3635 = make([]Endpoints, yyrl3635) } - yyc3630 = true - yyrr3630 = len(yyv3630) - if yyrg3630 { - copy(yyv3630, yyv23630) + yyc3635 = true + yyrr3635 = len(yyv3635) + if yyrg3635 { + copy(yyv3635, yyv23635) } - } else if yyl3630 != len(yyv3630) { - yyv3630 = yyv3630[:yyl3630] - yyc3630 = true + } else if yyl3635 != len(yyv3635) { + yyv3635 = yyv3635[:yyl3635] + yyc3635 = true } - yyj3630 := 0 - for ; yyj3630 < yyrr3630; yyj3630++ { - yyh3630.ElemContainerState(yyj3630) + yyj3635 := 0 + for ; yyj3635 < yyrr3635; yyj3635++ { + yyh3635.ElemContainerState(yyj3635) if r.TryDecodeAsNil() { - yyv3630[yyj3630] = Endpoints{} + yyv3635[yyj3635] = Endpoints{} } else { - yyv3631 := &yyv3630[yyj3630] - yyv3631.CodecDecodeSelf(d) + yyv3636 := &yyv3635[yyj3635] + yyv3636.CodecDecodeSelf(d) } } - if yyrt3630 { - for ; yyj3630 < yyl3630; yyj3630++ { - yyv3630 = append(yyv3630, Endpoints{}) - yyh3630.ElemContainerState(yyj3630) + if yyrt3635 { + for ; yyj3635 < yyl3635; yyj3635++ { + yyv3635 = append(yyv3635, Endpoints{}) + yyh3635.ElemContainerState(yyj3635) if r.TryDecodeAsNil() { - yyv3630[yyj3630] = Endpoints{} + yyv3635[yyj3635] = Endpoints{} } else { - yyv3632 := &yyv3630[yyj3630] - yyv3632.CodecDecodeSelf(d) + yyv3637 := &yyv3635[yyj3635] + yyv3637.CodecDecodeSelf(d) } } } } else { - yyj3630 := 0 - for ; !r.CheckBreak(); yyj3630++ { + yyj3635 := 0 + for ; !r.CheckBreak(); yyj3635++ { - if yyj3630 >= len(yyv3630) { - yyv3630 = append(yyv3630, Endpoints{}) // var yyz3630 Endpoints - yyc3630 = true + if yyj3635 >= len(yyv3635) { + yyv3635 = append(yyv3635, Endpoints{}) // var yyz3635 Endpoints + yyc3635 = true } - yyh3630.ElemContainerState(yyj3630) - if yyj3630 < len(yyv3630) { + yyh3635.ElemContainerState(yyj3635) + if yyj3635 < len(yyv3635) { if r.TryDecodeAsNil() { - yyv3630[yyj3630] = Endpoints{} + yyv3635[yyj3635] = Endpoints{} } else { - yyv3633 := &yyv3630[yyj3630] - yyv3633.CodecDecodeSelf(d) + yyv3638 := &yyv3635[yyj3635] + yyv3638.CodecDecodeSelf(d) } } else { @@ -45950,17 +45998,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj3630 < len(yyv3630) { - yyv3630 = yyv3630[:yyj3630] - yyc3630 = true - } else if yyj3630 == 0 && yyv3630 == nil { - yyv3630 = []Endpoints{} - yyc3630 = true + if yyj3635 < len(yyv3635) { + yyv3635 = yyv3635[:yyj3635] + yyc3635 = true + } else if yyj3635 == 0 && yyv3635 == nil { + yyv3635 = []Endpoints{} + yyc3635 = true } } - yyh3630.End() - if yyc3630 { - *v = yyv3630 + yyh3635.End() + if yyc3635 { + *v = yyv3635 } } @@ -45969,10 +46017,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3634 := range v { + for _, yyv3639 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3635 := &yyv3634 - yy3635.CodecEncodeSelf(e) + yy3640 := &yyv3639 + yy3640.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45982,83 +46030,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3636 := *v - yyh3636, yyl3636 := z.DecSliceHelperStart() - var yyc3636 bool - if yyl3636 == 0 { - if yyv3636 == nil { - yyv3636 = []NodeCondition{} - yyc3636 = true - } else if len(yyv3636) != 0 { - yyv3636 = yyv3636[:0] - yyc3636 = true + yyv3641 := *v + yyh3641, yyl3641 := z.DecSliceHelperStart() + var yyc3641 bool + if yyl3641 == 0 { + if yyv3641 == nil { + yyv3641 = []NodeCondition{} + yyc3641 = true + } else if len(yyv3641) != 0 { + yyv3641 = yyv3641[:0] + yyc3641 = true } - } else if yyl3636 > 0 { - var yyrr3636, yyrl3636 int - var yyrt3636 bool - if yyl3636 > cap(yyv3636) { + } else if yyl3641 > 0 { + var yyrr3641, yyrl3641 int + var yyrt3641 bool + if yyl3641 > cap(yyv3641) { - yyrg3636 := len(yyv3636) > 0 - yyv23636 := yyv3636 - yyrl3636, yyrt3636 = z.DecInferLen(yyl3636, z.DecBasicHandle().MaxInitLen, 112) - if yyrt3636 { - if yyrl3636 <= cap(yyv3636) { - yyv3636 = yyv3636[:yyrl3636] + yyrg3641 := len(yyv3641) > 0 + yyv23641 := yyv3641 + yyrl3641, yyrt3641 = z.DecInferLen(yyl3641, z.DecBasicHandle().MaxInitLen, 112) + if yyrt3641 { + if yyrl3641 <= cap(yyv3641) { + yyv3641 = yyv3641[:yyrl3641] } else { - yyv3636 = make([]NodeCondition, yyrl3636) + yyv3641 = make([]NodeCondition, yyrl3641) } } else { - yyv3636 = make([]NodeCondition, yyrl3636) + yyv3641 = make([]NodeCondition, yyrl3641) } - yyc3636 = true - yyrr3636 = len(yyv3636) - if yyrg3636 { - copy(yyv3636, yyv23636) + yyc3641 = true + yyrr3641 = len(yyv3641) + if yyrg3641 { + copy(yyv3641, yyv23641) } - } else if yyl3636 != len(yyv3636) { - yyv3636 = yyv3636[:yyl3636] - yyc3636 = true + } else if yyl3641 != len(yyv3641) { + yyv3641 = yyv3641[:yyl3641] + yyc3641 = true } - yyj3636 := 0 - for ; yyj3636 < yyrr3636; yyj3636++ { - yyh3636.ElemContainerState(yyj3636) + yyj3641 := 0 + for ; yyj3641 < yyrr3641; yyj3641++ { + yyh3641.ElemContainerState(yyj3641) if r.TryDecodeAsNil() { - yyv3636[yyj3636] = NodeCondition{} + yyv3641[yyj3641] = NodeCondition{} } else { - yyv3637 := &yyv3636[yyj3636] - yyv3637.CodecDecodeSelf(d) + yyv3642 := &yyv3641[yyj3641] + yyv3642.CodecDecodeSelf(d) } } - if yyrt3636 { - for ; yyj3636 < yyl3636; yyj3636++ { - yyv3636 = append(yyv3636, NodeCondition{}) - yyh3636.ElemContainerState(yyj3636) + if yyrt3641 { + for ; yyj3641 < yyl3641; yyj3641++ { + yyv3641 = append(yyv3641, NodeCondition{}) + yyh3641.ElemContainerState(yyj3641) if r.TryDecodeAsNil() { - yyv3636[yyj3636] = NodeCondition{} + yyv3641[yyj3641] = NodeCondition{} } else { - yyv3638 := &yyv3636[yyj3636] - yyv3638.CodecDecodeSelf(d) + yyv3643 := &yyv3641[yyj3641] + yyv3643.CodecDecodeSelf(d) } } } } else { - yyj3636 := 0 - for ; !r.CheckBreak(); yyj3636++ { + yyj3641 := 0 + for ; !r.CheckBreak(); yyj3641++ { - if yyj3636 >= len(yyv3636) { - yyv3636 = append(yyv3636, NodeCondition{}) // var yyz3636 NodeCondition - yyc3636 = true + if yyj3641 >= len(yyv3641) { + yyv3641 = append(yyv3641, NodeCondition{}) // var yyz3641 NodeCondition + yyc3641 = true } - yyh3636.ElemContainerState(yyj3636) - if yyj3636 < len(yyv3636) { + yyh3641.ElemContainerState(yyj3641) + if yyj3641 < len(yyv3641) { if r.TryDecodeAsNil() { - yyv3636[yyj3636] = NodeCondition{} + yyv3641[yyj3641] = NodeCondition{} } else { - yyv3639 := &yyv3636[yyj3636] - yyv3639.CodecDecodeSelf(d) + yyv3644 := &yyv3641[yyj3641] + yyv3644.CodecDecodeSelf(d) } } else { @@ -46066,17 +46114,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj3636 < len(yyv3636) { - yyv3636 = yyv3636[:yyj3636] - yyc3636 = true - } else if yyj3636 == 0 && yyv3636 == nil { - yyv3636 = []NodeCondition{} - yyc3636 = true + if yyj3641 < len(yyv3641) { + yyv3641 = yyv3641[:yyj3641] + yyc3641 = true + } else if yyj3641 == 0 && yyv3641 == nil { + yyv3641 = []NodeCondition{} + yyc3641 = true } } - yyh3636.End() - if yyc3636 { - *v = yyv3636 + yyh3641.End() + if yyc3641 { + *v = yyv3641 } } @@ -46085,10 +46133,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3640 := range v { + for _, yyv3645 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3641 := &yyv3640 - yy3641.CodecEncodeSelf(e) + yy3646 := &yyv3645 + yy3646.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46098,83 +46146,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3642 := *v - yyh3642, yyl3642 := z.DecSliceHelperStart() - var yyc3642 bool - if yyl3642 == 0 { - if yyv3642 == nil { - yyv3642 = []NodeAddress{} - yyc3642 = true - } else if len(yyv3642) != 0 { - yyv3642 = yyv3642[:0] - yyc3642 = true + yyv3647 := *v + yyh3647, yyl3647 := z.DecSliceHelperStart() + var yyc3647 bool + if yyl3647 == 0 { + if yyv3647 == nil { + yyv3647 = []NodeAddress{} + yyc3647 = true + } else if len(yyv3647) != 0 { + yyv3647 = yyv3647[:0] + yyc3647 = true } - } else if yyl3642 > 0 { - var yyrr3642, yyrl3642 int - var yyrt3642 bool - if yyl3642 > cap(yyv3642) { + } else if yyl3647 > 0 { + var yyrr3647, yyrl3647 int + var yyrt3647 bool + if yyl3647 > cap(yyv3647) { - yyrg3642 := len(yyv3642) > 0 - yyv23642 := yyv3642 - yyrl3642, yyrt3642 = z.DecInferLen(yyl3642, z.DecBasicHandle().MaxInitLen, 32) - if yyrt3642 { - if yyrl3642 <= cap(yyv3642) { - yyv3642 = yyv3642[:yyrl3642] + yyrg3647 := len(yyv3647) > 0 + yyv23647 := yyv3647 + yyrl3647, yyrt3647 = z.DecInferLen(yyl3647, z.DecBasicHandle().MaxInitLen, 32) + if yyrt3647 { + if yyrl3647 <= cap(yyv3647) { + yyv3647 = yyv3647[:yyrl3647] } else { - yyv3642 = make([]NodeAddress, yyrl3642) + yyv3647 = make([]NodeAddress, yyrl3647) } } else { - yyv3642 = make([]NodeAddress, yyrl3642) + yyv3647 = make([]NodeAddress, yyrl3647) } - yyc3642 = true - yyrr3642 = len(yyv3642) - if yyrg3642 { - copy(yyv3642, yyv23642) + yyc3647 = true + yyrr3647 = len(yyv3647) + if yyrg3647 { + copy(yyv3647, yyv23647) } - } else if yyl3642 != len(yyv3642) { - yyv3642 = yyv3642[:yyl3642] - yyc3642 = true + } else if yyl3647 != len(yyv3647) { + yyv3647 = yyv3647[:yyl3647] + yyc3647 = true } - yyj3642 := 0 - for ; yyj3642 < yyrr3642; yyj3642++ { - yyh3642.ElemContainerState(yyj3642) + yyj3647 := 0 + for ; yyj3647 < yyrr3647; yyj3647++ { + yyh3647.ElemContainerState(yyj3647) if r.TryDecodeAsNil() { - yyv3642[yyj3642] = NodeAddress{} + yyv3647[yyj3647] = NodeAddress{} } else { - yyv3643 := &yyv3642[yyj3642] - yyv3643.CodecDecodeSelf(d) + yyv3648 := &yyv3647[yyj3647] + yyv3648.CodecDecodeSelf(d) } } - if yyrt3642 { - for ; yyj3642 < yyl3642; yyj3642++ { - yyv3642 = append(yyv3642, NodeAddress{}) - yyh3642.ElemContainerState(yyj3642) + if yyrt3647 { + for ; yyj3647 < yyl3647; yyj3647++ { + yyv3647 = append(yyv3647, NodeAddress{}) + yyh3647.ElemContainerState(yyj3647) if r.TryDecodeAsNil() { - yyv3642[yyj3642] = NodeAddress{} + yyv3647[yyj3647] = NodeAddress{} } else { - yyv3644 := &yyv3642[yyj3642] - yyv3644.CodecDecodeSelf(d) + yyv3649 := &yyv3647[yyj3647] + yyv3649.CodecDecodeSelf(d) } } } } else { - yyj3642 := 0 - for ; !r.CheckBreak(); yyj3642++ { + yyj3647 := 0 + for ; !r.CheckBreak(); yyj3647++ { - if yyj3642 >= len(yyv3642) { - yyv3642 = append(yyv3642, NodeAddress{}) // var yyz3642 NodeAddress - yyc3642 = true + if yyj3647 >= len(yyv3647) { + yyv3647 = append(yyv3647, NodeAddress{}) // var yyz3647 NodeAddress + yyc3647 = true } - yyh3642.ElemContainerState(yyj3642) - if yyj3642 < len(yyv3642) { + yyh3647.ElemContainerState(yyj3647) + if yyj3647 < len(yyv3647) { if r.TryDecodeAsNil() { - yyv3642[yyj3642] = NodeAddress{} + yyv3647[yyj3647] = NodeAddress{} } else { - yyv3645 := &yyv3642[yyj3642] - yyv3645.CodecDecodeSelf(d) + yyv3650 := &yyv3647[yyj3647] + yyv3650.CodecDecodeSelf(d) } } else { @@ -46182,17 +46230,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj3642 < len(yyv3642) { - yyv3642 = yyv3642[:yyj3642] - yyc3642 = true - } else if yyj3642 == 0 && yyv3642 == nil { - yyv3642 = []NodeAddress{} - yyc3642 = true + if yyj3647 < len(yyv3647) { + yyv3647 = yyv3647[:yyj3647] + yyc3647 = true + } else if yyj3647 == 0 && yyv3647 == nil { + yyv3647 = []NodeAddress{} + yyc3647 = true } } - yyh3642.End() - if yyc3642 { - *v = yyv3642 + yyh3647.End() + if yyc3647 { + *v = yyv3647 } } @@ -46201,19 +46249,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3646, yyv3646 := range v { + for yyk3651, yyv3651 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk3646.CodecEncodeSelf(e) + yyk3651.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3647 := &yyv3646 - yym3648 := z.EncBinary() - _ = yym3648 + yy3652 := &yyv3651 + yym3653 := z.EncBinary() + _ = yym3653 if false { - } else if z.HasExtensions() && z.EncExt(yy3647) { - } else if !yym3648 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3647) + } else if z.HasExtensions() && z.EncExt(yy3652) { + } else if !yym3653 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3652) } else { - z.EncFallback(yy3647) + z.EncFallback(yy3652) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46224,86 +46272,86 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3649 := *v - yyl3649 := r.ReadMapStart() - yybh3649 := z.DecBasicHandle() - if yyv3649 == nil { - yyrl3649, _ := z.DecInferLen(yyl3649, yybh3649.MaxInitLen, 40) - yyv3649 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3649) - *v = yyv3649 + yyv3654 := *v + yyl3654 := r.ReadMapStart() + yybh3654 := z.DecBasicHandle() + if yyv3654 == nil { + yyrl3654, _ := z.DecInferLen(yyl3654, yybh3654.MaxInitLen, 40) + yyv3654 = make(map[ResourceName]pkg3_resource.Quantity, yyrl3654) + *v = yyv3654 } - var yymk3649 ResourceName - var yymv3649 pkg3_resource.Quantity - var yymg3649 bool - if yybh3649.MapValueReset { - yymg3649 = true + var yymk3654 ResourceName + var yymv3654 pkg3_resource.Quantity + var yymg3654 bool + if yybh3654.MapValueReset { + yymg3654 = true } - if yyl3649 > 0 { - for yyj3649 := 0; yyj3649 < yyl3649; yyj3649++ { + if yyl3654 > 0 { + for yyj3654 := 0; yyj3654 < yyl3654; yyj3654++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3649 = "" + yymk3654 = "" } else { - yymk3649 = ResourceName(r.DecodeString()) + yymk3654 = ResourceName(r.DecodeString()) } - if yymg3649 { - yymv3649 = yyv3649[yymk3649] + if yymg3654 { + yymv3654 = yyv3654[yymk3654] } else { - yymv3649 = pkg3_resource.Quantity{} + yymv3654 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3649 = pkg3_resource.Quantity{} + yymv3654 = pkg3_resource.Quantity{} } else { - yyv3651 := &yymv3649 - yym3652 := z.DecBinary() - _ = yym3652 + yyv3656 := &yymv3654 + yym3657 := z.DecBinary() + _ = yym3657 if false { - } else if z.HasExtensions() && z.DecExt(yyv3651) { - } else if !yym3652 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3651) + } else if z.HasExtensions() && z.DecExt(yyv3656) { + } else if !yym3657 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3656) } else { - z.DecFallback(yyv3651, false) + z.DecFallback(yyv3656, false) } } - if yyv3649 != nil { - yyv3649[yymk3649] = yymv3649 + if yyv3654 != nil { + yyv3654[yymk3654] = yymv3654 } } - } else if yyl3649 < 0 { - for yyj3649 := 0; !r.CheckBreak(); yyj3649++ { + } else if yyl3654 < 0 { + for yyj3654 := 0; !r.CheckBreak(); yyj3654++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3649 = "" + yymk3654 = "" } else { - yymk3649 = ResourceName(r.DecodeString()) + yymk3654 = ResourceName(r.DecodeString()) } - if yymg3649 { - yymv3649 = yyv3649[yymk3649] + if yymg3654 { + yymv3654 = yyv3654[yymk3654] } else { - yymv3649 = pkg3_resource.Quantity{} + yymv3654 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3649 = pkg3_resource.Quantity{} + yymv3654 = pkg3_resource.Quantity{} } else { - yyv3654 := &yymv3649 - yym3655 := z.DecBinary() - _ = yym3655 + yyv3659 := &yymv3654 + yym3660 := z.DecBinary() + _ = yym3660 if false { - } else if z.HasExtensions() && z.DecExt(yyv3654) { - } else if !yym3655 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3654) + } else if z.HasExtensions() && z.DecExt(yyv3659) { + } else if !yym3660 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3659) } else { - z.DecFallback(yyv3654, false) + z.DecFallback(yyv3659, false) } } - if yyv3649 != nil { - yyv3649[yymk3649] = yymv3649 + if yyv3654 != nil { + yyv3654[yymk3654] = yymv3654 } } } // else len==0: TODO: Should we clear map entries? @@ -46315,10 +46363,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3656 := range v { + for _, yyv3661 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3657 := &yyv3656 - yy3657.CodecEncodeSelf(e) + yy3662 := &yyv3661 + yy3662.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46328,83 +46376,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3658 := *v - yyh3658, yyl3658 := z.DecSliceHelperStart() - var yyc3658 bool - if yyl3658 == 0 { - if yyv3658 == nil { - yyv3658 = []Node{} - yyc3658 = true - } else if len(yyv3658) != 0 { - yyv3658 = yyv3658[:0] - yyc3658 = true + yyv3663 := *v + yyh3663, yyl3663 := z.DecSliceHelperStart() + var yyc3663 bool + if yyl3663 == 0 { + if yyv3663 == nil { + yyv3663 = []Node{} + yyc3663 = true + } else if len(yyv3663) != 0 { + yyv3663 = yyv3663[:0] + yyc3663 = true } - } else if yyl3658 > 0 { - var yyrr3658, yyrl3658 int - var yyrt3658 bool - if yyl3658 > cap(yyv3658) { + } else if yyl3663 > 0 { + var yyrr3663, yyrl3663 int + var yyrt3663 bool + if yyl3663 > cap(yyv3663) { - yyrg3658 := len(yyv3658) > 0 - yyv23658 := yyv3658 - yyrl3658, yyrt3658 = z.DecInferLen(yyl3658, z.DecBasicHandle().MaxInitLen, 456) - if yyrt3658 { - if yyrl3658 <= cap(yyv3658) { - yyv3658 = yyv3658[:yyrl3658] + yyrg3663 := len(yyv3663) > 0 + yyv23663 := yyv3663 + yyrl3663, yyrt3663 = z.DecInferLen(yyl3663, z.DecBasicHandle().MaxInitLen, 456) + if yyrt3663 { + if yyrl3663 <= cap(yyv3663) { + yyv3663 = yyv3663[:yyrl3663] } else { - yyv3658 = make([]Node, yyrl3658) + yyv3663 = make([]Node, yyrl3663) } } else { - yyv3658 = make([]Node, yyrl3658) + yyv3663 = make([]Node, yyrl3663) } - yyc3658 = true - yyrr3658 = len(yyv3658) - if yyrg3658 { - copy(yyv3658, yyv23658) + yyc3663 = true + yyrr3663 = len(yyv3663) + if yyrg3663 { + copy(yyv3663, yyv23663) } - } else if yyl3658 != len(yyv3658) { - yyv3658 = yyv3658[:yyl3658] - yyc3658 = true + } else if yyl3663 != len(yyv3663) { + yyv3663 = yyv3663[:yyl3663] + yyc3663 = true } - yyj3658 := 0 - for ; yyj3658 < yyrr3658; yyj3658++ { - yyh3658.ElemContainerState(yyj3658) + yyj3663 := 0 + for ; yyj3663 < yyrr3663; yyj3663++ { + yyh3663.ElemContainerState(yyj3663) if r.TryDecodeAsNil() { - yyv3658[yyj3658] = Node{} + yyv3663[yyj3663] = Node{} } else { - yyv3659 := &yyv3658[yyj3658] - yyv3659.CodecDecodeSelf(d) + yyv3664 := &yyv3663[yyj3663] + yyv3664.CodecDecodeSelf(d) } } - if yyrt3658 { - for ; yyj3658 < yyl3658; yyj3658++ { - yyv3658 = append(yyv3658, Node{}) - yyh3658.ElemContainerState(yyj3658) + if yyrt3663 { + for ; yyj3663 < yyl3663; yyj3663++ { + yyv3663 = append(yyv3663, Node{}) + yyh3663.ElemContainerState(yyj3663) if r.TryDecodeAsNil() { - yyv3658[yyj3658] = Node{} + yyv3663[yyj3663] = Node{} } else { - yyv3660 := &yyv3658[yyj3658] - yyv3660.CodecDecodeSelf(d) + yyv3665 := &yyv3663[yyj3663] + yyv3665.CodecDecodeSelf(d) } } } } else { - yyj3658 := 0 - for ; !r.CheckBreak(); yyj3658++ { + yyj3663 := 0 + for ; !r.CheckBreak(); yyj3663++ { - if yyj3658 >= len(yyv3658) { - yyv3658 = append(yyv3658, Node{}) // var yyz3658 Node - yyc3658 = true + if yyj3663 >= len(yyv3663) { + yyv3663 = append(yyv3663, Node{}) // var yyz3663 Node + yyc3663 = true } - yyh3658.ElemContainerState(yyj3658) - if yyj3658 < len(yyv3658) { + yyh3663.ElemContainerState(yyj3663) + if yyj3663 < len(yyv3663) { if r.TryDecodeAsNil() { - yyv3658[yyj3658] = Node{} + yyv3663[yyj3663] = Node{} } else { - yyv3661 := &yyv3658[yyj3658] - yyv3661.CodecDecodeSelf(d) + yyv3666 := &yyv3663[yyj3663] + yyv3666.CodecDecodeSelf(d) } } else { @@ -46412,17 +46460,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj3658 < len(yyv3658) { - yyv3658 = yyv3658[:yyj3658] - yyc3658 = true - } else if yyj3658 == 0 && yyv3658 == nil { - yyv3658 = []Node{} - yyc3658 = true + if yyj3663 < len(yyv3663) { + yyv3663 = yyv3663[:yyj3663] + yyc3663 = true + } else if yyj3663 == 0 && yyv3663 == nil { + yyv3663 = []Node{} + yyc3663 = true } } - yyh3658.End() - if yyc3658 { - *v = yyv3658 + yyh3663.End() + if yyc3663 { + *v = yyv3663 } } @@ -46431,9 +46479,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3662 := range v { + for _, yyv3667 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv3662.CodecEncodeSelf(e) + yyv3667.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46443,75 +46491,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3663 := *v - yyh3663, yyl3663 := z.DecSliceHelperStart() - var yyc3663 bool - if yyl3663 == 0 { - if yyv3663 == nil { - yyv3663 = []FinalizerName{} - yyc3663 = true - } else if len(yyv3663) != 0 { - yyv3663 = yyv3663[:0] - yyc3663 = true + yyv3668 := *v + yyh3668, yyl3668 := z.DecSliceHelperStart() + var yyc3668 bool + if yyl3668 == 0 { + if yyv3668 == nil { + yyv3668 = []FinalizerName{} + yyc3668 = true + } else if len(yyv3668) != 0 { + yyv3668 = yyv3668[:0] + yyc3668 = true } - } else if yyl3663 > 0 { - var yyrr3663, yyrl3663 int - var yyrt3663 bool - if yyl3663 > cap(yyv3663) { + } else if yyl3668 > 0 { + var yyrr3668, yyrl3668 int + var yyrt3668 bool + if yyl3668 > cap(yyv3668) { - yyrl3663, yyrt3663 = z.DecInferLen(yyl3663, z.DecBasicHandle().MaxInitLen, 16) - if yyrt3663 { - if yyrl3663 <= cap(yyv3663) { - yyv3663 = yyv3663[:yyrl3663] + yyrl3668, yyrt3668 = z.DecInferLen(yyl3668, z.DecBasicHandle().MaxInitLen, 16) + if yyrt3668 { + if yyrl3668 <= cap(yyv3668) { + yyv3668 = yyv3668[:yyrl3668] } else { - yyv3663 = make([]FinalizerName, yyrl3663) + yyv3668 = make([]FinalizerName, yyrl3668) } } else { - yyv3663 = make([]FinalizerName, yyrl3663) + yyv3668 = make([]FinalizerName, yyrl3668) } - yyc3663 = true - yyrr3663 = len(yyv3663) - } else if yyl3663 != len(yyv3663) { - yyv3663 = yyv3663[:yyl3663] - yyc3663 = true + yyc3668 = true + yyrr3668 = len(yyv3668) + } else if yyl3668 != len(yyv3668) { + yyv3668 = yyv3668[:yyl3668] + yyc3668 = true } - yyj3663 := 0 - for ; yyj3663 < yyrr3663; yyj3663++ { - yyh3663.ElemContainerState(yyj3663) + yyj3668 := 0 + for ; yyj3668 < yyrr3668; yyj3668++ { + yyh3668.ElemContainerState(yyj3668) if r.TryDecodeAsNil() { - yyv3663[yyj3663] = "" + yyv3668[yyj3668] = "" } else { - yyv3663[yyj3663] = FinalizerName(r.DecodeString()) + yyv3668[yyj3668] = FinalizerName(r.DecodeString()) } } - if yyrt3663 { - for ; yyj3663 < yyl3663; yyj3663++ { - yyv3663 = append(yyv3663, "") - yyh3663.ElemContainerState(yyj3663) + if yyrt3668 { + for ; yyj3668 < yyl3668; yyj3668++ { + yyv3668 = append(yyv3668, "") + yyh3668.ElemContainerState(yyj3668) if r.TryDecodeAsNil() { - yyv3663[yyj3663] = "" + yyv3668[yyj3668] = "" } else { - yyv3663[yyj3663] = FinalizerName(r.DecodeString()) + yyv3668[yyj3668] = FinalizerName(r.DecodeString()) } } } } else { - yyj3663 := 0 - for ; !r.CheckBreak(); yyj3663++ { + yyj3668 := 0 + for ; !r.CheckBreak(); yyj3668++ { - if yyj3663 >= len(yyv3663) { - yyv3663 = append(yyv3663, "") // var yyz3663 FinalizerName - yyc3663 = true + if yyj3668 >= len(yyv3668) { + yyv3668 = append(yyv3668, "") // var yyz3668 FinalizerName + yyc3668 = true } - yyh3663.ElemContainerState(yyj3663) - if yyj3663 < len(yyv3663) { + yyh3668.ElemContainerState(yyj3668) + if yyj3668 < len(yyv3668) { if r.TryDecodeAsNil() { - yyv3663[yyj3663] = "" + yyv3668[yyj3668] = "" } else { - yyv3663[yyj3663] = FinalizerName(r.DecodeString()) + yyv3668[yyj3668] = FinalizerName(r.DecodeString()) } } else { @@ -46519,17 +46567,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj3663 < len(yyv3663) { - yyv3663 = yyv3663[:yyj3663] - yyc3663 = true - } else if yyj3663 == 0 && yyv3663 == nil { - yyv3663 = []FinalizerName{} - yyc3663 = true + if yyj3668 < len(yyv3668) { + yyv3668 = yyv3668[:yyj3668] + yyc3668 = true + } else if yyj3668 == 0 && yyv3668 == nil { + yyv3668 = []FinalizerName{} + yyc3668 = true } } - yyh3663.End() - if yyc3663 { - *v = yyv3663 + yyh3668.End() + if yyc3668 { + *v = yyv3668 } } @@ -46538,10 +46586,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3667 := range v { + for _, yyv3672 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3668 := &yyv3667 - yy3668.CodecEncodeSelf(e) + yy3673 := &yyv3672 + yy3673.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46551,83 +46599,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3669 := *v - yyh3669, yyl3669 := z.DecSliceHelperStart() - var yyc3669 bool - if yyl3669 == 0 { - if yyv3669 == nil { - yyv3669 = []Namespace{} - yyc3669 = true - } else if len(yyv3669) != 0 { - yyv3669 = yyv3669[:0] - yyc3669 = true + yyv3674 := *v + yyh3674, yyl3674 := z.DecSliceHelperStart() + var yyc3674 bool + if yyl3674 == 0 { + if yyv3674 == nil { + yyv3674 = []Namespace{} + yyc3674 = true + } else if len(yyv3674) != 0 { + yyv3674 = yyv3674[:0] + yyc3674 = true } - } else if yyl3669 > 0 { - var yyrr3669, yyrl3669 int - var yyrt3669 bool - if yyl3669 > cap(yyv3669) { + } else if yyl3674 > 0 { + var yyrr3674, yyrl3674 int + var yyrt3674 bool + if yyl3674 > cap(yyv3674) { - yyrg3669 := len(yyv3669) > 0 - yyv23669 := yyv3669 - yyrl3669, yyrt3669 = z.DecInferLen(yyl3669, z.DecBasicHandle().MaxInitLen, 232) - if yyrt3669 { - if yyrl3669 <= cap(yyv3669) { - yyv3669 = yyv3669[:yyrl3669] + yyrg3674 := len(yyv3674) > 0 + yyv23674 := yyv3674 + yyrl3674, yyrt3674 = z.DecInferLen(yyl3674, z.DecBasicHandle().MaxInitLen, 232) + if yyrt3674 { + if yyrl3674 <= cap(yyv3674) { + yyv3674 = yyv3674[:yyrl3674] } else { - yyv3669 = make([]Namespace, yyrl3669) + yyv3674 = make([]Namespace, yyrl3674) } } else { - yyv3669 = make([]Namespace, yyrl3669) + yyv3674 = make([]Namespace, yyrl3674) } - yyc3669 = true - yyrr3669 = len(yyv3669) - if yyrg3669 { - copy(yyv3669, yyv23669) + yyc3674 = true + yyrr3674 = len(yyv3674) + if yyrg3674 { + copy(yyv3674, yyv23674) } - } else if yyl3669 != len(yyv3669) { - yyv3669 = yyv3669[:yyl3669] - yyc3669 = true + } else if yyl3674 != len(yyv3674) { + yyv3674 = yyv3674[:yyl3674] + yyc3674 = true } - yyj3669 := 0 - for ; yyj3669 < yyrr3669; yyj3669++ { - yyh3669.ElemContainerState(yyj3669) + yyj3674 := 0 + for ; yyj3674 < yyrr3674; yyj3674++ { + yyh3674.ElemContainerState(yyj3674) if r.TryDecodeAsNil() { - yyv3669[yyj3669] = Namespace{} + yyv3674[yyj3674] = Namespace{} } else { - yyv3670 := &yyv3669[yyj3669] - yyv3670.CodecDecodeSelf(d) + yyv3675 := &yyv3674[yyj3674] + yyv3675.CodecDecodeSelf(d) } } - if yyrt3669 { - for ; yyj3669 < yyl3669; yyj3669++ { - yyv3669 = append(yyv3669, Namespace{}) - yyh3669.ElemContainerState(yyj3669) + if yyrt3674 { + for ; yyj3674 < yyl3674; yyj3674++ { + yyv3674 = append(yyv3674, Namespace{}) + yyh3674.ElemContainerState(yyj3674) if r.TryDecodeAsNil() { - yyv3669[yyj3669] = Namespace{} + yyv3674[yyj3674] = Namespace{} } else { - yyv3671 := &yyv3669[yyj3669] - yyv3671.CodecDecodeSelf(d) + yyv3676 := &yyv3674[yyj3674] + yyv3676.CodecDecodeSelf(d) } } } } else { - yyj3669 := 0 - for ; !r.CheckBreak(); yyj3669++ { + yyj3674 := 0 + for ; !r.CheckBreak(); yyj3674++ { - if yyj3669 >= len(yyv3669) { - yyv3669 = append(yyv3669, Namespace{}) // var yyz3669 Namespace - yyc3669 = true + if yyj3674 >= len(yyv3674) { + yyv3674 = append(yyv3674, Namespace{}) // var yyz3674 Namespace + yyc3674 = true } - yyh3669.ElemContainerState(yyj3669) - if yyj3669 < len(yyv3669) { + yyh3674.ElemContainerState(yyj3674) + if yyj3674 < len(yyv3674) { if r.TryDecodeAsNil() { - yyv3669[yyj3669] = Namespace{} + yyv3674[yyj3674] = Namespace{} } else { - yyv3672 := &yyv3669[yyj3669] - yyv3672.CodecDecodeSelf(d) + yyv3677 := &yyv3674[yyj3674] + yyv3677.CodecDecodeSelf(d) } } else { @@ -46635,17 +46683,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj3669 < len(yyv3669) { - yyv3669 = yyv3669[:yyj3669] - yyc3669 = true - } else if yyj3669 == 0 && yyv3669 == nil { - yyv3669 = []Namespace{} - yyc3669 = true + if yyj3674 < len(yyv3674) { + yyv3674 = yyv3674[:yyj3674] + yyc3674 = true + } else if yyj3674 == 0 && yyv3674 == nil { + yyv3674 = []Namespace{} + yyc3674 = true } } - yyh3669.End() - if yyc3669 { - *v = yyv3669 + yyh3674.End() + if yyc3674 { + *v = yyv3674 } } @@ -46654,10 +46702,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3673 := range v { + for _, yyv3678 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3674 := &yyv3673 - yy3674.CodecEncodeSelf(e) + yy3679 := &yyv3678 + yy3679.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46667,83 +46715,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3675 := *v - yyh3675, yyl3675 := z.DecSliceHelperStart() - var yyc3675 bool - if yyl3675 == 0 { - if yyv3675 == nil { - yyv3675 = []Event{} - yyc3675 = true - } else if len(yyv3675) != 0 { - yyv3675 = yyv3675[:0] - yyc3675 = true + yyv3680 := *v + yyh3680, yyl3680 := z.DecSliceHelperStart() + var yyc3680 bool + if yyl3680 == 0 { + if yyv3680 == nil { + yyv3680 = []Event{} + yyc3680 = true + } else if len(yyv3680) != 0 { + yyv3680 = yyv3680[:0] + yyc3680 = true } - } else if yyl3675 > 0 { - var yyrr3675, yyrl3675 int - var yyrt3675 bool - if yyl3675 > cap(yyv3675) { + } else if yyl3680 > 0 { + var yyrr3680, yyrl3680 int + var yyrt3680 bool + if yyl3680 > cap(yyv3680) { - yyrg3675 := len(yyv3675) > 0 - yyv23675 := yyv3675 - yyrl3675, yyrt3675 = z.DecInferLen(yyl3675, z.DecBasicHandle().MaxInitLen, 440) - if yyrt3675 { - if yyrl3675 <= cap(yyv3675) { - yyv3675 = yyv3675[:yyrl3675] + yyrg3680 := len(yyv3680) > 0 + yyv23680 := yyv3680 + yyrl3680, yyrt3680 = z.DecInferLen(yyl3680, z.DecBasicHandle().MaxInitLen, 440) + if yyrt3680 { + if yyrl3680 <= cap(yyv3680) { + yyv3680 = yyv3680[:yyrl3680] } else { - yyv3675 = make([]Event, yyrl3675) + yyv3680 = make([]Event, yyrl3680) } } else { - yyv3675 = make([]Event, yyrl3675) + yyv3680 = make([]Event, yyrl3680) } - yyc3675 = true - yyrr3675 = len(yyv3675) - if yyrg3675 { - copy(yyv3675, yyv23675) + yyc3680 = true + yyrr3680 = len(yyv3680) + if yyrg3680 { + copy(yyv3680, yyv23680) } - } else if yyl3675 != len(yyv3675) { - yyv3675 = yyv3675[:yyl3675] - yyc3675 = true + } else if yyl3680 != len(yyv3680) { + yyv3680 = yyv3680[:yyl3680] + yyc3680 = true } - yyj3675 := 0 - for ; yyj3675 < yyrr3675; yyj3675++ { - yyh3675.ElemContainerState(yyj3675) + yyj3680 := 0 + for ; yyj3680 < yyrr3680; yyj3680++ { + yyh3680.ElemContainerState(yyj3680) if r.TryDecodeAsNil() { - yyv3675[yyj3675] = Event{} + yyv3680[yyj3680] = Event{} } else { - yyv3676 := &yyv3675[yyj3675] - yyv3676.CodecDecodeSelf(d) + yyv3681 := &yyv3680[yyj3680] + yyv3681.CodecDecodeSelf(d) } } - if yyrt3675 { - for ; yyj3675 < yyl3675; yyj3675++ { - yyv3675 = append(yyv3675, Event{}) - yyh3675.ElemContainerState(yyj3675) + if yyrt3680 { + for ; yyj3680 < yyl3680; yyj3680++ { + yyv3680 = append(yyv3680, Event{}) + yyh3680.ElemContainerState(yyj3680) if r.TryDecodeAsNil() { - yyv3675[yyj3675] = Event{} + yyv3680[yyj3680] = Event{} } else { - yyv3677 := &yyv3675[yyj3675] - yyv3677.CodecDecodeSelf(d) + yyv3682 := &yyv3680[yyj3680] + yyv3682.CodecDecodeSelf(d) } } } } else { - yyj3675 := 0 - for ; !r.CheckBreak(); yyj3675++ { + yyj3680 := 0 + for ; !r.CheckBreak(); yyj3680++ { - if yyj3675 >= len(yyv3675) { - yyv3675 = append(yyv3675, Event{}) // var yyz3675 Event - yyc3675 = true + if yyj3680 >= len(yyv3680) { + yyv3680 = append(yyv3680, Event{}) // var yyz3680 Event + yyc3680 = true } - yyh3675.ElemContainerState(yyj3675) - if yyj3675 < len(yyv3675) { + yyh3680.ElemContainerState(yyj3680) + if yyj3680 < len(yyv3680) { if r.TryDecodeAsNil() { - yyv3675[yyj3675] = Event{} + yyv3680[yyj3680] = Event{} } else { - yyv3678 := &yyv3675[yyj3675] - yyv3678.CodecDecodeSelf(d) + yyv3683 := &yyv3680[yyj3680] + yyv3683.CodecDecodeSelf(d) } } else { @@ -46751,17 +46799,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj3675 < len(yyv3675) { - yyv3675 = yyv3675[:yyj3675] - yyc3675 = true - } else if yyj3675 == 0 && yyv3675 == nil { - yyv3675 = []Event{} - yyc3675 = true + if yyj3680 < len(yyv3680) { + yyv3680 = yyv3680[:yyj3680] + yyc3680 = true + } else if yyj3680 == 0 && yyv3680 == nil { + yyv3680 = []Event{} + yyc3680 = true } } - yyh3675.End() - if yyc3675 { - *v = yyv3675 + yyh3680.End() + if yyc3680 { + *v = yyv3680 } } @@ -46770,17 +46818,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg6_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3679 := range v { + for _, yyv3684 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3680 := &yyv3679 - yym3681 := z.EncBinary() - _ = yym3681 + yy3685 := &yyv3684 + yym3686 := z.EncBinary() + _ = yym3686 if false { - } else if z.HasExtensions() && z.EncExt(yy3680) { - } else if !yym3681 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3680) + } else if z.HasExtensions() && z.EncExt(yy3685) { + } else if !yym3686 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3685) } else { - z.EncFallback(yy3680) + z.EncFallback(yy3685) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -46791,78 +46839,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3682 := *v - yyh3682, yyl3682 := z.DecSliceHelperStart() - var yyc3682 bool - if yyl3682 == 0 { - if yyv3682 == nil { - yyv3682 = []pkg6_runtime.RawExtension{} - yyc3682 = true - } else if len(yyv3682) != 0 { - yyv3682 = yyv3682[:0] - yyc3682 = true + yyv3687 := *v + yyh3687, yyl3687 := z.DecSliceHelperStart() + var yyc3687 bool + if yyl3687 == 0 { + if yyv3687 == nil { + yyv3687 = []pkg6_runtime.RawExtension{} + yyc3687 = true + } else if len(yyv3687) != 0 { + yyv3687 = yyv3687[:0] + yyc3687 = true } - } else if yyl3682 > 0 { - var yyrr3682, yyrl3682 int - var yyrt3682 bool - if yyl3682 > cap(yyv3682) { + } else if yyl3687 > 0 { + var yyrr3687, yyrl3687 int + var yyrt3687 bool + if yyl3687 > cap(yyv3687) { - yyrg3682 := len(yyv3682) > 0 - yyv23682 := yyv3682 - yyrl3682, yyrt3682 = z.DecInferLen(yyl3682, z.DecBasicHandle().MaxInitLen, 24) - if yyrt3682 { - if yyrl3682 <= cap(yyv3682) { - yyv3682 = yyv3682[:yyrl3682] + yyrg3687 := len(yyv3687) > 0 + yyv23687 := yyv3687 + yyrl3687, yyrt3687 = z.DecInferLen(yyl3687, z.DecBasicHandle().MaxInitLen, 24) + if yyrt3687 { + if yyrl3687 <= cap(yyv3687) { + yyv3687 = yyv3687[:yyrl3687] } else { - yyv3682 = make([]pkg6_runtime.RawExtension, yyrl3682) + yyv3687 = make([]pkg6_runtime.RawExtension, yyrl3687) } } else { - yyv3682 = make([]pkg6_runtime.RawExtension, yyrl3682) + yyv3687 = make([]pkg6_runtime.RawExtension, yyrl3687) } - yyc3682 = true - yyrr3682 = len(yyv3682) - if yyrg3682 { - copy(yyv3682, yyv23682) + yyc3687 = true + yyrr3687 = len(yyv3687) + if yyrg3687 { + copy(yyv3687, yyv23687) } - } else if yyl3682 != len(yyv3682) { - yyv3682 = yyv3682[:yyl3682] - yyc3682 = true + } else if yyl3687 != len(yyv3687) { + yyv3687 = yyv3687[:yyl3687] + yyc3687 = true } - yyj3682 := 0 - for ; yyj3682 < yyrr3682; yyj3682++ { - yyh3682.ElemContainerState(yyj3682) + yyj3687 := 0 + for ; yyj3687 < yyrr3687; yyj3687++ { + yyh3687.ElemContainerState(yyj3687) if r.TryDecodeAsNil() { - yyv3682[yyj3682] = pkg6_runtime.RawExtension{} + yyv3687[yyj3687] = pkg6_runtime.RawExtension{} } else { - yyv3683 := &yyv3682[yyj3682] - yym3684 := z.DecBinary() - _ = yym3684 + yyv3688 := &yyv3687[yyj3687] + yym3689 := z.DecBinary() + _ = yym3689 if false { - } else if z.HasExtensions() && z.DecExt(yyv3683) { - } else if !yym3684 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3683) + } else if z.HasExtensions() && z.DecExt(yyv3688) { + } else if !yym3689 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3688) } else { - z.DecFallback(yyv3683, false) + z.DecFallback(yyv3688, false) } } } - if yyrt3682 { - for ; yyj3682 < yyl3682; yyj3682++ { - yyv3682 = append(yyv3682, pkg6_runtime.RawExtension{}) - yyh3682.ElemContainerState(yyj3682) + if yyrt3687 { + for ; yyj3687 < yyl3687; yyj3687++ { + yyv3687 = append(yyv3687, pkg6_runtime.RawExtension{}) + yyh3687.ElemContainerState(yyj3687) if r.TryDecodeAsNil() { - yyv3682[yyj3682] = pkg6_runtime.RawExtension{} + yyv3687[yyj3687] = pkg6_runtime.RawExtension{} } else { - yyv3685 := &yyv3682[yyj3682] - yym3686 := z.DecBinary() - _ = yym3686 + yyv3690 := &yyv3687[yyj3687] + yym3691 := z.DecBinary() + _ = yym3691 if false { - } else if z.HasExtensions() && z.DecExt(yyv3685) { - } else if !yym3686 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3685) + } else if z.HasExtensions() && z.DecExt(yyv3690) { + } else if !yym3691 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3690) } else { - z.DecFallback(yyv3685, false) + z.DecFallback(yyv3690, false) } } @@ -46870,27 +46918,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } else { - yyj3682 := 0 - for ; !r.CheckBreak(); yyj3682++ { + yyj3687 := 0 + for ; !r.CheckBreak(); yyj3687++ { - if yyj3682 >= len(yyv3682) { - yyv3682 = append(yyv3682, pkg6_runtime.RawExtension{}) // var yyz3682 pkg6_runtime.RawExtension - yyc3682 = true + if yyj3687 >= len(yyv3687) { + yyv3687 = append(yyv3687, pkg6_runtime.RawExtension{}) // var yyz3687 pkg6_runtime.RawExtension + yyc3687 = true } - yyh3682.ElemContainerState(yyj3682) - if yyj3682 < len(yyv3682) { + yyh3687.ElemContainerState(yyj3687) + if yyj3687 < len(yyv3687) { if r.TryDecodeAsNil() { - yyv3682[yyj3682] = pkg6_runtime.RawExtension{} + yyv3687[yyj3687] = pkg6_runtime.RawExtension{} } else { - yyv3687 := &yyv3682[yyj3682] - yym3688 := z.DecBinary() - _ = yym3688 + yyv3692 := &yyv3687[yyj3687] + yym3693 := z.DecBinary() + _ = yym3693 if false { - } else if z.HasExtensions() && z.DecExt(yyv3687) { - } else if !yym3688 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3687) + } else if z.HasExtensions() && z.DecExt(yyv3692) { + } else if !yym3693 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3692) } else { - z.DecFallback(yyv3687, false) + z.DecFallback(yyv3692, false) } } @@ -46899,17 +46947,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg6_runtime.RawExten } } - if yyj3682 < len(yyv3682) { - yyv3682 = yyv3682[:yyj3682] - yyc3682 = true - } else if yyj3682 == 0 && yyv3682 == nil { - yyv3682 = []pkg6_runtime.RawExtension{} - yyc3682 = true + if yyj3687 < len(yyv3687) { + yyv3687 = yyv3687[:yyj3687] + yyc3687 = true + } else if yyj3687 == 0 && yyv3687 == nil { + yyv3687 = []pkg6_runtime.RawExtension{} + yyc3687 = true } } - yyh3682.End() - if yyc3682 { - *v = yyv3682 + yyh3687.End() + if yyc3687 { + *v = yyv3687 } } @@ -46918,10 +46966,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3689 := range v { + for _, yyv3694 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3690 := &yyv3689 - yy3690.CodecEncodeSelf(e) + yy3695 := &yyv3694 + yy3695.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46931,83 +46979,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3691 := *v - yyh3691, yyl3691 := z.DecSliceHelperStart() - var yyc3691 bool - if yyl3691 == 0 { - if yyv3691 == nil { - yyv3691 = []LimitRangeItem{} - yyc3691 = true - } else if len(yyv3691) != 0 { - yyv3691 = yyv3691[:0] - yyc3691 = true + yyv3696 := *v + yyh3696, yyl3696 := z.DecSliceHelperStart() + var yyc3696 bool + if yyl3696 == 0 { + if yyv3696 == nil { + yyv3696 = []LimitRangeItem{} + yyc3696 = true + } else if len(yyv3696) != 0 { + yyv3696 = yyv3696[:0] + yyc3696 = true } - } else if yyl3691 > 0 { - var yyrr3691, yyrl3691 int - var yyrt3691 bool - if yyl3691 > cap(yyv3691) { + } else if yyl3696 > 0 { + var yyrr3696, yyrl3696 int + var yyrt3696 bool + if yyl3696 > cap(yyv3696) { - yyrg3691 := len(yyv3691) > 0 - yyv23691 := yyv3691 - yyrl3691, yyrt3691 = z.DecInferLen(yyl3691, z.DecBasicHandle().MaxInitLen, 56) - if yyrt3691 { - if yyrl3691 <= cap(yyv3691) { - yyv3691 = yyv3691[:yyrl3691] + yyrg3696 := len(yyv3696) > 0 + yyv23696 := yyv3696 + yyrl3696, yyrt3696 = z.DecInferLen(yyl3696, z.DecBasicHandle().MaxInitLen, 56) + if yyrt3696 { + if yyrl3696 <= cap(yyv3696) { + yyv3696 = yyv3696[:yyrl3696] } else { - yyv3691 = make([]LimitRangeItem, yyrl3691) + yyv3696 = make([]LimitRangeItem, yyrl3696) } } else { - yyv3691 = make([]LimitRangeItem, yyrl3691) + yyv3696 = make([]LimitRangeItem, yyrl3696) } - yyc3691 = true - yyrr3691 = len(yyv3691) - if yyrg3691 { - copy(yyv3691, yyv23691) + yyc3696 = true + yyrr3696 = len(yyv3696) + if yyrg3696 { + copy(yyv3696, yyv23696) } - } else if yyl3691 != len(yyv3691) { - yyv3691 = yyv3691[:yyl3691] - yyc3691 = true + } else if yyl3696 != len(yyv3696) { + yyv3696 = yyv3696[:yyl3696] + yyc3696 = true } - yyj3691 := 0 - for ; yyj3691 < yyrr3691; yyj3691++ { - yyh3691.ElemContainerState(yyj3691) + yyj3696 := 0 + for ; yyj3696 < yyrr3696; yyj3696++ { + yyh3696.ElemContainerState(yyj3696) if r.TryDecodeAsNil() { - yyv3691[yyj3691] = LimitRangeItem{} + yyv3696[yyj3696] = LimitRangeItem{} } else { - yyv3692 := &yyv3691[yyj3691] - yyv3692.CodecDecodeSelf(d) + yyv3697 := &yyv3696[yyj3696] + yyv3697.CodecDecodeSelf(d) } } - if yyrt3691 { - for ; yyj3691 < yyl3691; yyj3691++ { - yyv3691 = append(yyv3691, LimitRangeItem{}) - yyh3691.ElemContainerState(yyj3691) + if yyrt3696 { + for ; yyj3696 < yyl3696; yyj3696++ { + yyv3696 = append(yyv3696, LimitRangeItem{}) + yyh3696.ElemContainerState(yyj3696) if r.TryDecodeAsNil() { - yyv3691[yyj3691] = LimitRangeItem{} + yyv3696[yyj3696] = LimitRangeItem{} } else { - yyv3693 := &yyv3691[yyj3691] - yyv3693.CodecDecodeSelf(d) + yyv3698 := &yyv3696[yyj3696] + yyv3698.CodecDecodeSelf(d) } } } } else { - yyj3691 := 0 - for ; !r.CheckBreak(); yyj3691++ { + yyj3696 := 0 + for ; !r.CheckBreak(); yyj3696++ { - if yyj3691 >= len(yyv3691) { - yyv3691 = append(yyv3691, LimitRangeItem{}) // var yyz3691 LimitRangeItem - yyc3691 = true + if yyj3696 >= len(yyv3696) { + yyv3696 = append(yyv3696, LimitRangeItem{}) // var yyz3696 LimitRangeItem + yyc3696 = true } - yyh3691.ElemContainerState(yyj3691) - if yyj3691 < len(yyv3691) { + yyh3696.ElemContainerState(yyj3696) + if yyj3696 < len(yyv3696) { if r.TryDecodeAsNil() { - yyv3691[yyj3691] = LimitRangeItem{} + yyv3696[yyj3696] = LimitRangeItem{} } else { - yyv3694 := &yyv3691[yyj3691] - yyv3694.CodecDecodeSelf(d) + yyv3699 := &yyv3696[yyj3696] + yyv3699.CodecDecodeSelf(d) } } else { @@ -47015,17 +47063,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj3691 < len(yyv3691) { - yyv3691 = yyv3691[:yyj3691] - yyc3691 = true - } else if yyj3691 == 0 && yyv3691 == nil { - yyv3691 = []LimitRangeItem{} - yyc3691 = true + if yyj3696 < len(yyv3696) { + yyv3696 = yyv3696[:yyj3696] + yyc3696 = true + } else if yyj3696 == 0 && yyv3696 == nil { + yyv3696 = []LimitRangeItem{} + yyc3696 = true } } - yyh3691.End() - if yyc3691 { - *v = yyv3691 + yyh3696.End() + if yyc3696 { + *v = yyv3696 } } @@ -47034,10 +47082,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3695 := range v { + for _, yyv3700 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3696 := &yyv3695 - yy3696.CodecEncodeSelf(e) + yy3701 := &yyv3700 + yy3701.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47047,83 +47095,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3697 := *v - yyh3697, yyl3697 := z.DecSliceHelperStart() - var yyc3697 bool - if yyl3697 == 0 { - if yyv3697 == nil { - yyv3697 = []LimitRange{} - yyc3697 = true - } else if len(yyv3697) != 0 { - yyv3697 = yyv3697[:0] - yyc3697 = true + yyv3702 := *v + yyh3702, yyl3702 := z.DecSliceHelperStart() + var yyc3702 bool + if yyl3702 == 0 { + if yyv3702 == nil { + yyv3702 = []LimitRange{} + yyc3702 = true + } else if len(yyv3702) != 0 { + yyv3702 = yyv3702[:0] + yyc3702 = true } - } else if yyl3697 > 0 { - var yyrr3697, yyrl3697 int - var yyrt3697 bool - if yyl3697 > cap(yyv3697) { + } else if yyl3702 > 0 { + var yyrr3702, yyrl3702 int + var yyrt3702 bool + if yyl3702 > cap(yyv3702) { - yyrg3697 := len(yyv3697) > 0 - yyv23697 := yyv3697 - yyrl3697, yyrt3697 = z.DecInferLen(yyl3697, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3697 { - if yyrl3697 <= cap(yyv3697) { - yyv3697 = yyv3697[:yyrl3697] + yyrg3702 := len(yyv3702) > 0 + yyv23702 := yyv3702 + yyrl3702, yyrt3702 = z.DecInferLen(yyl3702, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3702 { + if yyrl3702 <= cap(yyv3702) { + yyv3702 = yyv3702[:yyrl3702] } else { - yyv3697 = make([]LimitRange, yyrl3697) + yyv3702 = make([]LimitRange, yyrl3702) } } else { - yyv3697 = make([]LimitRange, yyrl3697) + yyv3702 = make([]LimitRange, yyrl3702) } - yyc3697 = true - yyrr3697 = len(yyv3697) - if yyrg3697 { - copy(yyv3697, yyv23697) + yyc3702 = true + yyrr3702 = len(yyv3702) + if yyrg3702 { + copy(yyv3702, yyv23702) } - } else if yyl3697 != len(yyv3697) { - yyv3697 = yyv3697[:yyl3697] - yyc3697 = true + } else if yyl3702 != len(yyv3702) { + yyv3702 = yyv3702[:yyl3702] + yyc3702 = true } - yyj3697 := 0 - for ; yyj3697 < yyrr3697; yyj3697++ { - yyh3697.ElemContainerState(yyj3697) + yyj3702 := 0 + for ; yyj3702 < yyrr3702; yyj3702++ { + yyh3702.ElemContainerState(yyj3702) if r.TryDecodeAsNil() { - yyv3697[yyj3697] = LimitRange{} + yyv3702[yyj3702] = LimitRange{} } else { - yyv3698 := &yyv3697[yyj3697] - yyv3698.CodecDecodeSelf(d) + yyv3703 := &yyv3702[yyj3702] + yyv3703.CodecDecodeSelf(d) } } - if yyrt3697 { - for ; yyj3697 < yyl3697; yyj3697++ { - yyv3697 = append(yyv3697, LimitRange{}) - yyh3697.ElemContainerState(yyj3697) + if yyrt3702 { + for ; yyj3702 < yyl3702; yyj3702++ { + yyv3702 = append(yyv3702, LimitRange{}) + yyh3702.ElemContainerState(yyj3702) if r.TryDecodeAsNil() { - yyv3697[yyj3697] = LimitRange{} + yyv3702[yyj3702] = LimitRange{} } else { - yyv3699 := &yyv3697[yyj3697] - yyv3699.CodecDecodeSelf(d) + yyv3704 := &yyv3702[yyj3702] + yyv3704.CodecDecodeSelf(d) } } } } else { - yyj3697 := 0 - for ; !r.CheckBreak(); yyj3697++ { + yyj3702 := 0 + for ; !r.CheckBreak(); yyj3702++ { - if yyj3697 >= len(yyv3697) { - yyv3697 = append(yyv3697, LimitRange{}) // var yyz3697 LimitRange - yyc3697 = true + if yyj3702 >= len(yyv3702) { + yyv3702 = append(yyv3702, LimitRange{}) // var yyz3702 LimitRange + yyc3702 = true } - yyh3697.ElemContainerState(yyj3697) - if yyj3697 < len(yyv3697) { + yyh3702.ElemContainerState(yyj3702) + if yyj3702 < len(yyv3702) { if r.TryDecodeAsNil() { - yyv3697[yyj3697] = LimitRange{} + yyv3702[yyj3702] = LimitRange{} } else { - yyv3700 := &yyv3697[yyj3697] - yyv3700.CodecDecodeSelf(d) + yyv3705 := &yyv3702[yyj3702] + yyv3705.CodecDecodeSelf(d) } } else { @@ -47131,17 +47179,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj3697 < len(yyv3697) { - yyv3697 = yyv3697[:yyj3697] - yyc3697 = true - } else if yyj3697 == 0 && yyv3697 == nil { - yyv3697 = []LimitRange{} - yyc3697 = true + if yyj3702 < len(yyv3702) { + yyv3702 = yyv3702[:yyj3702] + yyc3702 = true + } else if yyj3702 == 0 && yyv3702 == nil { + yyv3702 = []LimitRange{} + yyc3702 = true } } - yyh3697.End() - if yyc3697 { - *v = yyv3697 + yyh3702.End() + if yyc3702 { + *v = yyv3702 } } @@ -47150,10 +47198,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3701 := range v { + for _, yyv3706 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3702 := &yyv3701 - yy3702.CodecEncodeSelf(e) + yy3707 := &yyv3706 + yy3707.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47163,83 +47211,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3703 := *v - yyh3703, yyl3703 := z.DecSliceHelperStart() - var yyc3703 bool - if yyl3703 == 0 { - if yyv3703 == nil { - yyv3703 = []ResourceQuota{} - yyc3703 = true - } else if len(yyv3703) != 0 { - yyv3703 = yyv3703[:0] - yyc3703 = true + yyv3708 := *v + yyh3708, yyl3708 := z.DecSliceHelperStart() + var yyc3708 bool + if yyl3708 == 0 { + if yyv3708 == nil { + yyv3708 = []ResourceQuota{} + yyc3708 = true + } else if len(yyv3708) != 0 { + yyv3708 = yyv3708[:0] + yyc3708 = true } - } else if yyl3703 > 0 { - var yyrr3703, yyrl3703 int - var yyrt3703 bool - if yyl3703 > cap(yyv3703) { + } else if yyl3708 > 0 { + var yyrr3708, yyrl3708 int + var yyrt3708 bool + if yyl3708 > cap(yyv3708) { - yyrg3703 := len(yyv3703) > 0 - yyv23703 := yyv3703 - yyrl3703, yyrt3703 = z.DecInferLen(yyl3703, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3703 { - if yyrl3703 <= cap(yyv3703) { - yyv3703 = yyv3703[:yyrl3703] + yyrg3708 := len(yyv3708) > 0 + yyv23708 := yyv3708 + yyrl3708, yyrt3708 = z.DecInferLen(yyl3708, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3708 { + if yyrl3708 <= cap(yyv3708) { + yyv3708 = yyv3708[:yyrl3708] } else { - yyv3703 = make([]ResourceQuota, yyrl3703) + yyv3708 = make([]ResourceQuota, yyrl3708) } } else { - yyv3703 = make([]ResourceQuota, yyrl3703) + yyv3708 = make([]ResourceQuota, yyrl3708) } - yyc3703 = true - yyrr3703 = len(yyv3703) - if yyrg3703 { - copy(yyv3703, yyv23703) + yyc3708 = true + yyrr3708 = len(yyv3708) + if yyrg3708 { + copy(yyv3708, yyv23708) } - } else if yyl3703 != len(yyv3703) { - yyv3703 = yyv3703[:yyl3703] - yyc3703 = true + } else if yyl3708 != len(yyv3708) { + yyv3708 = yyv3708[:yyl3708] + yyc3708 = true } - yyj3703 := 0 - for ; yyj3703 < yyrr3703; yyj3703++ { - yyh3703.ElemContainerState(yyj3703) + yyj3708 := 0 + for ; yyj3708 < yyrr3708; yyj3708++ { + yyh3708.ElemContainerState(yyj3708) if r.TryDecodeAsNil() { - yyv3703[yyj3703] = ResourceQuota{} + yyv3708[yyj3708] = ResourceQuota{} } else { - yyv3704 := &yyv3703[yyj3703] - yyv3704.CodecDecodeSelf(d) + yyv3709 := &yyv3708[yyj3708] + yyv3709.CodecDecodeSelf(d) } } - if yyrt3703 { - for ; yyj3703 < yyl3703; yyj3703++ { - yyv3703 = append(yyv3703, ResourceQuota{}) - yyh3703.ElemContainerState(yyj3703) + if yyrt3708 { + for ; yyj3708 < yyl3708; yyj3708++ { + yyv3708 = append(yyv3708, ResourceQuota{}) + yyh3708.ElemContainerState(yyj3708) if r.TryDecodeAsNil() { - yyv3703[yyj3703] = ResourceQuota{} + yyv3708[yyj3708] = ResourceQuota{} } else { - yyv3705 := &yyv3703[yyj3703] - yyv3705.CodecDecodeSelf(d) + yyv3710 := &yyv3708[yyj3708] + yyv3710.CodecDecodeSelf(d) } } } } else { - yyj3703 := 0 - for ; !r.CheckBreak(); yyj3703++ { + yyj3708 := 0 + for ; !r.CheckBreak(); yyj3708++ { - if yyj3703 >= len(yyv3703) { - yyv3703 = append(yyv3703, ResourceQuota{}) // var yyz3703 ResourceQuota - yyc3703 = true + if yyj3708 >= len(yyv3708) { + yyv3708 = append(yyv3708, ResourceQuota{}) // var yyz3708 ResourceQuota + yyc3708 = true } - yyh3703.ElemContainerState(yyj3703) - if yyj3703 < len(yyv3703) { + yyh3708.ElemContainerState(yyj3708) + if yyj3708 < len(yyv3708) { if r.TryDecodeAsNil() { - yyv3703[yyj3703] = ResourceQuota{} + yyv3708[yyj3708] = ResourceQuota{} } else { - yyv3706 := &yyv3703[yyj3703] - yyv3706.CodecDecodeSelf(d) + yyv3711 := &yyv3708[yyj3708] + yyv3711.CodecDecodeSelf(d) } } else { @@ -47247,17 +47295,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj3703 < len(yyv3703) { - yyv3703 = yyv3703[:yyj3703] - yyc3703 = true - } else if yyj3703 == 0 && yyv3703 == nil { - yyv3703 = []ResourceQuota{} - yyc3703 = true + if yyj3708 < len(yyv3708) { + yyv3708 = yyv3708[:yyj3708] + yyc3708 = true + } else if yyj3708 == 0 && yyv3708 == nil { + yyv3708 = []ResourceQuota{} + yyc3708 = true } } - yyh3703.End() - if yyc3703 { - *v = yyv3703 + yyh3708.End() + if yyc3708 { + *v = yyv3708 } } @@ -47266,23 +47314,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk3707, yyv3707 := range v { + for yyk3712, yyv3712 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym3708 := z.EncBinary() - _ = yym3708 + yym3713 := z.EncBinary() + _ = yym3713 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk3707)) + r.EncodeString(codecSelferC_UTF81234, string(yyk3712)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv3707 == nil { + if yyv3712 == nil { r.EncodeNil() } else { - yym3709 := z.EncBinary() - _ = yym3709 + yym3714 := z.EncBinary() + _ = yym3714 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3707)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv3712)) } } } @@ -47294,80 +47342,80 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3710 := *v - yyl3710 := r.ReadMapStart() - yybh3710 := z.DecBasicHandle() - if yyv3710 == nil { - yyrl3710, _ := z.DecInferLen(yyl3710, yybh3710.MaxInitLen, 40) - yyv3710 = make(map[string][]uint8, yyrl3710) - *v = yyv3710 + yyv3715 := *v + yyl3715 := r.ReadMapStart() + yybh3715 := z.DecBasicHandle() + if yyv3715 == nil { + yyrl3715, _ := z.DecInferLen(yyl3715, yybh3715.MaxInitLen, 40) + yyv3715 = make(map[string][]uint8, yyrl3715) + *v = yyv3715 } - var yymk3710 string - var yymv3710 []uint8 - var yymg3710 bool - if yybh3710.MapValueReset { - yymg3710 = true + var yymk3715 string + var yymv3715 []uint8 + var yymg3715 bool + if yybh3715.MapValueReset { + yymg3715 = true } - if yyl3710 > 0 { - for yyj3710 := 0; yyj3710 < yyl3710; yyj3710++ { + if yyl3715 > 0 { + for yyj3715 := 0; yyj3715 < yyl3715; yyj3715++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3710 = "" + yymk3715 = "" } else { - yymk3710 = string(r.DecodeString()) + yymk3715 = string(r.DecodeString()) } - if yymg3710 { - yymv3710 = yyv3710[yymk3710] + if yymg3715 { + yymv3715 = yyv3715[yymk3715] } else { - yymv3710 = nil + yymv3715 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3710 = nil + yymv3715 = nil } else { - yyv3712 := &yymv3710 - yym3713 := z.DecBinary() - _ = yym3713 + yyv3717 := &yymv3715 + yym3718 := z.DecBinary() + _ = yym3718 if false { } else { - *yyv3712 = r.DecodeBytes(*(*[]byte)(yyv3712), false, false) + *yyv3717 = r.DecodeBytes(*(*[]byte)(yyv3717), false, false) } } - if yyv3710 != nil { - yyv3710[yymk3710] = yymv3710 + if yyv3715 != nil { + yyv3715[yymk3715] = yymv3715 } } - } else if yyl3710 < 0 { - for yyj3710 := 0; !r.CheckBreak(); yyj3710++ { + } else if yyl3715 < 0 { + for yyj3715 := 0; !r.CheckBreak(); yyj3715++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk3710 = "" + yymk3715 = "" } else { - yymk3710 = string(r.DecodeString()) + yymk3715 = string(r.DecodeString()) } - if yymg3710 { - yymv3710 = yyv3710[yymk3710] + if yymg3715 { + yymv3715 = yyv3715[yymk3715] } else { - yymv3710 = nil + yymv3715 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv3710 = nil + yymv3715 = nil } else { - yyv3715 := &yymv3710 - yym3716 := z.DecBinary() - _ = yym3716 + yyv3720 := &yymv3715 + yym3721 := z.DecBinary() + _ = yym3721 if false { } else { - *yyv3715 = r.DecodeBytes(*(*[]byte)(yyv3715), false, false) + *yyv3720 = r.DecodeBytes(*(*[]byte)(yyv3720), false, false) } } - if yyv3710 != nil { - yyv3710[yymk3710] = yymv3710 + if yyv3715 != nil { + yyv3715[yymk3715] = yymv3715 } } } // else len==0: TODO: Should we clear map entries? @@ -47379,10 +47427,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3717 := range v { + for _, yyv3722 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3718 := &yyv3717 - yy3718.CodecEncodeSelf(e) + yy3723 := &yyv3722 + yy3723.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47392,83 +47440,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3719 := *v - yyh3719, yyl3719 := z.DecSliceHelperStart() - var yyc3719 bool - if yyl3719 == 0 { - if yyv3719 == nil { - yyv3719 = []Secret{} - yyc3719 = true - } else if len(yyv3719) != 0 { - yyv3719 = yyv3719[:0] - yyc3719 = true + yyv3724 := *v + yyh3724, yyl3724 := z.DecSliceHelperStart() + var yyc3724 bool + if yyl3724 == 0 { + if yyv3724 == nil { + yyv3724 = []Secret{} + yyc3724 = true + } else if len(yyv3724) != 0 { + yyv3724 = yyv3724[:0] + yyc3724 = true } - } else if yyl3719 > 0 { - var yyrr3719, yyrl3719 int - var yyrt3719 bool - if yyl3719 > cap(yyv3719) { + } else if yyl3724 > 0 { + var yyrr3724, yyrl3724 int + var yyrt3724 bool + if yyl3724 > cap(yyv3724) { - yyrg3719 := len(yyv3719) > 0 - yyv23719 := yyv3719 - yyrl3719, yyrt3719 = z.DecInferLen(yyl3719, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3719 { - if yyrl3719 <= cap(yyv3719) { - yyv3719 = yyv3719[:yyrl3719] + yyrg3724 := len(yyv3724) > 0 + yyv23724 := yyv3724 + yyrl3724, yyrt3724 = z.DecInferLen(yyl3724, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3724 { + if yyrl3724 <= cap(yyv3724) { + yyv3724 = yyv3724[:yyrl3724] } else { - yyv3719 = make([]Secret, yyrl3719) + yyv3724 = make([]Secret, yyrl3724) } } else { - yyv3719 = make([]Secret, yyrl3719) + yyv3724 = make([]Secret, yyrl3724) } - yyc3719 = true - yyrr3719 = len(yyv3719) - if yyrg3719 { - copy(yyv3719, yyv23719) + yyc3724 = true + yyrr3724 = len(yyv3724) + if yyrg3724 { + copy(yyv3724, yyv23724) } - } else if yyl3719 != len(yyv3719) { - yyv3719 = yyv3719[:yyl3719] - yyc3719 = true + } else if yyl3724 != len(yyv3724) { + yyv3724 = yyv3724[:yyl3724] + yyc3724 = true } - yyj3719 := 0 - for ; yyj3719 < yyrr3719; yyj3719++ { - yyh3719.ElemContainerState(yyj3719) + yyj3724 := 0 + for ; yyj3724 < yyrr3724; yyj3724++ { + yyh3724.ElemContainerState(yyj3724) if r.TryDecodeAsNil() { - yyv3719[yyj3719] = Secret{} + yyv3724[yyj3724] = Secret{} } else { - yyv3720 := &yyv3719[yyj3719] - yyv3720.CodecDecodeSelf(d) + yyv3725 := &yyv3724[yyj3724] + yyv3725.CodecDecodeSelf(d) } } - if yyrt3719 { - for ; yyj3719 < yyl3719; yyj3719++ { - yyv3719 = append(yyv3719, Secret{}) - yyh3719.ElemContainerState(yyj3719) + if yyrt3724 { + for ; yyj3724 < yyl3724; yyj3724++ { + yyv3724 = append(yyv3724, Secret{}) + yyh3724.ElemContainerState(yyj3724) if r.TryDecodeAsNil() { - yyv3719[yyj3719] = Secret{} + yyv3724[yyj3724] = Secret{} } else { - yyv3721 := &yyv3719[yyj3719] - yyv3721.CodecDecodeSelf(d) + yyv3726 := &yyv3724[yyj3724] + yyv3726.CodecDecodeSelf(d) } } } } else { - yyj3719 := 0 - for ; !r.CheckBreak(); yyj3719++ { + yyj3724 := 0 + for ; !r.CheckBreak(); yyj3724++ { - if yyj3719 >= len(yyv3719) { - yyv3719 = append(yyv3719, Secret{}) // var yyz3719 Secret - yyc3719 = true + if yyj3724 >= len(yyv3724) { + yyv3724 = append(yyv3724, Secret{}) // var yyz3724 Secret + yyc3724 = true } - yyh3719.ElemContainerState(yyj3719) - if yyj3719 < len(yyv3719) { + yyh3724.ElemContainerState(yyj3724) + if yyj3724 < len(yyv3724) { if r.TryDecodeAsNil() { - yyv3719[yyj3719] = Secret{} + yyv3724[yyj3724] = Secret{} } else { - yyv3722 := &yyv3719[yyj3719] - yyv3722.CodecDecodeSelf(d) + yyv3727 := &yyv3724[yyj3724] + yyv3727.CodecDecodeSelf(d) } } else { @@ -47476,17 +47524,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj3719 < len(yyv3719) { - yyv3719 = yyv3719[:yyj3719] - yyc3719 = true - } else if yyj3719 == 0 && yyv3719 == nil { - yyv3719 = []Secret{} - yyc3719 = true + if yyj3724 < len(yyv3724) { + yyv3724 = yyv3724[:yyj3724] + yyc3724 = true + } else if yyj3724 == 0 && yyv3724 == nil { + yyv3724 = []Secret{} + yyc3724 = true } } - yyh3719.End() - if yyc3719 { - *v = yyv3719 + yyh3724.End() + if yyc3724 { + *v = yyv3724 } } @@ -47495,10 +47543,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3723 := range v { + for _, yyv3728 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3724 := &yyv3723 - yy3724.CodecEncodeSelf(e) + yy3729 := &yyv3728 + yy3729.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47508,83 +47556,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3725 := *v - yyh3725, yyl3725 := z.DecSliceHelperStart() - var yyc3725 bool - if yyl3725 == 0 { - if yyv3725 == nil { - yyv3725 = []ComponentCondition{} - yyc3725 = true - } else if len(yyv3725) != 0 { - yyv3725 = yyv3725[:0] - yyc3725 = true + yyv3730 := *v + yyh3730, yyl3730 := z.DecSliceHelperStart() + var yyc3730 bool + if yyl3730 == 0 { + if yyv3730 == nil { + yyv3730 = []ComponentCondition{} + yyc3730 = true + } else if len(yyv3730) != 0 { + yyv3730 = yyv3730[:0] + yyc3730 = true } - } else if yyl3725 > 0 { - var yyrr3725, yyrl3725 int - var yyrt3725 bool - if yyl3725 > cap(yyv3725) { + } else if yyl3730 > 0 { + var yyrr3730, yyrl3730 int + var yyrt3730 bool + if yyl3730 > cap(yyv3730) { - yyrg3725 := len(yyv3725) > 0 - yyv23725 := yyv3725 - yyrl3725, yyrt3725 = z.DecInferLen(yyl3725, z.DecBasicHandle().MaxInitLen, 64) - if yyrt3725 { - if yyrl3725 <= cap(yyv3725) { - yyv3725 = yyv3725[:yyrl3725] + yyrg3730 := len(yyv3730) > 0 + yyv23730 := yyv3730 + yyrl3730, yyrt3730 = z.DecInferLen(yyl3730, z.DecBasicHandle().MaxInitLen, 64) + if yyrt3730 { + if yyrl3730 <= cap(yyv3730) { + yyv3730 = yyv3730[:yyrl3730] } else { - yyv3725 = make([]ComponentCondition, yyrl3725) + yyv3730 = make([]ComponentCondition, yyrl3730) } } else { - yyv3725 = make([]ComponentCondition, yyrl3725) + yyv3730 = make([]ComponentCondition, yyrl3730) } - yyc3725 = true - yyrr3725 = len(yyv3725) - if yyrg3725 { - copy(yyv3725, yyv23725) + yyc3730 = true + yyrr3730 = len(yyv3730) + if yyrg3730 { + copy(yyv3730, yyv23730) } - } else if yyl3725 != len(yyv3725) { - yyv3725 = yyv3725[:yyl3725] - yyc3725 = true + } else if yyl3730 != len(yyv3730) { + yyv3730 = yyv3730[:yyl3730] + yyc3730 = true } - yyj3725 := 0 - for ; yyj3725 < yyrr3725; yyj3725++ { - yyh3725.ElemContainerState(yyj3725) + yyj3730 := 0 + for ; yyj3730 < yyrr3730; yyj3730++ { + yyh3730.ElemContainerState(yyj3730) if r.TryDecodeAsNil() { - yyv3725[yyj3725] = ComponentCondition{} + yyv3730[yyj3730] = ComponentCondition{} } else { - yyv3726 := &yyv3725[yyj3725] - yyv3726.CodecDecodeSelf(d) + yyv3731 := &yyv3730[yyj3730] + yyv3731.CodecDecodeSelf(d) } } - if yyrt3725 { - for ; yyj3725 < yyl3725; yyj3725++ { - yyv3725 = append(yyv3725, ComponentCondition{}) - yyh3725.ElemContainerState(yyj3725) + if yyrt3730 { + for ; yyj3730 < yyl3730; yyj3730++ { + yyv3730 = append(yyv3730, ComponentCondition{}) + yyh3730.ElemContainerState(yyj3730) if r.TryDecodeAsNil() { - yyv3725[yyj3725] = ComponentCondition{} + yyv3730[yyj3730] = ComponentCondition{} } else { - yyv3727 := &yyv3725[yyj3725] - yyv3727.CodecDecodeSelf(d) + yyv3732 := &yyv3730[yyj3730] + yyv3732.CodecDecodeSelf(d) } } } } else { - yyj3725 := 0 - for ; !r.CheckBreak(); yyj3725++ { + yyj3730 := 0 + for ; !r.CheckBreak(); yyj3730++ { - if yyj3725 >= len(yyv3725) { - yyv3725 = append(yyv3725, ComponentCondition{}) // var yyz3725 ComponentCondition - yyc3725 = true + if yyj3730 >= len(yyv3730) { + yyv3730 = append(yyv3730, ComponentCondition{}) // var yyz3730 ComponentCondition + yyc3730 = true } - yyh3725.ElemContainerState(yyj3725) - if yyj3725 < len(yyv3725) { + yyh3730.ElemContainerState(yyj3730) + if yyj3730 < len(yyv3730) { if r.TryDecodeAsNil() { - yyv3725[yyj3725] = ComponentCondition{} + yyv3730[yyj3730] = ComponentCondition{} } else { - yyv3728 := &yyv3725[yyj3725] - yyv3728.CodecDecodeSelf(d) + yyv3733 := &yyv3730[yyj3730] + yyv3733.CodecDecodeSelf(d) } } else { @@ -47592,17 +47640,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj3725 < len(yyv3725) { - yyv3725 = yyv3725[:yyj3725] - yyc3725 = true - } else if yyj3725 == 0 && yyv3725 == nil { - yyv3725 = []ComponentCondition{} - yyc3725 = true + if yyj3730 < len(yyv3730) { + yyv3730 = yyv3730[:yyj3730] + yyc3730 = true + } else if yyj3730 == 0 && yyv3730 == nil { + yyv3730 = []ComponentCondition{} + yyc3730 = true } } - yyh3725.End() - if yyc3725 { - *v = yyv3725 + yyh3730.End() + if yyc3730 { + *v = yyv3730 } } @@ -47611,10 +47659,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3729 := range v { + for _, yyv3734 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3730 := &yyv3729 - yy3730.CodecEncodeSelf(e) + yy3735 := &yyv3734 + yy3735.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47624,83 +47672,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3731 := *v - yyh3731, yyl3731 := z.DecSliceHelperStart() - var yyc3731 bool - if yyl3731 == 0 { - if yyv3731 == nil { - yyv3731 = []ComponentStatus{} - yyc3731 = true - } else if len(yyv3731) != 0 { - yyv3731 = yyv3731[:0] - yyc3731 = true + yyv3736 := *v + yyh3736, yyl3736 := z.DecSliceHelperStart() + var yyc3736 bool + if yyl3736 == 0 { + if yyv3736 == nil { + yyv3736 = []ComponentStatus{} + yyc3736 = true + } else if len(yyv3736) != 0 { + yyv3736 = yyv3736[:0] + yyc3736 = true } - } else if yyl3731 > 0 { - var yyrr3731, yyrl3731 int - var yyrt3731 bool - if yyl3731 > cap(yyv3731) { + } else if yyl3736 > 0 { + var yyrr3736, yyrl3736 int + var yyrt3736 bool + if yyl3736 > cap(yyv3736) { - yyrg3731 := len(yyv3731) > 0 - yyv23731 := yyv3731 - yyrl3731, yyrt3731 = z.DecInferLen(yyl3731, z.DecBasicHandle().MaxInitLen, 216) - if yyrt3731 { - if yyrl3731 <= cap(yyv3731) { - yyv3731 = yyv3731[:yyrl3731] + yyrg3736 := len(yyv3736) > 0 + yyv23736 := yyv3736 + yyrl3736, yyrt3736 = z.DecInferLen(yyl3736, z.DecBasicHandle().MaxInitLen, 216) + if yyrt3736 { + if yyrl3736 <= cap(yyv3736) { + yyv3736 = yyv3736[:yyrl3736] } else { - yyv3731 = make([]ComponentStatus, yyrl3731) + yyv3736 = make([]ComponentStatus, yyrl3736) } } else { - yyv3731 = make([]ComponentStatus, yyrl3731) + yyv3736 = make([]ComponentStatus, yyrl3736) } - yyc3731 = true - yyrr3731 = len(yyv3731) - if yyrg3731 { - copy(yyv3731, yyv23731) + yyc3736 = true + yyrr3736 = len(yyv3736) + if yyrg3736 { + copy(yyv3736, yyv23736) } - } else if yyl3731 != len(yyv3731) { - yyv3731 = yyv3731[:yyl3731] - yyc3731 = true + } else if yyl3736 != len(yyv3736) { + yyv3736 = yyv3736[:yyl3736] + yyc3736 = true } - yyj3731 := 0 - for ; yyj3731 < yyrr3731; yyj3731++ { - yyh3731.ElemContainerState(yyj3731) + yyj3736 := 0 + for ; yyj3736 < yyrr3736; yyj3736++ { + yyh3736.ElemContainerState(yyj3736) if r.TryDecodeAsNil() { - yyv3731[yyj3731] = ComponentStatus{} + yyv3736[yyj3736] = ComponentStatus{} } else { - yyv3732 := &yyv3731[yyj3731] - yyv3732.CodecDecodeSelf(d) + yyv3737 := &yyv3736[yyj3736] + yyv3737.CodecDecodeSelf(d) } } - if yyrt3731 { - for ; yyj3731 < yyl3731; yyj3731++ { - yyv3731 = append(yyv3731, ComponentStatus{}) - yyh3731.ElemContainerState(yyj3731) + if yyrt3736 { + for ; yyj3736 < yyl3736; yyj3736++ { + yyv3736 = append(yyv3736, ComponentStatus{}) + yyh3736.ElemContainerState(yyj3736) if r.TryDecodeAsNil() { - yyv3731[yyj3731] = ComponentStatus{} + yyv3736[yyj3736] = ComponentStatus{} } else { - yyv3733 := &yyv3731[yyj3731] - yyv3733.CodecDecodeSelf(d) + yyv3738 := &yyv3736[yyj3736] + yyv3738.CodecDecodeSelf(d) } } } } else { - yyj3731 := 0 - for ; !r.CheckBreak(); yyj3731++ { + yyj3736 := 0 + for ; !r.CheckBreak(); yyj3736++ { - if yyj3731 >= len(yyv3731) { - yyv3731 = append(yyv3731, ComponentStatus{}) // var yyz3731 ComponentStatus - yyc3731 = true + if yyj3736 >= len(yyv3736) { + yyv3736 = append(yyv3736, ComponentStatus{}) // var yyz3736 ComponentStatus + yyc3736 = true } - yyh3731.ElemContainerState(yyj3731) - if yyj3731 < len(yyv3731) { + yyh3736.ElemContainerState(yyj3736) + if yyj3736 < len(yyv3736) { if r.TryDecodeAsNil() { - yyv3731[yyj3731] = ComponentStatus{} + yyv3736[yyj3736] = ComponentStatus{} } else { - yyv3734 := &yyv3731[yyj3731] - yyv3734.CodecDecodeSelf(d) + yyv3739 := &yyv3736[yyj3736] + yyv3739.CodecDecodeSelf(d) } } else { @@ -47708,17 +47756,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj3731 < len(yyv3731) { - yyv3731 = yyv3731[:yyj3731] - yyc3731 = true - } else if yyj3731 == 0 && yyv3731 == nil { - yyv3731 = []ComponentStatus{} - yyc3731 = true + if yyj3736 < len(yyv3736) { + yyv3736 = yyv3736[:yyj3736] + yyc3736 = true + } else if yyj3736 == 0 && yyv3736 == nil { + yyv3736 = []ComponentStatus{} + yyc3736 = true } } - yyh3731.End() - if yyc3731 { - *v = yyv3731 + yyh3736.End() + if yyc3736 { + *v = yyv3736 } } @@ -47727,10 +47775,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv3735 := range v { + for _, yyv3740 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3736 := &yyv3735 - yy3736.CodecEncodeSelf(e) + yy3741 := &yyv3740 + yy3741.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47740,83 +47788,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv3737 := *v - yyh3737, yyl3737 := z.DecSliceHelperStart() - var yyc3737 bool - if yyl3737 == 0 { - if yyv3737 == nil { - yyv3737 = []DownwardAPIVolumeFile{} - yyc3737 = true - } else if len(yyv3737) != 0 { - yyv3737 = yyv3737[:0] - yyc3737 = true + yyv3742 := *v + yyh3742, yyl3742 := z.DecSliceHelperStart() + var yyc3742 bool + if yyl3742 == 0 { + if yyv3742 == nil { + yyv3742 = []DownwardAPIVolumeFile{} + yyc3742 = true + } else if len(yyv3742) != 0 { + yyv3742 = yyv3742[:0] + yyc3742 = true } - } else if yyl3737 > 0 { - var yyrr3737, yyrl3737 int - var yyrt3737 bool - if yyl3737 > cap(yyv3737) { + } else if yyl3742 > 0 { + var yyrr3742, yyrl3742 int + var yyrt3742 bool + if yyl3742 > cap(yyv3742) { - yyrg3737 := len(yyv3737) > 0 - yyv23737 := yyv3737 - yyrl3737, yyrt3737 = z.DecInferLen(yyl3737, z.DecBasicHandle().MaxInitLen, 48) - if yyrt3737 { - if yyrl3737 <= cap(yyv3737) { - yyv3737 = yyv3737[:yyrl3737] + yyrg3742 := len(yyv3742) > 0 + yyv23742 := yyv3742 + yyrl3742, yyrt3742 = z.DecInferLen(yyl3742, z.DecBasicHandle().MaxInitLen, 48) + if yyrt3742 { + if yyrl3742 <= cap(yyv3742) { + yyv3742 = yyv3742[:yyrl3742] } else { - yyv3737 = make([]DownwardAPIVolumeFile, yyrl3737) + yyv3742 = make([]DownwardAPIVolumeFile, yyrl3742) } } else { - yyv3737 = make([]DownwardAPIVolumeFile, yyrl3737) + yyv3742 = make([]DownwardAPIVolumeFile, yyrl3742) } - yyc3737 = true - yyrr3737 = len(yyv3737) - if yyrg3737 { - copy(yyv3737, yyv23737) + yyc3742 = true + yyrr3742 = len(yyv3742) + if yyrg3742 { + copy(yyv3742, yyv23742) } - } else if yyl3737 != len(yyv3737) { - yyv3737 = yyv3737[:yyl3737] - yyc3737 = true + } else if yyl3742 != len(yyv3742) { + yyv3742 = yyv3742[:yyl3742] + yyc3742 = true } - yyj3737 := 0 - for ; yyj3737 < yyrr3737; yyj3737++ { - yyh3737.ElemContainerState(yyj3737) + yyj3742 := 0 + for ; yyj3742 < yyrr3742; yyj3742++ { + yyh3742.ElemContainerState(yyj3742) if r.TryDecodeAsNil() { - yyv3737[yyj3737] = DownwardAPIVolumeFile{} + yyv3742[yyj3742] = DownwardAPIVolumeFile{} } else { - yyv3738 := &yyv3737[yyj3737] - yyv3738.CodecDecodeSelf(d) + yyv3743 := &yyv3742[yyj3742] + yyv3743.CodecDecodeSelf(d) } } - if yyrt3737 { - for ; yyj3737 < yyl3737; yyj3737++ { - yyv3737 = append(yyv3737, DownwardAPIVolumeFile{}) - yyh3737.ElemContainerState(yyj3737) + if yyrt3742 { + for ; yyj3742 < yyl3742; yyj3742++ { + yyv3742 = append(yyv3742, DownwardAPIVolumeFile{}) + yyh3742.ElemContainerState(yyj3742) if r.TryDecodeAsNil() { - yyv3737[yyj3737] = DownwardAPIVolumeFile{} + yyv3742[yyj3742] = DownwardAPIVolumeFile{} } else { - yyv3739 := &yyv3737[yyj3737] - yyv3739.CodecDecodeSelf(d) + yyv3744 := &yyv3742[yyj3742] + yyv3744.CodecDecodeSelf(d) } } } } else { - yyj3737 := 0 - for ; !r.CheckBreak(); yyj3737++ { + yyj3742 := 0 + for ; !r.CheckBreak(); yyj3742++ { - if yyj3737 >= len(yyv3737) { - yyv3737 = append(yyv3737, DownwardAPIVolumeFile{}) // var yyz3737 DownwardAPIVolumeFile - yyc3737 = true + if yyj3742 >= len(yyv3742) { + yyv3742 = append(yyv3742, DownwardAPIVolumeFile{}) // var yyz3742 DownwardAPIVolumeFile + yyc3742 = true } - yyh3737.ElemContainerState(yyj3737) - if yyj3737 < len(yyv3737) { + yyh3742.ElemContainerState(yyj3742) + if yyj3742 < len(yyv3742) { if r.TryDecodeAsNil() { - yyv3737[yyj3737] = DownwardAPIVolumeFile{} + yyv3742[yyj3742] = DownwardAPIVolumeFile{} } else { - yyv3740 := &yyv3737[yyj3737] - yyv3740.CodecDecodeSelf(d) + yyv3745 := &yyv3742[yyj3742] + yyv3745.CodecDecodeSelf(d) } } else { @@ -47824,16 +47872,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj3737 < len(yyv3737) { - yyv3737 = yyv3737[:yyj3737] - yyc3737 = true - } else if yyj3737 == 0 && yyv3737 == nil { - yyv3737 = []DownwardAPIVolumeFile{} - yyc3737 = true + if yyj3742 < len(yyv3742) { + yyv3742 = yyv3742[:yyj3742] + yyc3742 = true + } else if yyj3742 == 0 && yyv3742 == nil { + yyv3742 = []DownwardAPIVolumeFile{} + yyc3742 = true } } - yyh3737.End() - if yyc3737 { - *v = yyv3737 + yyh3742.End() + if yyc3742 { + *v = yyv3742 } } diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 0fc56833c8b24..eceb2682751ca 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -715,6 +715,8 @@ type ISCSIVolumeSource struct { IQN string `json:"iqn"` // iSCSI target lun number. Lun int32 `json:"lun"` + // Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport. + ISCSIInterface string `json:"iscsiInterface,omitempty"` // Filesystem type of the volume that you want to mount. // Tip: Ensure that the filesystem type is supported by the host operating system. // Examples: "ext4", "xfs", "ntfs". diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index de5990e0fa994..8a695695aa683 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -467,12 +467,13 @@ func (HostPathVolumeSource) SwaggerDoc() map[string]string { } var map_ISCSIVolumeSource = map[string]string{ - "": "ISCSIVolumeSource describes an ISCSI Disk can only be mounted as read/write once.", - "targetPortal": "iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", - "iqn": "Target iSCSI Qualified Name.", - "lun": "iSCSI target lun number.", - "fsType": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi", - "readOnly": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + "": "ISCSIVolumeSource describes an ISCSI Disk can only be mounted as read/write once.", + "targetPortal": "iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + "iqn": "Target iSCSI Qualified Name.", + "lun": "iSCSI target lun number.", + "iscsiInterface": "Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.", + "fsType": "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". More info: http://releases.k8s.io/HEAD/docs/user-guide/volumes.md#iscsi", + "readOnly": "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", } func (ISCSIVolumeSource) SwaggerDoc() map[string]string { diff --git a/pkg/apis/extensions/deep_copy_generated.go b/pkg/apis/extensions/deep_copy_generated.go index 33d36d7c8b71f..806ada5f23060 100644 --- a/pkg/apis/extensions/deep_copy_generated.go +++ b/pkg/apis/extensions/deep_copy_generated.go @@ -348,6 +348,7 @@ func deepCopy_api_ISCSIVolumeSource(in api.ISCSIVolumeSource, out *api.ISCSIVolu out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = in.Lun + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/apis/extensions/v1beta1/conversion_generated.go b/pkg/apis/extensions/v1beta1/conversion_generated.go index f5f63770516a1..a6bae192a5817 100644 --- a/pkg/apis/extensions/v1beta1/conversion_generated.go +++ b/pkg/apis/extensions/v1beta1/conversion_generated.go @@ -490,6 +490,7 @@ func autoconvert_api_ISCSIVolumeSource_To_v1_ISCSIVolumeSource(in *api.ISCSIVolu out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = int32(in.Lun) + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil @@ -1550,6 +1551,7 @@ func autoconvert_v1_ISCSIVolumeSource_To_api_ISCSIVolumeSource(in *v1.ISCSIVolum out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = int(in.Lun) + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/apis/extensions/v1beta1/deep_copy_generated.go b/pkg/apis/extensions/v1beta1/deep_copy_generated.go index 3c979f951d4f4..6eeac6a1cb307 100644 --- a/pkg/apis/extensions/v1beta1/deep_copy_generated.go +++ b/pkg/apis/extensions/v1beta1/deep_copy_generated.go @@ -384,6 +384,7 @@ func deepCopy_v1_ISCSIVolumeSource(in v1.ISCSIVolumeSource, out *v1.ISCSIVolumeS out.TargetPortal = in.TargetPortal out.IQN = in.IQN out.Lun = in.Lun + out.ISCSIInterface = in.ISCSIInterface out.FSType = in.FSType out.ReadOnly = in.ReadOnly return nil diff --git a/pkg/kubectl/describe.go b/pkg/kubectl/describe.go index fa8bfb01f9a62..788f898d59a7f 100644 --- a/pkg/kubectl/describe.go +++ b/pkg/kubectl/describe.go @@ -583,9 +583,10 @@ func printISCSIVolumeSource(iscsi *api.ISCSIVolumeSource, out io.Writer) { " TargetPortal:\t%v\n"+ " IQN:\t%v\n"+ " Lun:\t%v\n"+ + " ISCSIInterface\t%v\n"+ " FSType:\t%v\n"+ " ReadOnly:\t%v\n", - iscsi.TargetPortal, iscsi.IQN, iscsi.Lun, iscsi.FSType, iscsi.ReadOnly) + iscsi.TargetPortal, iscsi.IQN, iscsi.Lun, iscsi.ISCSIInterface, iscsi.FSType, iscsi.ReadOnly) } func printGlusterfsVolumeSource(glusterfs *api.GlusterfsVolumeSource, out io.Writer) { diff --git a/pkg/volume/iscsi/iscsi.go b/pkg/volume/iscsi/iscsi.go index e1339e4baea72..a630cb9125667 100644 --- a/pkg/volume/iscsi/iscsi.go +++ b/pkg/volume/iscsi/iscsi.go @@ -97,6 +97,8 @@ func (plugin *iscsiPlugin) newBuilderInternal(spec *volume.Spec, podUID types.UI lun := strconv.Itoa(iscsi.Lun) portal := portalBuilder(iscsi.TargetPortal) + iface := iscsi.ISCSIInterface + return &iscsiDiskBuilder{ iscsiDisk: &iscsiDisk{ podUID: podUID, @@ -104,6 +106,7 @@ func (plugin *iscsiPlugin) newBuilderInternal(spec *volume.Spec, podUID types.UI portal: portal, iqn: iscsi.IQN, lun: lun, + iface: iface, manager: manager, plugin: plugin}, fsType: iscsi.FSType, @@ -140,6 +143,7 @@ type iscsiDisk struct { portal string iqn string lun string + iface string plugin *iscsiPlugin // Utility interface that provides API calls to the provider to attach/detach disks. manager diskManager diff --git a/pkg/volume/iscsi/iscsi_util.go b/pkg/volume/iscsi/iscsi_util.go index 707d29320ca36..16fa14fa2d216 100644 --- a/pkg/volume/iscsi/iscsi_util.go +++ b/pkg/volume/iscsi/iscsi_util.go @@ -21,6 +21,7 @@ import ( "fmt" "os" "path" + "path/filepath" "strings" "time" @@ -30,9 +31,26 @@ import ( ) // stat a path, if not exists, retry maxRetries times -func waitForPathToExist(devicePath string, maxRetries int) bool { +// when iscsi transports other than default are used, use glob instead as pci id of device is unknown +type StatFunc func(string) (os.FileInfo, error) +type GlobFunc func(string) ([]string, error) + +func waitForPathToExist(devicePath string, maxRetries int, deviceInterface string) bool { + // This makes unit testing a lot easier + return waitForPathToExistInternal(devicePath, maxRetries, deviceInterface, os.Stat, filepath.Glob) +} + +func waitForPathToExistInternal(devicePath string, maxRetries int, deviceInterface string, osStat StatFunc, filepathGlob GlobFunc) bool { for i := 0; i < maxRetries; i++ { - _, err := os.Stat(devicePath) + var err error + if deviceInterface == "default" { + _, err = osStat(devicePath) + } else { + fpath, _ := filepathGlob(devicePath) + if fpath == nil { + err = os.ErrNotExist + } + } if err == nil { return true } @@ -80,22 +98,27 @@ func (util *ISCSIUtil) MakeGlobalPDName(iscsi iscsiDisk) string { } func (util *ISCSIUtil) AttachDisk(b iscsiDiskBuilder) error { - devicePath := strings.Join([]string{"/dev/disk/by-path/ip", b.portal, "iscsi", b.iqn, "lun", b.lun}, "-") - exist := waitForPathToExist(devicePath, 1) + var devicePath string + if b.iface == "default" { + devicePath = strings.Join([]string{"/dev/disk/by-path/ip", b.portal, "iscsi", b.iqn, "lun", b.lun}, "-") + } else { + devicePath = strings.Join([]string{"/dev/disk/by-path/pci", "*", "ip", b.portal, "iscsi", b.iqn, "lun", b.lun}, "-") + } + exist := waitForPathToExist(devicePath, 1, b.iface) if exist == false { // discover iscsi target - out, err := b.plugin.execCommand("iscsiadm", []string{"-m", "discovery", "-t", "sendtargets", "-p", b.portal}) + out, err := b.plugin.execCommand("iscsiadm", []string{"-m", "discovery", "-t", "sendtargets", "-p", b.portal, "-I", b.iface}) if err != nil { glog.Errorf("iscsi: failed to sendtargets to portal %s error: %s", b.portal, string(out)) return err } // login to iscsi target - out, err = b.plugin.execCommand("iscsiadm", []string{"-m", "node", "-p", b.portal, "-T", b.iqn, "--login"}) + out, err = b.plugin.execCommand("iscsiadm", []string{"-m", "node", "-p", b.portal, "-T", b.iqn, "-I", b.iface, "--login"}) if err != nil { glog.Errorf("iscsi: failed to attach disk:Error: %s (%v)", string(out), err) return err } - exist = waitForPathToExist(devicePath, 10) + exist = waitForPathToExist(devicePath, 10, b.iface) if !exist { return errors.New("Could not attach disk: Timeout after 10s") } diff --git a/pkg/volume/iscsi/iscsi_util_test.go b/pkg/volume/iscsi/iscsi_util_test.go index 519ec38ebe57c..1244004868a5c 100644 --- a/pkg/volume/iscsi/iscsi_util_test.go +++ b/pkg/volume/iscsi/iscsi_util_test.go @@ -17,6 +17,8 @@ limitations under the License. package iscsi import ( + "os" + "path/filepath" "testing" "k8s.io/kubernetes/pkg/util/mount" @@ -74,3 +76,35 @@ func TestExtractPortalAndIqn(t *testing.T) { t.Errorf("extractPortalAndIqn: got %v %s %s", err, portal, iqn) } } + +func fakeOsStat(devicePath string) (fi os.FileInfo, err error) { + var cmd os.FileInfo + return cmd, nil +} + +func fakeFilepathGlob(devicePath string) (globs []string, err error) { + return []string{devicePath}, nil +} + +func TestWaitForPathToExist(t *testing.T) { + devicePath := []string{"/dev/disk/by-path/ip-127.0.0.1:3260-iqn.2014-12.com.example:test.tgt00-lun-0", + "/dev/disk/by-path/pci-0000:00:00.0-ip-127.0.0.1:3260-iqn.2014-12.com.example:test.tgt00-lun-0"} + + exist := waitForPathToExistInternal(devicePath[0], 1, "default", fakeOsStat, filepath.Glob) + if exist == false { + t.Errorf("waitForPathToExist: could not find path %s", devicePath[0]) + } + exist = waitForPathToExistInternal(devicePath[0], 1, "fake_iface", fakeOsStat, filepath.Glob) + if exist != false { + t.Errorf("waitForPathToExist: wrong code path called for %s", devicePath[0]) + } + + exist = waitForPathToExistInternal(devicePath[1], 1, "fake_iface", os.Stat, fakeFilepathGlob) + if exist == false { + t.Errorf("waitForPathToExist: could not find path %s", devicePath[1]) + } + exist = waitForPathToExistInternal(devicePath[1], 1, "default", os.Stat, fakeFilepathGlob) + if exist != false { + t.Errorf("waitForPathToExist: wrong code path called for %s", devicePath[1]) + } +}